Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author wp2android

    (@wp2android)

    Hello
    This my fault, i have been update code in plugin, please re-install plugin again, it fixed.
    Thank for your warning.
    Hope this help

    Plugin Author wp2android

    (@wp2android)

    you do not have sufficient permissions to access this page. wp-admin

    I had the same problem and resolved it. This error message appears to be a catch-all from WordPress. In other words, the problem can be one of many things. You’ve done a lot of the things I found as solutions for other people’s issues that resulted in that error message. I did most of them also, and they didn’t work for me. The fix for me was to use the force-upgrade.php. But you’ve already done that, so here’s what else I found out.

    I found that the most common solution seemed to have to do with a mis-match between your wp-config.php. First of all, make sure you (or the WordPress install) has correctly set up the database name, database user name, database password, and database host. See this link: http://codex.wordpress.org/Editing_wp-config.php

    Secondly, make sure the database table prefix in your config.php matches the table name prefixes in your database. The default is wp_, but if you (or your wordpress install) changed your prefix to something else, it must match the database itself.

    Here’s an example of the fields I’m talking about in the wp-config.php.

    <?php
    /** WordPress’s config file **/
    /** http://wordpress.org/ **/

    // ** MySQL settings ** //
    define(‘DB_NAME’, ‘madeupname’); // The name of the database
    define(‘DB_USER’, ‘madeupuser’); // Your MySQL username
    define(‘DB_PASSWORD’, ‘madeuppw’); // …and password
    define(‘DB_HOST’, ‘mysql.yoursite.com’); // …and the server MySQL is running on
    // Change the prefix if you want to have multiple blogs in a single database.
    $table_prefix = ‘wp_’; // example: ‘wp_’ or ‘b2’ or ‘mylogin_’
    In your database, using phpMyAdmin, check that the tables all begin with the same prefix that you have in your wp-config.php. For example if you changed your table prefix to “b2”, the tables would be “b2_commentmeta”, b2_comments”, etc.
    Also, you have to check inside two tables to see that certain field names are also changed. So, using the same prefix as above, in b2_options, the field wp_user_roles has to be changed to b2_user_roles. And in the b2_usermeta table, the fields wp_capabilities, wp_user_level, wp_user-settings, wp_user-settings-time, and wp_dashboard_quick_press_last_post_id should all have the prefix b2_ instead of wp_.

    And lastly, within your database, look at the values in the wp_usermeta table as follows:

    wp_capabilities should be a:1:{s:13:”administrator”;s:1:”1″;}

    wp_user_level should be 10

    All of this should automatically work if you used a quick install, but if you’ve changed anything along the way, or if your install did not work, it could be messed up. I did have this problem initially, and found out that the quick install done by Dreamhost was incomplete. Though I fixed the prefix problem, I still had the “permissions” error. However, when I tried that force.upgrade.php, all was resolved.

    Good luck,

    Thread Starter apkubeka

    (@apkubeka)

    I managed to fix the problem,thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘unable to access plug-in page’ is closed to new replies.