Questions tagged [adminer]

Adminer is an open-source database management tool distributed in a single PHP file. It supports MySQL, PostgreSQL, SQLite, MS SQL and Oracle. It focuses mainly on security, user experience, performance and feature set.

Overview

Adminer (formerly phpMinAdmin) is a full-featured database management tool written in PHP. Conversely to , it consist of a single file ready to deploy to the target server.
It is available for and .

It focuses mainly on :

  1. security
  2. User experience
  3. Performance
  4. Feature set
  5. Size

Features

  • Connect to a database server with username and password
  • Select an existing database or create a new one
  • List fields, indexes, foreign keys and triggers of table
  • Change name, engine, collation, auto_increment and comment of table
  • Alter name, type, collation, comment and default values of columns
  • Add and drop tables and columns
  • Create, alter, drop and search by indexes including fulltext
  • Create, alter, drop and link lists by foreign keys
  • Create, alter, drop and select from views
  • Create, alter, drop and call stored procedures and functions
  • Create, alter and drop triggers
  • List data in tables with search, aggregate, sort and limit results
  • Insert new records, update and delete the existing ones
  • Supports all data types, blobs through file transfer
  • Execute any SQL command from a text field or a file
  • Export table structure, data, views, routines, databases to SQL or CSV
  • Print database schema connected by foreign keys
  • Show processes and kill them
  • Display users and rights and change them
  • Display variables with links to documentation
  • Manage events and table partitions (MySQL 5.1)
  • Schemas, sequences, user types (PostgreSQL)
  • Extensive customization options

Requirements

  • Works with MySQL, PostgreSQL, SQLite, MS SQL, Oracle, SimpleDB, Elasticsearch, MongoDB
  • Supports PHP 5 with enabled sessions
  • Available in Arabic, Catalan, Chinese, Czech, Dutch, English, Estonian, French, German, Hungarian, Italian, Japanese, Lithuanian, Persian, Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Tamil, Turkish, Ukrainian, ... (32)
  • Free for commercial and non-commercial use (Apache License or GPL 2)

Links

143 questions
1
vote
0 answers

How to disable "Export" function in Adminer

I'm trying to disable the option to export data in Adminer 4.2.1. I found an advice that returning an empty array for dumpFormat() like this should be working (since Adminer 3.3.4): function dumpFormat() { return array(); } But that simply…
Iruwen
  • 11
  • 4
1
vote
0 answers

WP Adminer - instead Modify field appeared a strange field with text. MySQL database editing

I got a problem with the database on Adminer plugin page. Somehow, suddenly, instead Modify field appeared a strange field with the text. On this example text is…
vorsta
  • 21
  • 1
1
vote
1 answer

mysql 5.6 - mysql command prompt no longer working and service still running

Windows 8.1 - mySql 5.6 This is a strange one: I went into command prompt entered: mysql -uroot as usual and got back: 'mysql' is not recognized as an internal or external command, operable program or batch file. I went looking for mysql.exe and it…
James Harrison
  • 119
  • 1
  • 2
  • 9
1
vote
1 answer

Adminer cannot find PHP extensions

5.2.17, apache 2.2.5 and MySQL 5.6.22 and adminer 4.1.0-mysql My configuration **[SYSTEM variables]** PHPRC = C:\PHP PATH = ....;C:\Program Files (x86)\Apache Software Foundation\Apache2.2\bin\;C:\PHP;C:\Program Files (x86)\MySQL\MySQL Server…
Buteo Mausjäger
  • 123
  • 1
  • 11
1
vote
2 answers

Adminer- Access denied for user 'root'@'localhost' (using password: NO)

I'm getting this error when i try to access my phpmyadmin databases from my site at 000webhost Access denied for user 'root'@'localhost' (using password: NO) but when i type localhost in URL and enter my login details through adminer's login, i…
user3184611
  • 45
  • 2
  • 2
  • 7
0
votes
1 answer

MariaDB 10.6 doesn't respect the foreign_key_checks setting when creating a table with check constraints

I'm trying to import database tables from a file of table definitions. Near the top, there is a line setting foreign_key_checks to 0, so that no errors would be thrown because of tables that reference other not-yet-created tables. With an older…
Magmatic
  • 1,754
  • 3
  • 19
  • 34
0
votes
1 answer

mysql in docker showing different databases

I'm currently learning laravel and new to docker. I have MySQL previously installed and wanted to run a server using docker and adminer with docker-compose.yml below version: "3.9" services: mysql: image: mysql command:…
0
votes
1 answer

Cannot log into mysql via Adminer, wondering if there is anything wrong with my docker-compose.yml

Version: '3' Services: nginx: build: context: ./lde/nginx ports: - 80:80 volumes: - ./www:/var/www/html - ./www/errors:/etc/nginx/html - ../node_modules:/node_modules depends_on: - php php: …
Yu Zhang
  • 2,037
  • 6
  • 28
  • 42
0
votes
0 answers

Unable to run Adminer on Browser on given port in a docker container

I have tried creating a Docker container for Adminer using this command: sudo docker run -it -d --name admine -p 7000:7000 --network techBankNet -e ADMINER_DEFAULT_SERVER=mysql_container --restart always adminer:latest. After I run the command sudo…
lone wolf
  • 85
  • 8
0
votes
1 answer

Why can I connect to my MySQL db just fine through MySQL Workbench, but not with Adminer?

I've created a Podman Pod using podman kube play dbstack.yml which pulls three images from the Docker Hub: MySQL, MySQL Workbench, Adminer, and creates a Pod with these three containers. When I go to localhost:3000 (Workbench) in my web browser and…
telometto
  • 111
  • 5
0
votes
3 answers

Can't connect adminer to postgres server in docker

I'm trying to run latest version of PostgreSQL 15.2 (Debian 15.2-1.pgdg110+1) using docker-compose # Use postgres/pswd user/password credentials version: '3.1' services: db: image: postgres restart: unless-stopped environment: …
AlexeiP
  • 581
  • 1
  • 10
  • 26
0
votes
1 answer

why adminer.css is not reflecting even after restart the apache?

I installed adminer in Ubuntu 22.10 using CLI and it was working successfully in http://localhost/adminer. Now I want to change the theme. Adminer file location (usr/share/adminer). Here I added adminer.css file from here and it was not working in…
0
votes
0 answers

ADMINER - after creating host entry of adminer.php , error like that None of the supported PHP extensions (MySQLi, MySQL, PDO_MySQL) are available

I used Ubuntu 18.04.6 LTS. Before creating the host entry of adminer.php in Ubuntu, it worked fine. But after creating the Virtual host entry of the adminer, there is an error like that: None of the supported PHP extensions (MySQLi, MySQL,…
0
votes
1 answer

Change Adminer to PhpMyAdmin in Local WP

I'm learning Wordpress development, but I really prefer to use the phpmyadmin instead of adminer. How can I change it in local WP? I really don't know how to do that
0
votes
0 answers

How can I add Adminer to my Ruby on Rails application with PostgreSQL?

I am new to ruby on rails. This question may be simple. I have been trying to add an adminer folder on the app on ruby on rails application. My database is PostgreSQL. I want to manage my database on the browser using adminer. I wish someone could…