by Pexle Chris
5 (28 reviews)
Database Manager - WP Adminer
Manage the database from your WordPress Dashboard using Adminer.
Compatible with WP 6.9
v4.3.2
Current Version v4.3.2
Updated 4 weeks ago
Last Update on 22 Dec, 2025
Synced 11 hours ago
Last Synced on
Rank
#1,365
+3 this week
Active Installs
20K+
-15.7%
KW Avg Position
5
—
No change
Downloads
275.7K
+173 today
Support Resolved
100%
—
No change
Rating
100%
Review 5 out of 5
5
(28 reviews)
Next Milestone 30K
20K+
30K+
227
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 6,237 more installs to reach 30K+
Rank Changes
Current
#1,365
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
28 reviews
Overall
100%
5
27
(96%)
4
1
(4%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 5 of 5| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| adminer | 1 | — | Tag | 14 hours ago |
| mariadb | 2 | — | Tag | 14 hours ago |
| mysql | 6 | — | Tag | 14 hours ago |
| sql | 6 | — | Tag | 14 hours ago |
| database | 10 | — | Tag | 14 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Support Threads Overview
Resolved
Unresolved
2
Total Threads
2
Resolved
0
Unresolved
100%
Resolution Rate
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 4.3.2
- Last Updated
- Dec 22, 2025
- Requires WP
- 4.7.0+
- Tested Up To
- 6.9
- PHP Version
- 7.0 or higher
- Author
- Pexle Chris
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 28
- Support Threads
- 2
- Resolved
- 100%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,739
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#930
Query Monitor - The developer tools panel for WordPress
200K+ installs
#255
Header and Footer Scripts
200K+ installs
#258
Performance Lab
200K+ installs
#267
Frequently Asked Questions
Common questions about Database Manager - WP Adminer
Yes, because only administrators have access to WP Adminer. If a guest tries to access the WP Adminer URL, a 404 page will be shown up.
In the case of single site WordPress installations, only Administrators have access in WP Adminer, because by default only administrator have the manage_options capability. In the case of WordPress Multisite installations, only Super Admins have access in WP Adminer, because by default only Super Admins have the manage_network_options capability. In all cases, the manage_wp_adminer capability now (versions 4.3.0 and above) grants access to WP Adminer. You can assign this capability to a role via code or through the User Role Editor plugin.
Just use the filter pexlechris_adminer_access_capabilities and return the array of desired capabilities that you want to have access to WP Adminer. For roles, just use the corresponding capabilities, while checking against particular roles in place of a capability is supported in part, this practice is discouraged as it may produce unreliable results.
This issue maybe is due to the caching engine that your browser OR server uses! * You can try to whitelist the WP Adminer URL, OR * You can change the WP Adminer URL to a URL that is already whitelisted. For example: define( 'PEXLECHRIS_ADMINER_SLUG', 'wp-admin/adminer');
You need to use action pexlechris_adminer_head as follows: add_action('pexlechris_adminer_head', function(){ // Use the appropriate get_nonce() function based on your WP Adminer version $nonce = function_exists('Adminer\get_nonce') ? Adminer\get_nonce() // For WP Adminer v4.0.0 and newer : get_nonce(); // For WP Adminer versions below 4.0.0 ?> <script nonce="<?php echo esc_attr( $nonce )?>"> // get_nonce is an adminer function // Place your JS code here </script> <style> /* Place your CSS code here */ </style> <?php });
You can do this using WP filter: pexlechris_adminer_adminbar_dropdown_items. Filter's PHPDoc: /** * The dropdown items. * * @param array $dropdown_items{ * @type string $name. The table name. * @type string $label. The label of the dropdown item. * @type array $args. The array of extra url parameters. Parameters will not be encoded. * Developers could avoid defining args in the array * } */ $dropdown_items = apply_filters('pexlechris_adminer_adminbar_dropdown_items', $dropdown_items);
In Adminer's website there is documentation about Adminer plugins and Adminer extensions. In order to define function adminer_object() before this plugin define it, you need to define it inside the hook pexlechris_adminer_before_adminer_loads. More in the phpDoc below: /** * adminer_object can be overridden, in WP action pexlechris_adminer_before_adminer_loads. * If a developer want to make his/her own changes (adding plugins, extensions or customizations), * it is strongly recommended to include_once the class Pexlechris_Adminer and extend it and * make adminer_object function return his/her new class. * * It is strongly recommended, because Pexlechris_Adminer class contains WordPress/Adminer integration (auto login with WordPress credentials) * * If a developer want to add just JS and/or CSS in head, he/she can just use the action pexlechris_adminer_head. * See plugin's FAQs, for more. * * @since 2.1.0 * * @link https://www.adminer.org/en/plugins/#use Documentation URL. * @link https://www.adminer.org/en/plugins/ Adminer' plugins Documentation URL. * @link https://www.adminer.org/en/extension/ Adminer' extensions Documentation URL. */
The answer in this question is complicated. The best solution is to create a Database User with the appropriate privileges. Maybe you can do it also with WordPress actions. Read more in this support ticket.
By default, you haven't access to any database other than the site's database. In order to enable access, you need to add the following line code define('PEXLECHRIS_ADMINER_HAVE_ACCESS_ONLY_IN_WP_DB', false); in the wp-config.php file.
Replace phpMyAdmin with Adminer and you will get a tidier user interface, better support for MySQL features, higher performance and more security. See detailed comparison. Adminer development priorities are: 1. Security, 2. User experience, 3. Performance, 4. Feature set, 5. Size.