I'm going to try to re-install, but I get the above error when going into the settings.
I'm going to try to re-install, but I get the above error when going into the settings.
I'm looking into this as I having the same problem.
So far what I found is:
Link in "Settings, ExidData" points to option-general.php
This file is under wp-admin directory.
First thing you se in that file is this bit:
/** WordPress Administration Bootstrap */
require_once('./admin.php');
if ( ! current_user_can( 'manage_options' ) )
wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) );
So it seems that current user (even if it's admin) does not have rights to manage options.
Still no solution but I think this is first step.
After installing, edit the plugin and change the following line
add_submenu_page('options-general.php', "Exif Data", "Exif Data", 10, "Exif Data", array(&$this,"output_sub_admin_page_0"));
to
add_options_page('Exif Data', 'Exif Data', 'manage_options', basename(__FILE__), array(&$this,'output_sub_admin_page_0'));
This topic has been closed to new replies.