mirror of
https://github.com/vrana/adminer.git
synced 2025-12-27 02:40:46 +01:00
1.7 KiB
1.7 KiB
Adminer
Adminer is a full-featured database management tool written in PHP. It consists of a single file ready to deploy to the target server. Adminer Editor offers data manipulation for end-users.
- Supports: MySQL, MariaDB, PostgreSQL, CockroachDB, SQLite, MS SQL, Oracle
- Plugins for: Elasticsearch, SimpleDB, MongoDB, Firebird, ClickHouse, IMAP
- Requirements: PHP 5.3+
Screenshot
Installation
If downloaded from Git then run: git submodule update --init
adminer/index.php- Run development version of Adminereditor/index.php- Run development version of Adminer Editoreditor/example.php- Example customizationadminer/sqlite.php- Development version of Adminer with SQLite allowededitor/sqlite.php- Development version of Editor with SQLite allowedadminer/designs.php- Development version of Adminer withadminer.cssswitchercompile.php- Create a single file versionlang.php- Update translationstests/*.html- Katalon Recorder test suites
Plugins
There are several plugins distributed with Adminer and there are also many user-contributed plugins linked from https://www.adminer.org/plugins/.
To use a plugin, simply upload it to adminer-plugins/ next to adminer.php.
- adminer.php
- adminer-plugins
- config.php
- dump-xml.php
- login-password-less.php
Some plugins require configuration. To use them, you need to create another file in adminer-plugins/:
<?php // config.php
require_once __DIR__ . "/login-password-less.php";
return array(
new AdminerLoginPasswordLess('$2y$07$Czp9G/aLi3AnaUqpvkF05OHO1LMizrAgMLvnaOdvQovHaRv28XDhG'),
);
