jettabaker
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: Schema.org markupI tried using some of the mark-up and it was deleted by the internal filters so something more than themes or plug-ins will require change.
Forum: Fixing WordPress
In reply to: Copied Files, Unable to Log Into AdminOK! here is the answer friends! v 3.0.1
if you renamed your database tables anything other than wp_, there are some meta_keys you need to change on the usermeta table. Change the wp_ to whatever you made the prefix for your tables; I used demo_ so I changed the wp_capabilities to demo_capabilities. There is also one of these on the options table and do a search of your database to see if there are any hard coded table names (I had one for wp_posts). After doing this my sufficient permissions error message disappeared and my dashboard finally showed up.Forum: Fixing WordPress
In reply to: Copied Files, Unable to Log Into AdminThat message seems to be coming from the menu.php file `$menu = add_menu_classes($menu);
if ( !user_can_access_admin_page() ) {
do_action(‘admin_page_access_denied’);
wp_die( __(‘You do not have sufficient permissions to access this page.+’) );
}
`Note that I added the “+” to verify it was the proper file causing the issue.Forum: Fixing WordPress
In reply to: Copied Files, Unable to Log Into AdminOK, went back and recreated the password using the manual phpmyadmin instructions and still unable to log in. Just getting
You do not have sufficient permissions to access this page.
message. Any suggestions???
Forum: Fixing WordPress
In reply to: Copied Files, Unable to Log Into Admin