laguirre70
Forum Replies Created
-
I resolved this issue by following instructions here: http://wordpress.org/support/topic/unable-to-access-the-settings-page-1
The root cause seems to be that Windows was using backslashes for directory path. In wp-includes/vars.php, it has the following line:-
preg_match(‘#/wp-admin/?(.*?)$#i’, $_SERVER[‘PHP_SELF’], $self_matches);
Problem solved by adding this line:-
$_SERVER[‘PHP_SELF’] = str_replace(‘\\’, ‘/’, $_SERVER[‘PHP_SELF’]);Just before:-
require_once(ABSPATH . ‘wp-settings.php’);In your wp-config.php.
Hello, I am having this problem: I can see the page page=pmpro-membershiplevels and make changes but when I go to pmpro-pagesettings, I get “You do not have sufficient permissions to access this page.”, this only happens in my dev machine W8 running wordpress with app engine lancher 1.9.6, here is the log:
INFO 2014-06-26 17:37:48,884 module.py:639] default: “GET /wp-admin/admin.php?page=pmpro-pagesettings HTTP/1.1” 500 2973
I am a local admin in my machine and logged on into wordpress as an admin.