• I had this plugin activated and working perfectly before. Suddenly, it stopped allowing subscribers to upload images and the Community Settings module disappeared from the dashboard. I went to wp-content/plugins/alkivia/alkivia.php and found this error:

    Warning: require_once(ABSPATHwp-admin/includes/plugin.php) [function.require-once]: failed to open stream: No such file or directory in /home/erilynn/public_html/mg.net/wp-content/plugins/alkivia/framework/plugins.php on line 404

    Fatal error: require_once() [function.require]: Failed opening required ‘ABSPATHwp-admin/includes/plugin.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/erilynn/public_html/mg.net/wp-content/plugins/alkivia/framework/plugins.php on line 404

    Can anyone help me with this?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Have you this lines in wp-config.php?

    /** WordPress absolute path to the WordPress directory. */
    if ( !defined('ABSPATH') )
    	define('ABSPATH', dirname(__FILE__) . '/');

    Looks like the ABSPATH constant is missing there.

    And line 404 in plugins.php must be like this:

    require_once ( ABSPATH . 'wp-admin/includes/plugin.php' );
    Thread Starter amaniverse

    (@amaniverse)

    My lines look exactly like the ones you posted above and I’m still getting an error. Is there anything I need to add or change?

    Thread Starter amaniverse

    (@amaniverse)

    If it helps, I think the problem started after I installed the Capabilities Manager plugin… I just tried accessing the Photo Gallery page and it says I don’t have permission to view the page.

    Looks that probably the capabilities to upload pictures have been removed from the users. To allow users to upload images, them need the akuc_upload_images capability.

    You have a description of the nedeed capabilities at http://alkivia.org/plugins/community/capabilities/

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘[Plugin: User Community] Fatal Error in plugin.php’ is closed to new replies.