Database Management tool – Adminer

描述

The best database management tool for the best CMS.

This plugin uses the tool Adminer 4.8.1 in order to give database access to administrators directly from the Dashboard.
As simple as the previous sentence!

Compatible also with WordPress Multisite installations

WP Adminer access positions

You can access the WP Adminer from the above positions:
1. WP Adminer URL in the Admin Bar
2. WP Adminer Tools Page (Dashboard > Tools > WP Adminer)

Explore my other plugins

  • Library Viewer: With Library Viewer, you can display the containing files and the containing folders of a “specific folder” of your (FTP) server to your users in the front-end.
  • Gift Wrapping for WooCommerce: This plugin allows customers to select a gift wrapper for their orders, via a checkbox in the checkout page.

螢幕截圖

  • The WP Adminer opened from Admin Bar

安裝

  1. Download the plugin from Official WP Plugin Repository
  2. Upload Plugin from your WP Dashboard ( Plugins > Add New > Upload Plugin ) the pexlechris-adminer.zip file.
  3. Activate the plugin through the ‘Plugins’ menu in WordPress Dashboard

常見問題

Is it safe?

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.

Who have access in WP Adminer?

 

  • 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.

How to allow other capabilities or roles to have access to WP Adminer?

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.

WP Adminer is stuck in an endless loop, constantly refreshing the page without stopping. What is the issue?

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’);

How to add my own JS and/or CSS in adminer head?

You need to use action pexlechris_adminer_head as follows:

  add_action('pexlechris_adminer_head', function(){
     ?>
     <script nonce="<?php echo esc_attr( get_nonce() )?>"> // get_nonce is an adminer function
        // Place your JS code here
     </script>
     <style>
        /* Place your CSS code here */
     </style>
     <?php
  });

How can I add other Adminer plugins or Adminer extensions?

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.
  */

Can I limit access to some table/DB ?

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.

How can I access other databases in the same server and same database user?

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.

Why is Adminer better than phpMyAdmin?

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.

評價

2024年3月3日
I often have to change some settings in the database of my customers (website owner). Often they don't know their cPanel access, or this cPanel require a double authentication (with SMS) and they are not around to communicate this code to me. Adminer make it a breeze to connect to the Database, and it is now seamlessly integrated within WordPress (no need to fill in login / password. Kudos guys !
2023年4月13日
I remember MySQLDumper was one of the best standalone Backup softwares back then and since they stopped supporting it I was lucky to find Adminer as an equivalent and even better than MySQLDumper. I never thought there would be a Wordpress plugin for it. the plugin just made it way easier to use and also safer comparing to the standalone version.
2022年12月30日
I had to change the Administration Email Address within the database because the email NEVER gets sent when you use the WP option.I didnt have access to cPanel so this saved the day and made it easy.Will be using this from now on
2022年12月9日 1 reply
I've tried other Adminer solutions over the years - always having various connectivity issues, often being unable to connect to the DB. This one always seems to connect correctly - great job!
閱讀全部14個評價

貢獻者及開發者

“Database Management tool – Adminer” 是一個開源的軟體。以下的人對這個外掛作出了貢獻。

貢獻者

Database Management tool – Adminer 外掛目前已有 1 個本地化語言版本。 感謝所有譯者為這個外掛做出的貢獻。

將 Database Management tool – Adminer 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

修改日誌

2.2.

  • Before version 2.2, if PEXLECHRIS_ADMINER_SLUG ends with a slash, WP Adminer was not working.
    If you still have this problem, try deleting the file wp-content/mu-plugins/pexlechris_adminer_avoid_conflicts_with_other_plugins.php in order to have it installed again automatically.

2.2.1

  • From now on, this plugin requires WordPress version at least 4.7.0 or later. According to Wordfence, versions below 4.7.0 have a vulnerability that can allow site takeover.

2.2.0

  • Tested up to 6.4.2
  • SOS: From now when WP Adminer runs, only WP Adminer plugin is running (a must-use plugin is automatically installed and is being deleted on plugin deactivation).
    So the only way to extend WP Adminer plugin’s functionalities using wp hooks is using a must-use plugin.
    Helpful Guide: How to add PHP Hooks in your WordPress Site using a must-use plugin
  • Hide php errors even if WP_DEBUG_DISPLAY is enabled, in action pexlechris_adminer_before_adminer_loads with priority 100

2.1.1

  • Tested up to 6.3.2
  • From now on, the PEXLECHRIS_ADMINER_SLUG can contain slashes. For example, you can use as below
    define( ‘PEXLECHRIS_ADMINER_SLUG’, ‘wp-admin/wp-adminer’);
  • Load textdomain before WP Adminer loads
  • Hide php errors even if WP_DEBUG_DISPLAY is enabled, AFTER action pexlechris_adminer_before_adminer_loads
  • FAQ on how to fix WP Adminer endless loop has been added.

2.1.0

  • Tested up to 6.1
  • Code Refactoring
  • Hide php errors even if WP_DEBUG_DISPLAY is enabled
  • Fix Adminer warning Undefined variable $Ah
  • FAQ on how to add your CSS & JS code in adminer interface has been added.
  • FAQ on how to customize adminer has been added.
  • FAQ on how to limit access to some table/DB has been added.

2.0.1

  • Adminer is an admin tool, so now is considered as admin interface. is_admin() function now return true, when Adminer is viewed

2.0.0

  • Tested up to 6.0.1
  • PLEASE UPDATE NOW! Vulnerability issue with password as plain text fixed.
  • SOS! All functions and actions have been renamed. Please have a look in the code to find the new names, if you have written your own customization code before
  • Logout button have been hidden.
  • Adminer has been removed from Tools Page because iframes are not allowed in admin pages
  • print_css_inside_wp_adminer_tools_page action has been removed
  • print_js_inside_wp_adminer_tools_page action has been removed
  • print_js_inside_wp_adminer action has been removed
  • print_css_inside_wp_adminer action has been removed
  • From this version and then, developers can make their Adminer’ customizations using the function adminer_object
    in the NEW pexlechris_adminer_before_adminer_loads action
    and to print code in head, developers can use the NEW action pexlechris_adminer_head
  • From this version and then, this plugin is also compatible with WordPress Multisite installations
  • From this version and then, you can change the slug of adminer using the constant PEXLECHRIS_ADMINER_SLUG (By default, adminer loads from www.site.com/wp-adminer )
  • From this version and then, you can log in even if the password is empty string (For some local setups)
  • From this version and then, by default you can only show wordpress database (to enable managing of other databases in same server see FAQ)

1.0.0

  • Initial Release.