• DevOps
    Case Study

    How we helped a development company rebuild DevOps for efficiency and scale.

    READ CASESTUDY
    icon

    24/7 DevOps as a Service

    Round-the-clock DevOps for uninterrupted efficiency.

    icon

    Infrastructure as a Code

    Crafting infrastructure with ingenious code.

    icon

    CI/CD Pipeline

    Automated CI/CD pipeline for seamless deployments.

    icon

    DevSecOps

    Integrated security in continuous DevOps practices.

    icon

    Hire DevOps Engineers

    Level up your team with DevOps visionaries.

    icon

    Consulting Services

    Navigate success with expert DevOps consulting.

  • TechOps
    Case Study

    How a US hosting leader scaled with us!

    READ CASESTUDY

    WEB HOSTING SUPPORT

    icon

    HelpDesk Support

    Highly skilled 24/7 HelpDesk Support

    icon

    Product Support

    Boost your product support with our expertise.

    MANAGED SERVICES

    icon

    Server Management

    Don’t let server issues slow you down. Let us manage them for you.

    icon

    Server Monitoring

    Safeguard your server health with our comprehensive monitoring solutions.

    STAFF AUGMENTATION

    icon

    Hire an Admin

    Transform your business operations with our expert administrative support.

    icon

    Hire a Team

    Augment your workforce with highly skilled professionals from our diverse talent pool.

  • CloudOps
    Case Study

    How we helped a Private Deemed University in India, save US $3500/m on hosting charges!

    READ CASESTUDY
    icon

    AWS Well Architected Review

    Round-the-clock for uninterrupted efficiency

    icon

    Optimize

    Efficient CloudOps mastery for seamless cloud management

    icon

    Manage

    Automated CI/CD pipeline for seamless deployments

    icon

    Migrate

    Upgrade the journey, Migrate & Modernize seamlessly

    icon

    Modernize

    Simplify compliance complexities with our dedicated services

    icon

    FinOps as a Service

    FinOps as a Service

  • SecOps
    Case Study

    Enabling financial grade platforms through strategic cloud modernisation.

    READ CASESTUDY
    icon

    VAPT

    Vulnerability Assessment and Penetration Testing

    icon

    Source Code Review

    Ensuring source code security ans safe practices to reduce risks

    icon

    Security Consultation

    On demand services for improving server security

    icon

    System Hardening

    Reduced vulnerability and proactive protection

    icon

    Managed SoC

    Monitors and maintains system security. Quick response on incidents.

    icon

    Compliance as a Service

    Regulatory compliance, reduced risk

  • Insights
    Case Study

    How we helped a Private Deemed University in India, save US $3,500/m on hosting charges!

    READ CASESTUDY
    icon

    Blog

    Explore our latest articles and insights

    icon

    Case Studies

    Read about our client success stories

    icon

    Flipbook

    Explore our latest Flipbook

    icon

    Events

    Join us at upcoming events and conferences

    icon

    Webinars

    Watch our educational webinar series

  • Our Story
  • Contact Us

Interested to collaborate?

Get in touch with us!

Ready to elevate your business with certified cloud expertise? Contact us today to learn how our team can help you leverage cloud technology to drive growth, streamline operations, and enhance security.

  • AWSAWS
  • Azure CloudAzure Cloud
  • Google CloudGoogle Cloud
  • Akamai CloudAkamai Cloud
  • OVHOVH
  • Digital OceanDigital Ocean
  • HetznerHetzner
  • Managed Services Overview
  • Kubernetes Consulting
  • DevOps as a Service
  • Infrastructure Monitoring
  • Kubernetes Consultancy Services
  • K8s & Cloud native Solutions
  • 24/7 Infrastructure Monitoring
  • DevOps as a Service
  • Cloud CI/CD Solutions
  • White Labeled MSP Support
  • Our story
  • Life@SupportSages
  • Insights
  • Careers
  • Events
  • Services
  • Managed Services

aws partneraws advanced partner
LinkedInFacebookXInstagramYouTube
SupportSages

Copyright © 2008 – 2026 SupportSages Pvt Ltd. All Rights Reserved.
Privacy PolicyLegal TermsData ProtectionCookie Policy

WordPress- Admin interface access permission issues

Author Profile
Hariram JR
  • 5 min read
WordPress- Admin interface access permission issues

Generating audio, please wait...

When I successfully logged into the WordPress admin with the correct username (Say designz) and password, I had the problem after logged into the admin interface.

