[Plugin: WP-Instaroll] In case of Autopost Dont Work
-
I found a problem in autopost of instagram photos, in some server/wordpress configuration autopost don’t work because an error occurred:
PHP Warning: require_once(wp-admin/includes/admin.php): failed to open stream: No such file or directory in /path/to/wordpress/wp-content/plugins/wp-instaroll/instagram/instagram.php on line 541
I fix the error adding the absolute path on line 541 of wp-instaroll/instagram/instagram.php
ORIGINAL:
require_once('wp-admin/includes/admin.php');
FIXED:
require_once(ABSPATH.'wp-admin/includes/admin.php');
- The topic ‘[Plugin: WP-Instaroll] In case of Autopost Dont Work’ is closed to new replies.