Except Dashboard, all other links in admin interface gave me “You do not have sufficient permissions to access this page.”

t1

Analysis

On further investigation, it is found that this error is due to a security issue where permissions to the WordPress user (say designz) was not granted and made denied in the database.

How to fix?

1. Check and confirm that the tables in the WP db uses the same prefix specified in the wp-config.php ( The default WP configuration file)

For example here the  table prefix specified in the configuration file is  “wp”,  and hence the table names would be in the format “wp_commentmeta”, wp_comments”, etc.

Kindly note that the table prefix may be different for you based on your installation and configuration.

Before proceeding further, let us have look into some of the crucial tables in WP installation

wp_users:

The list of users who has the privilege to access the WordPress admin panel is stored in wp_users table. It contains columns which mention the user information like login, password (in encrypted form), registration time, status, display name, mail and activation key (if required).

The roles or privileges of the WordPress users are defined as Super admin, Administrator, Subscriber, Contributor, Author and Editor.

wp_usermeta:

The details of users with access to the WordPress dashboard will be stored in the form of meta data in the wp_usermeta table.

As mentioned in the issue analysis itself,  this is a privilege issue on the setting of user permissions to access the WP dash board. Now let us proceed with the resolution of the issue.

Resolution Process

1)  Backup the DB using PHPMyAdmin.

Backing up of data is the rule of thumb for every system admin. No exceptions are  granted here as well and we proceed with the generation of backup of the db using PHPMyAdmin here as well.

Now, browse the table wp_usermeta. It will list the following columns.

umeta_id    :  It lists the number of meta id in the wp_usermeta table.

user_id       :  The user_id is the ID of the user whose data should be retrieved.

meta_key    :  It lists key roles for the users corresponding to their user id.

meta_value : It holds the information or returns a value for meta_key for the users which is denoted by their user_id.

 

 

3. Check the ‘ID’ of the user in ‘wp_usermeta’ table and make sure that the ID should be same in the ‘wp_users’ table for that user. Since the table ‘wp_usermeta’ contains the meta data of the the table “wp_users” the ID should be identical.

If not edit the ‘user_id’ table field in the table and assign the correct one.

t2f

4. Check the ‘wp_user_level’ in ‘wp_usermeta’ table which meta_value should be 10 always.

Then a question will pop up in your mind. Why it should be 10 always?

Because, the user who holds value 10 is known as the Super user.

Actually, the meta_value level state for wp_capabilities ranges from 0-10. From the state level, we can assume the role of that particular user. They are as follows:

0-4 Level state – They don’t have the provision to manage other users.

5 Level state – The user in the state 5 have the provision to manage the user below his level. But they don’t have provision to add users. Their authority is restricted within 0-4 level users.

6 to 9 Level State – The users from range 6 to 9 have authority to manage the other users and have the provision to create a new user as well. But user between the level 6 to 9 don’t have the provision to manage the users who have higher state than him. Say if a user has 6 value in his wp_capabilities, he has the provision to create a new user, manage the user below his level. But he cannot manage the user with state level 7 or beyond.

10 state level – The users with state value 10 symbolically represents higher authority user or super admin for all other users. He has the full provision to the WordPress dashboard such as manage a user, create, promote and remove etc.

 

5. Look for the user’s wp_capabilities meta_value. In my case, the wp_capabilities meta_value for the user ‘dezigns’ had the value as below.

a:5{s:14:"can_edit_posts";b:1;s:4:"read";b:1;s:12:"upload_files";b:1;s:11:"super_admin";b:1;s:13:"bbp_keymaster";b:1;}

Then, I have changed the wp_capablilities meta_value as below.

 a:1:{s:13:"administrator";s:1:"1";} 

t5

The above code will provide ‘administrator’ permission to the user (dezigns) and you can now navigate to any of the panel in the WordPress admin section.

Hope, this article helps you to fix your issue. Thank You for your valuable time :)

Get 24/7 expert server management

  • Linux
  • Troubleshooting
  • WordPress
WordPress- Admin interface access permission issues

How to add swap space on live server

How to add swap space on live server
  • Howtos
  • Linux
  • VPS
logo

Migration from cPanel to Virtualmin

Migration from cPanel to Virtualmin
  • cPanel
  • Howtos
  • Linux
logo

Posts by Hariram JR

System Engineer with two years of experience in deploying and managing hundreds of Linux servers. Currently working in Cloud technologies, especially with AWS platform. His work includes installing application server, scaling and configuring it for high availability and fault tolerance.