Adminer - Database management in a single PHP file Adminer Editor - Data manipulation for end-users https://www.adminer.org/ Supports: MySQL, MariaDB, PostgreSQL, SQLite, MS SQL, Oracle, Elasticsearch, MongoDB, SimpleDB (plugin), Firebird (plugin), ClickHouse (plugin) Requirements: PHP 5+ Apache License 2.0 or GPL 2 adminer/index.php - Run development version of Adminer editor/index.php - Run development version of Adminer Editor editor/example.php - Example customization plugins/readme.txt - Plugins for Adminer and Adminer Editor adminer/plugin.php - Plugin demo adminer/sqlite.php - Development version of Adminer with SQLite allowed editor/sqlite.php - Development version of Editor with SQLite allowed adminer/designs.php - Development version of Adminer with adminer.css switcher compile.php - Create a single file version lang.php - Update translations tests/katalon.html - Katalon Automation Recorder test suite If downloaded from Git then run: git submodule update --init
Database management in a single PHP file
Overview
Comments
-
Export table feature: Allow exporting of one query for each row
In some cases I would like to export table data with one query for each row in the table. This is useful for when you compare exported data or manually pick queries (rows). This was something I missed after switching from phpMyAdmin
- the dumpData function now checks for 'single_row_insert' param in $_POST
- added a checkbox in export interface
- added new language key 'One query for each row' and added it to nl (and xx) language
-
Removed references to ereg, eregi and ereg_replace from the code base
The POSIX regex functions were deprecated in PHP 5.3.0 (this version and all newer ones throw a warning). The use of the POSIX regex functions is now highly discouraged and may be removed from the code base in any future release without warning.
The functions have been replaced with the PCRE regex replacements (preg_match and preg_replace). The major difference is that PCRE requires delimiters in the pattern and those delimites must be escaped in the pattern itself:
eregi('random/pattern') becomes preg_match('/random/pattern/i')
-
added mongodb PHP7 beta driver.
Work only insert, update, list database, list index, list tables. select, where, limit, order, delete, edit, edit from select. does not work structure modify, index, modify, custom queries, export, import, groups, collections drop, add.
-
set of UX plugins for phpMyAdmin users + few fixes/optimizations
Base files modifications:
- Fix edit multiple checked records ("support edit few checked records")
- Recognize emails with name (sample: name <[email protected]>) ("output binary UUID, recognize email with name,..")
- Fix paginator page 1 (first) skin ("skins fix: use "&page=" for paginator page 1")
- Fix table pages top links (all pages, which related to selected table, has similar links) ("fix table pages links row")
- Optimize referencable_primary() for MySQL ("speed up loading "Alter table" page")
- Remove duplicates of collation-lists on
Alter table
page. ("speed up loading "Alter table" page") - Require JavaScript on client side! But support "nojs=1" argument to return old method ("support alter table without JS (nojs - argument)")
- Add style chooser to select data export ("add data style chooser to data export+")
- Support export table rows without AI keys ("add support export rows without AI values")
- Output binary UUID in hex ("output binary UUID, recognize email with name,..")
- Fix disabled <select> UI in Chrome ("add to UX / frameset_simulator resizer+")
- Add detect
SQL command
page when URL containt '&table=' (allow to use UX plugin sql_command_table_fields) ("fix table pages links row") - Support receive partial data for alter table (workaround for max_input_vars limit errors) (allow to use UX plugin table_edit_by_fields) ("table structure edit shortcuts (move/add/del)+")
UX plugins for simpler migrate phpMyAdmin users:
tables_list_name_select
: table names in menu has link toSelect data
, and icons toShow structure
tables_list_filter
: table list in menu has filter fieldduplicate_result_controls
: duplicate paginator before result tableframeset_simulator
: simulate frames in UIdisable_highlight
: disable code highlightexecuted_query_output_modifier
: <code> text wrap + possibility to show full query + possibility to always show executed querysubmit_at_right
: movesubmit
buttons to the righttable_hscroll_followers
: do not scroll some page elements (pages list, SQL code,...) while horizontal scroll the pagesql_command_table_fields
: add table fields chooser onSQL command
pageexport_per_table
: copy "Export" link to table links listtable_structure_advanced
: display table status, table manipulations (+ table rename), export data and edit table controls on table structure pagetable_edit_by_fields
: disable by default input fields onAlter table
page, to reduce count of submitted valuestable_record_field_details
: display field comments on record edit pagetable_sort_desc_before_title
: outputdesc
link before columnt titledb_diagnostics_queries
: display shortcut to diagnostic queries for database/driver. Currently only for MySQL.sql_command_transaction
: detect "START TRANSACTION" to setup "Stop on error" checkbox
-
Adminer mongodb driver fix bug
fix bug: log in mongodb error: "Database does not support password", but the user name and password are correct and it is required,and user can not log in successfully. The error message and logic make people feel very strange.
-
- #1 adds the plugin to enable customizing the theme based on the ser…
As I was in the need to customize the theme used in the adminer based on the selected SQL server, I implemented a small plugin for this.
Maybe it's of interest for some users. Please feel free to grap it and adapt anything, that is not in line.
-
added mongodb PHP7 beta driver.
Work only insert, update, list database, list index, list tables. select, where, limit, order, delete, edit, edit from select. does not work structure modify, index, modify, custom queries, export, import, groups, collections drop, add.
-
Customizable import filename
Hello. I decided to add the ability to select a file when importing data, it would seem a very simple thing, but it saves a lot of time and makes this functionality very useful for everyday work. Thank you!
-
Various PHP 8 fixes
This PR fixes various new warnings in PHP 8. There are still quite a few remaining, but I'd like to put this up for review already.
After this PR is merged Adminer requires at least PHP 5.6, because of the spread operator in the
query()
method signature. -
Allow responsive styles on larger devices
Currently, resizing a window on a desktop device squashes and truncates content, making the interface difficult to use. E.g. snapping Adminer to a half screen width in Windows to view database content beside something related is more difficult than it needs to be.
There's no advantage to targetting device widths unless dealing with issues in specific browsers.
-
Virtual columns
I think that I could add support for virtual columns (mysql/mariadb) and do not complicate the editing of the table. Look here please. I do not know whether I did everything correctly and did not spoil the editing of other types of databases.
CREATE TABLE `my_table` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `date` date NOT NULL DEFAULT '2000-06-01', `json_data` text DEFAULT NULL, `user_name` varchar(25) GENERATED ALWAYS AS (concat_ws(' ',json_value(`json_data`,'$.first-name'),json_value(`json_data`,'$.last-name'))) STORED, `user_age` smallint(5) unsigned GENERATED ALWAYS AS (json_value(`json_data`,'$.about.age')) VIRTUAL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; INSERT INTO `my_table` (`id`, `date`, `json_data`) VALUES (9, '2000-01-01', '{\"first-name\": \"John\",\"last-name\":\"Doe\",\"about\":{\"age\":27}}');
-
Replace for PHP tmpfile function
Some shared hostings doesn't allow to use the tmpfile() PHP functions (i.e. when this function is disabled via disable_functions in the php.ini), so Adminer stop working in that servers. This change create a random name for a temporary file that use the standard fopen function.
-
Master fix mysql dump
Hello Jakub, I made the fix for the one todo.txt item - Generated columns (MySQL >= 5.7.6). My small code change omits generated columns in SQL dump. Jiri
-
Update hydra theme to most recent version
Thanks for maintaining this!
The current hydra theme version is 2 years old. There's a horizontal scroll bug that prevents view columns beyond edge of screen, esp difficult for small screens with big tables. This fixes that.
Thanks!
Releases(v4.8.1)
-
v4.8.1(May 14, 2021)
Internet Explorer or PDO in Adminer 4.7.8-4.8.0: Fix XSS in doc_link (bug #797) Fix more PHP 8 warnings (bug #781) Avoid PHP warnings with PDO drivers (bug #786, regression from 4.7.8) MySQL: Allow moving views to other DB and renaming DB with views (bug #783) MariaDB: Do not treat sequences as views (PR #416) PostgreSQL: Support UPDATE OF triggers (bug #789) PostgreSQL: Support triggers with more events (OR) PostgreSQL: Fix parsing of foreign keys with non-ASCII column names PostgreSQL < 10 PDO: Avoid displaying GENERATED ALWAYS BY IDENTITY everywhere (bug #785, regression from 4.7.9) SQLite: Fix displayed types (bug #784, regression from 4.8.0)
Source code(tar.gz)
Source code(zip)
adminer-4.8.1.php(465.43 KB)
adminer-4.8.1.tar.gz(643.30 KB)
adminer-4.8.1.zip(784.55 KB)
adminer-4.8.1-cs.php(311.50 KB)
adminer-4.8.1-de.php(311.14 KB)
adminer-4.8.1-en.php(309.64 KB)
adminer-4.8.1-mysql.php(356.21 KB)
adminer-4.8.1-mysql-cs.php(209.40 KB)
adminer-4.8.1-mysql-de.php(209.01 KB)
adminer-4.8.1-mysql-en.php(207.65 KB)
adminer-4.8.1-mysql-pl.php(209.74 KB)
adminer-4.8.1-mysql-sk.php(209.07 KB)
adminer-4.8.1-pl.php(311.87 KB)
adminer-4.8.1-sk.php(311.18 KB)
editor-4.8.1.php(264.43 KB)
editor-4.8.1-cs.php(184.94 KB)
editor-4.8.1-de.php(184.81 KB)
editor-4.8.1-en.php(184.19 KB)
editor-4.8.1-mysql.php(180.16 KB)
editor-4.8.1-mysql-cs.php(103.72 KB)
editor-4.8.1-mysql-de.php(103.53 KB)
editor-4.8.1-mysql-en.php(103.01 KB)
editor-4.8.1-mysql-pl.php(103.69 KB)
editor-4.8.1-mysql-sk.php(103.40 KB)
editor-4.8.1-pl.php(184.92 KB)
editor-4.8.1-sk.php(184.63 KB)
-
v4.8.0(Feb 10, 2021)
Support function default values in insert (bug #713) Allow SQL pseudo-function in insert Skip date columns for non-date values in search anywhere Add DB version to comment in export Support PHP 8 in create table (regression from 4.7.9) MySQL 8: Fix EXPLAIN in SQL command PostgreSQL: Create PRIMARY KEY for auto increment columns PostgreSQL: Avoid exporting empty sequence last value (bug #768) PostgreSQL: Do not show triggers from other schemas (PR #412) PostgreSQL: Fix multi-parameter functions in default values (bug #736) PostgreSQL: Fix displaying NULL bytea fields PostgreSQL PDO: Do not select NULL function for false values in edit Oracle: Alter indexes Oracle: Count tables Oracle: Import from CSV Oracle: Fix column size with string type MongoDB: Handle errors SimpleDB, Firebird, ClickHouse: Move to plugin
Source code(tar.gz)
Source code(zip)
adminer-4.8.0.php(464.72 KB)
adminer-4.8.0.tar.gz(641.05 KB)
adminer-4.8.0.zip(782.27 KB)
adminer-4.8.0-cs.php(310.78 KB)
adminer-4.8.0-de.php(310.43 KB)
adminer-4.8.0-en.php(308.92 KB)
adminer-4.8.0-mysql.php(355.91 KB)
adminer-4.8.0-mysql-cs.php(209.11 KB)
adminer-4.8.0-mysql-de.php(208.72 KB)
adminer-4.8.0-mysql-en.php(207.35 KB)
adminer-4.8.0-mysql-pl.php(209.44 KB)
adminer-4.8.0-mysql-sk.php(208.78 KB)
adminer-4.8.0-pl.php(311.15 KB)
adminer-4.8.0-sk.php(310.47 KB)
editor-4.8.0.php(263.72 KB)
editor-4.8.0-cs.php(184.23 KB)
editor-4.8.0-de.php(184.10 KB)
editor-4.8.0-en.php(183.49 KB)
editor-4.8.0-mysql.php(179.84 KB)
editor-4.8.0-mysql-cs.php(103.39 KB)
editor-4.8.0-mysql-de.php(103.20 KB)
editor-4.8.0-mysql-en.php(102.68 KB)
editor-4.8.0-mysql-pl.php(103.35 KB)
editor-4.8.0-mysql-sk.php(103.07 KB)
editor-4.8.0-pl.php(184.22 KB)
editor-4.8.0-sk.php(183.92 KB)
-
v4.7.9(Feb 7, 2021)
Fix XSS in browsers which don't encode URL parameters (bug #775, regression from 4.7.0) Elasticsearch, ClickHouse: Do not print response if HTTP code is not 200 Don't syntax highlight during IME composition (bug #747) Quote values with leading and trailing zeroes in CSV export (bug #777) Link URLs in SQL command (PR #411) Fix displayed foreign key columns from other DB (bug #766) Re-enable PHP warnings (regression from 4.7.8) MySQL: Do not export names in quotes with sql_mode='ANSI_QUOTES' (bug #749) MySQL: Avoid error in PHP 8 when connecting to socket (PR #409) MySQL: Don't quote default value of text fields (bug #779) PostgreSQL: Export all FKs after all CREATE TABLE (PR #351) PostgreSQL: Fix dollar-quoted syntax highlighting (bug #738) PostgreSQL: Do not show view definition from other schema (PR #392) PostgreSQL: Use bigserial for bigint auto increment (bug #765, regression from 3.0.0) PostgreSQL PDO: Support PgBouncer, unsupport PostgreSQL < 9.1 (bug #771) PostgreSQL 10: Support GENERATED ALWAYS BY IDENTITY (PR #386) PostgreSQL 10: Support partitioned tables (PR #396) PostgreSQL 11: Create PRIMARY KEY for auto increment columns SQLite: Set busy_timeout to 500 MS SQL: Don't truncate comments to 30 chars (PR #376) Elasticsearch 6: Fix displaying type mapping (PR #402) MongoDB: Fix password-less check in the mongo extension (PR #405) Editor: Cast to string when searching (bug #325) Editor: Avoid trailing dot in export filename
Source code(tar.gz)
Source code(zip)
adminer-4.7.9.php(480.15 KB)
adminer-4.7.9.tar.gz(638.79 KB)
adminer-4.7.9.zip(780.00 KB)
adminer-4.7.9-cs.php(326.41 KB)
adminer-4.7.9-de.php(326.07 KB)
adminer-4.7.9-en.php(324.54 KB)
adminer-4.7.9-mysql.php(355.17 KB)
adminer-4.7.9-mysql-cs.php(208.38 KB)
adminer-4.7.9-mysql-de.php(207.99 KB)
adminer-4.7.9-mysql-en.php(206.62 KB)
adminer-4.7.9-mysql-pl.php(208.71 KB)
adminer-4.7.9-mysql-sk.php(208.05 KB)
adminer-4.7.9-pl.php(326.79 KB)
adminer-4.7.9-sk.php(326.10 KB)
editor-4.7.9.php(279.35 KB)
editor-4.7.9-cs.php(199.91 KB)
editor-4.7.9-de.php(199.79 KB)
editor-4.7.9-en.php(199.15 KB)
editor-4.7.9-mysql.php(179.10 KB)
editor-4.7.9-mysql-cs.php(102.72 KB)
editor-4.7.9-mysql-de.php(102.53 KB)
editor-4.7.9-mysql-en.php(102.01 KB)
editor-4.7.9-mysql-pl.php(102.69 KB)
editor-4.7.9-mysql-sk.php(102.40 KB)
editor-4.7.9-pl.php(199.90 KB)
editor-4.7.9-sk.php(199.60 KB)
-
v4.7.8(Dec 6, 2020)
Support PHP 8 Disallow connecting to privileged ports (bug #769)
Source code(tar.gz)
Source code(zip)
adminer-4.7.8.php(478.01 KB)
adminer-4.7.8.tar.gz(629.16 KB)
adminer-4.7.8.zip(770.45 KB)
adminer-4.7.8-cs.php(324.14 KB)
adminer-4.7.8-de.php(323.79 KB)
adminer-4.7.8-en.php(322.30 KB)
adminer-4.7.8-mysql.php(354.19 KB)
adminer-4.7.8-mysql-cs.php(207.58 KB)
adminer-4.7.8-mysql-de.php(207.18 KB)
adminer-4.7.8-mysql-en.php(205.82 KB)
adminer-4.7.8-mysql-pl.php(207.91 KB)
adminer-4.7.8-mysql-sk.php(207.25 KB)
adminer-4.7.8-pl.php(324.52 KB)
adminer-4.7.8-sk.php(323.83 KB)
editor-4.7.8.php(277.31 KB)
editor-4.7.8-cs.php(198.09 KB)
editor-4.7.8-de.php(197.97 KB)
editor-4.7.8-en.php(197.36 KB)
editor-4.7.8-mysql.php(178.57 KB)
editor-4.7.8-mysql-cs.php(102.36 KB)
editor-4.7.8-mysql-de.php(102.16 KB)
editor-4.7.8-mysql-en.php(101.64 KB)
editor-4.7.8-mysql-pl.php(102.32 KB)
editor-4.7.8-mysql-sk.php(102.03 KB)
editor-4.7.8-pl.php(198.08 KB)
editor-4.7.8-sk.php(197.78 KB)
-
v4.7.7(May 11, 2020)
Fix open redirect if Adminer is accessible at //adminer.php%2F@
Source code(tar.gz)
Source code(zip)
adminer-4.7.7.php(477.83 KB)
adminer-4.7.7.tar.gz(629.03 KB)
adminer-4.7.7.zip(770.30 KB)
adminer-4.7.7-cs.php(323.97 KB)
adminer-4.7.7-de.php(323.62 KB)
adminer-4.7.7-en.php(322.12 KB)
adminer-4.7.7-mysql.php(354.01 KB)
adminer-4.7.7-mysql-cs.php(207.40 KB)
adminer-4.7.7-mysql-de.php(207.01 KB)
adminer-4.7.7-mysql-en.php(205.65 KB)
adminer-4.7.7-mysql-pl.php(207.74 KB)
adminer-4.7.7-mysql-sk.php(207.07 KB)
adminer-4.7.7-pl.php(324.35 KB)
adminer-4.7.7-sk.php(323.66 KB)
editor-4.7.7.php(277.14 KB)
editor-4.7.7-cs.php(197.92 KB)
editor-4.7.7-de.php(197.80 KB)
editor-4.7.7-en.php(197.19 KB)
editor-4.7.7-mysql.php(178.40 KB)
editor-4.7.7-mysql-cs.php(102.19 KB)
editor-4.7.7-mysql-de.php(102.00 KB)
editor-4.7.7-mysql-en.php(101.48 KB)
editor-4.7.7-mysql-pl.php(102.15 KB)
editor-4.7.7-mysql-sk.php(101.87 KB)
editor-4.7.7-pl.php(197.91 KB)
editor-4.7.7-sk.php(197.62 KB)
-
v4.7.6(Jan 31, 2020)
Speed up alter table form (regression from 4.4.0) Fix clicking on non-input fields in alter table (regression from 4.6.2) Display time of procedure execution Disallow connecting to ports > 65535 (bug #730) MySQL: Always set foreign_key_checks in export PostgreSQL: Support exporting views Editor: Fix focusing foreign key search in select
Source code(tar.gz)
Source code(zip)
adminer-4.7.6.php(477.78 KB)
adminer-4.7.6.tar.gz(628.48 KB)
adminer-4.7.6.zip(769.71 KB)
adminer-4.7.6-cs.php(323.90 KB)
adminer-4.7.6-de.php(323.55 KB)
adminer-4.7.6-en.php(322.06 KB)
adminer-4.7.6-mysql.php(353.99 KB)
adminer-4.7.6-mysql-cs.php(207.34 KB)
adminer-4.7.6-mysql-de.php(206.94 KB)
adminer-4.7.6-mysql-en.php(205.58 KB)
adminer-4.7.6-mysql-pl.php(207.67 KB)
adminer-4.7.6-mysql-sk.php(207.00 KB)
adminer-4.7.6-pl.php(324.29 KB)
adminer-4.7.6-sk.php(323.59 KB)
editor-4.7.6.php(277.01 KB)
editor-4.7.6-cs.php(197.86 KB)
editor-4.7.6-de.php(197.74 KB)
editor-4.7.6-en.php(197.12 KB)
editor-4.7.6-mysql.php(178.34 KB)
editor-4.7.6-mysql-cs.php(102.13 KB)
editor-4.7.6-mysql-de.php(101.93 KB)
editor-4.7.6-mysql-en.php(101.41 KB)
editor-4.7.6-mysql-pl.php(102.09 KB)
editor-4.7.6-mysql-sk.php(101.80 KB)
editor-4.7.6-pl.php(197.85 KB)
editor-4.7.6-sk.php(197.55 KB)
-
v4.7.5(Nov 13, 2019)
Add id="" to cells with failed inline edit (bug #708) PostgreSQL: Fix getting default value in PostgreSQL 12 (bug #719) PostgreSQL, Oracle: Set schema for EXPLAIN queries in SQL command (bug #706) ClickHouse: SQL command Swedish translation
Source code(tar.gz)
Source code(zip)
adminer-4.7.5.php(477.61 KB)
adminer-4.7.5.tar.gz(628.01 KB)
adminer-4.7.5.zip(768.89 KB)
adminer-4.7.5-cs.php(323.73 KB)
adminer-4.7.5-de.php(323.38 KB)
adminer-4.7.5-en.php(321.89 KB)
adminer-4.7.5-mysql.php(353.92 KB)
adminer-4.7.5-mysql-cs.php(207.26 KB)
adminer-4.7.5-mysql-de.php(206.86 KB)
adminer-4.7.5-mysql-en.php(205.50 KB)
adminer-4.7.5-mysql-pl.php(207.60 KB)
adminer-4.7.5-mysql-sk.php(206.93 KB)
adminer-4.7.5-pl.php(324.11 KB)
adminer-4.7.5-sk.php(323.42 KB)
editor-4.7.5.php(276.90 KB)
editor-4.7.5-cs.php(197.75 KB)
editor-4.7.5-de.php(197.62 KB)
editor-4.7.5-en.php(197.01 KB)
editor-4.7.5-mysql.php(178.32 KB)
editor-4.7.5-mysql-cs.php(102.11 KB)
editor-4.7.5-mysql-de.php(101.92 KB)
editor-4.7.5-mysql-en.php(101.40 KB)
editor-4.7.5-mysql-pl.php(102.07 KB)
editor-4.7.5-mysql-sk.php(101.79 KB)
editor-4.7.5-pl.php(197.74 KB)
editor-4.7.5-sk.php(197.44 KB)
-
v4.7.4(Oct 22, 2019)
Fix XSS if Adminer is accessible at URL /data:
Source code(tar.gz)
Source code(zip)
adminer-4.7.4.php(473.66 KB)
adminer-4.7.4.tar.gz(621.99 KB)
adminer-4.7.4.zip(761.52 KB)
adminer-4.7.4-cs.php(322.98 KB)
adminer-4.7.4-de.php(322.63 KB)
adminer-4.7.4-en.php(321.13 KB)
adminer-4.7.4-mysql.php(350.86 KB)
adminer-4.7.4-mysql-cs.php(207.22 KB)
adminer-4.7.4-mysql-de.php(206.82 KB)
adminer-4.7.4-mysql-en.php(205.46 KB)
adminer-4.7.4-mysql-pl.php(207.55 KB)
adminer-4.7.4-mysql-sk.php(206.88 KB)
adminer-4.7.4-pl.php(323.36 KB)
adminer-4.7.4-sk.php(322.67 KB)
editor-4.7.4.php(274.51 KB)
editor-4.7.4-cs.php(197.03 KB)
editor-4.7.4-de.php(196.91 KB)
editor-4.7.4-en.php(196.30 KB)
editor-4.7.4-mysql.php(176.69 KB)
editor-4.7.4-mysql-cs.php(102.11 KB)
editor-4.7.4-mysql-de.php(101.91 KB)
editor-4.7.4-mysql-en.php(101.39 KB)
editor-4.7.4-mysql-pl.php(102.07 KB)
editor-4.7.4-mysql-sk.php(101.78 KB)
editor-4.7.4-pl.php(197.03 KB)
editor-4.7.4-sk.php(196.73 KB)
-
v4.7.3(Aug 27, 2019)
Allow editing foreign keys pointing to tables in other database/schema (bug #694) Fix blocking of concurrent instances in PHP >7.2 (bug #703) MySQL: Speed up displaying tables in large databases (bug #700, regression from 4.7.2) MySQL: Allow editing rows identified by negative floats (bug #695) MySQL: Skip editing generated columns SQLite: Quote strings stored in integer columns in export (bug #696) SQLite: Handle error in altering table (bug #697) SQLite: Allow setting auto increment for empty tables SQLite: Preserve auto increment when recreating table MS SQL: Support foreign keys to other DB MongoDB: Allow setting authSource from environment variable
Source code(tar.gz)
Source code(zip)
adminer-4.7.3.php(473.13 KB)
adminer-4.7.3.tar.gz(622.08 KB)
adminer-4.7.3.zip(761.20 KB)
adminer-4.7.3-cs.php(322.44 KB)
adminer-4.7.3-de.php(322.09 KB)
adminer-4.7.3-en.php(320.60 KB)
adminer-4.7.3-mysql.php(350.95 KB)
adminer-4.7.3-mysql-cs.php(207.30 KB)
adminer-4.7.3-mysql-de.php(206.90 KB)
adminer-4.7.3-mysql-en.php(205.54 KB)
adminer-4.7.3-mysql-pl.php(207.64 KB)
adminer-4.7.3-mysql-sk.php(206.97 KB)
adminer-4.7.3-pl.php(322.82 KB)
adminer-4.7.3-sk.php(322.13 KB)
editor-4.7.3.php(274.48 KB)
editor-4.7.3-cs.php(197.01 KB)
editor-4.7.3-de.php(196.89 KB)
editor-4.7.3-en.php(196.28 KB)
editor-4.7.3-mysql.php(176.67 KB)
editor-4.7.3-mysql-cs.php(102.08 KB)
editor-4.7.3-mysql-de.php(101.89 KB)
editor-4.7.3-mysql-en.php(101.37 KB)
editor-4.7.3-mysql-pl.php(102.05 KB)
editor-4.7.3-mysql-sk.php(101.76 KB)
editor-4.7.3-pl.php(197.00 KB)
editor-4.7.3-sk.php(196.71 KB)
-
v4.7.2(Jul 18, 2019)
Do not attempt logging in without password (bug #676) Stretch footer over the whole table width (bug #624) Allow overwriting tables when copying them Fix displaying SQL command after Save and continue edit Cache busting for adminer.css MySQL: Fix displaying multi-columns foreign keys (bug #675) MySQL: Fix creating users and changing password in MySQL 8 (bug #663) MySQL: Pass SRID to GeomFromText PostgreSQL: Fix setting column comments on new table PostgreSQL: Display definitions of materialized views (bug #682) PostgreSQL: Fix table status in PostgreSQL 12 (bug #683) MS SQL: Support comments Elasticsearch: Fix setting number of rows
Source code(tar.gz)
Source code(zip)
adminer-4.7.2.php(472.07 KB)
adminer-4.7.2.tar.gz(606.82 KB)
adminer-4.7.2.zip(745.09 KB)
adminer-4.7.2-cs.php(321.38 KB)
adminer-4.7.2-de.php(321.04 KB)
adminer-4.7.2-en.php(319.54 KB)
adminer-4.7.2-mysql.php(350.26 KB)
adminer-4.7.2-mysql-cs.php(206.63 KB)
adminer-4.7.2-mysql-de.php(206.23 KB)
adminer-4.7.2-mysql-en.php(204.87 KB)
adminer-4.7.2-mysql-pl.php(206.96 KB)
adminer-4.7.2-mysql-sk.php(206.29 KB)
adminer-4.7.2-pl.php(321.77 KB)
adminer-4.7.2-sk.php(321.07 KB)
editor-4.7.2.php(273.93 KB)
editor-4.7.2-cs.php(196.45 KB)
editor-4.7.2-de.php(196.33 KB)
editor-4.7.2-en.php(195.72 KB)
editor-4.7.2-mysql.php(176.50 KB)
editor-4.7.2-mysql-cs.php(101.91 KB)
editor-4.7.2-mysql-de.php(101.72 KB)
editor-4.7.2-mysql-en.php(101.20 KB)
editor-4.7.2-mysql-pl.php(101.87 KB)
editor-4.7.2-mysql-sk.php(101.59 KB)
editor-4.7.2-pl.php(196.45 KB)
editor-4.7.2-sk.php(196.15 KB)
-
v4.7.1(Jan 24, 2019)
Display the tables scrollbar (bug #647) Remember visible columns in Create Table form (bug #493) Add autocomplete attributes to login form PHP <5.4 compatibility even with ClickHouse enabled (regression from 4.7.0) SQLite: Hide server field in login form Editor: Allow disabling boolean fields in PostgreSQL (bug #640)
Source code(tar.gz)
Source code(zip)
adminer-4.7.1.php(470.48 KB)
adminer-4.7.1.tar.gz(578.79 KB)
adminer-4.7.1.zip(716.73 KB)
adminer-4.7.1-cs.php(320.15 KB)
adminer-4.7.1-de.php(319.79 KB)
adminer-4.7.1-en.php(318.31 KB)
adminer-4.7.1-mysql.php(349.49 KB)
adminer-4.7.1-mysql-cs.php(206.26 KB)
adminer-4.7.1-mysql-de.php(205.85 KB)
adminer-4.7.1-mysql-en.php(204.50 KB)
adminer-4.7.1-mysql-pl.php(206.59 KB)
adminer-4.7.1-mysql-sk.php(205.92 KB)
adminer-4.7.1-pl.php(320.53 KB)
adminer-4.7.1-sk.php(319.84 KB)
editor-4.7.1.php(272.85 KB)
editor-4.7.1-cs.php(195.39 KB)
editor-4.7.1-de.php(195.26 KB)
editor-4.7.1-en.php(194.66 KB)
editor-4.7.1-mysql.php(176.29 KB)
editor-4.7.1-mysql-cs.php(101.72 KB)
editor-4.7.1-mysql-de.php(101.51 KB)
editor-4.7.1-mysql-en.php(101.00 KB)
editor-4.7.1-mysql-pl.php(101.68 KB)
editor-4.7.1-mysql-sk.php(101.39 KB)
editor-4.7.1-pl.php(195.39 KB)
editor-4.7.1-sk.php(195.09 KB)
-
v4.7.0(Nov 24, 2018)
Simplify storing executed SQL queries to bookmarks Warn when using password with leading or trailing spaces Hide import from server if importServerPath() returns an empty string Fix inline editing of empty cells (regression from 4.6.3) Allow adding more than two indexes and forign key columns at a time (regression from 4.4.0) Avoid overwriting existing tables when copying tables (bug #642) Fix function change with set data type Increase username maxlength to 80 (bug #623) Make maxlength in all fields a soft limit Make tables horizontally scrollable MySQL: Support foreign keys created with ANSI quotes (bug #620) MySQL: Recognize ON UPDATE current_timestamp() (bug #632, bug #638) MySQL: Descending indexes in MySQL 8 (bug #643) PostgreSQL: Quote array values in export (bug #621) PostgreSQL: Export DESC indexes (bug #639) PostgreSQL: Support GENERATED BY DEFAULT AS IDENTITY in PostgreSQL 10 MS SQL: Pass database when connecting ClickHouse: Connect, databases list, tables list, select, SQL command Georgian translation
Source code(tar.gz)
Source code(zip)
adminer-4.7.0.php(470.72 KB)
adminer-4.7.0.tar.gz(577.25 KB)
adminer-4.7.0.zip(713.11 KB)
adminer-4.7.0-cs.php(319.98 KB)
adminer-4.7.0-de.php(319.62 KB)
adminer-4.7.0-en.php(318.13 KB)
adminer-4.7.0-mysql.php(349.73 KB)
adminer-4.7.0-mysql-cs.php(206.10 KB)
adminer-4.7.0-mysql-de.php(205.68 KB)
adminer-4.7.0-mysql-en.php(204.34 KB)
adminer-4.7.0-mysql-pl.php(206.43 KB)
adminer-4.7.0-mysql-sk.php(205.76 KB)
adminer-4.7.0-pl.php(320.36 KB)
adminer-4.7.0-sk.php(319.67 KB)
editor-4.7.0.php(273.01 KB)
editor-4.7.0-cs.php(195.35 KB)
editor-4.7.0-de.php(195.22 KB)
editor-4.7.0-en.php(194.62 KB)
editor-4.7.0-mysql.php(176.43 KB)
editor-4.7.0-mysql-cs.php(101.68 KB)
editor-4.7.0-mysql-de.php(101.48 KB)
editor-4.7.0-mysql-en.php(100.97 KB)
editor-4.7.0-mysql-pl.php(101.65 KB)
editor-4.7.0-mysql-sk.php(101.36 KB)
editor-4.7.0-pl.php(195.35 KB)
editor-4.7.0-sk.php(195.05 KB)
-
v4.6.3(Jun 28, 2018)
Disallow using password-less databases Copy triggers when copying table Stop session before connecting Simplify running slow queries Decrease timeout for running slow queries from 5 seconds to 2 seconds Fix displaying info about non-alphabetical objects (bug #599) Use secure cookies on HTTP if session.cookie_secure is set PDO: Support binary fields download MySQL: Disallow LOAD DATA LOCAL INFILE MySQL: Use CONVERT() only when searching for non-ASCII (bug #603) MySQL: Order database names in MySQL 8 (bug #613) PostgreSQL: Fix editing data in views (bug #605, regression from 4.6.0) PostgreSQL: Do not cast date/time/number/uuid searches to text (bug #608) PostgreSQL: Export false as 0 in PDO (bug #619) MS SQL: Support port with sqlsrv Editor: Do not check boolean checkboxes with false in PostgreSQL (bug #607)
Source code(tar.gz)
Source code(zip)
adminer-4.6.3.php(456.85 KB)
adminer-4.6.3.tar.gz(565.67 KB)
adminer-4.6.3.zip(692.61 KB)
adminer-4.6.3-cs.php(312.78 KB)
adminer-4.6.3-de.php(312.41 KB)
adminer-4.6.3-en.php(310.93 KB)
adminer-4.6.3-mysql.php(342.14 KB)
adminer-4.6.3-mysql-cs.php(205.04 KB)
adminer-4.6.3-mysql-de.php(204.61 KB)
adminer-4.6.3-mysql-en.php(203.27 KB)
adminer-4.6.3-mysql-pl.php(205.36 KB)
adminer-4.6.3-mysql-sk.php(204.69 KB)
adminer-4.6.3-pl.php(313.15 KB)
adminer-4.6.3-sk.php(312.46 KB)
editor-4.6.3.php(262.01 KB)
editor-4.6.3-cs.php(188.97 KB)
editor-4.6.3-de.php(188.82 KB)
editor-4.6.3-en.php(188.23 KB)
editor-4.6.3-mysql.php(171.61 KB)
editor-4.6.3-mysql-cs.php(101.43 KB)
editor-4.6.3-mysql-de.php(101.21 KB)
editor-4.6.3-mysql-en.php(100.71 KB)
editor-4.6.3-mysql-pl.php(101.38 KB)
editor-4.6.3-mysql-sk.php(101.10 KB)
editor-4.6.3-pl.php(188.95 KB)
editor-4.6.3-sk.php(188.65 KB)
-
v4.6.2(Feb 20, 2018)
Semi-transparent border on table actions Shorten JSON values in select (bug #594) Speed up alter table (regression from 4.4.0) Store current version without authentication and in Editor PostgreSQL: Fix exporting string default values PostgreSQL: Fix exporting sequences in PostgreSQL 10 PostgreSQL: Add IF EXISTS to DROP SEQUENCE in export (bug #595) Editor: Fix displaying of true boolean values (regression from 4.5.0)
Source code(tar.gz)
Source code(zip)
adminer-4.6.2.php(451.81 KB)
adminer-4.6.2.tar.gz(564.48 KB)
adminer-4.6.2.zip(690.36 KB)
adminer-4.6.2-cs.php(311.07 KB)
adminer-4.6.2-de.php(310.64 KB)
adminer-4.6.2-en.php(309.16 KB)
adminer-4.6.2-mysql.php(338.71 KB)
adminer-4.6.2-mysql-cs.php(204.12 KB)
adminer-4.6.2-mysql-de.php(203.68 KB)
adminer-4.6.2-mysql-en.php(202.33 KB)
adminer-4.6.2-mysql-pl.php(204.43 KB)
adminer-4.6.2-mysql-sk.php(203.75 KB)
adminer-4.6.2-pl.php(311.40 KB)
adminer-4.6.2-sk.php(310.70 KB)
editor-4.6.2.php(258.52 KB)
editor-4.6.2-cs.php(187.77 KB)
editor-4.6.2-de.php(187.60 KB)
editor-4.6.2-en.php(187.01 KB)
editor-4.6.2-mysql.php(169.62 KB)
editor-4.6.2-mysql-cs.php(100.89 KB)
editor-4.6.2-mysql-de.php(100.68 KB)
editor-4.6.2-mysql-en.php(100.17 KB)
editor-4.6.2-mysql-pl.php(100.85 KB)
editor-4.6.2-mysql-sk.php(100.56 KB)
editor-4.6.2-pl.php(187.74 KB)
editor-4.6.2-sk.php(187.44 KB)
-
v4.6.1(Feb 8, 2018)
Sticky position of table actions Speed up rendering of long tables (regression from 4.4.0) Display notification about performing action after relogin Add system tables help links MySQL: Support non-utf8 charset in search in column MySQL: Support geometry in MySQL 8 (bug #574) MariaDB: Links to documentation SQLite: Allow deleting PRIMARY KEY from tables with auto increment PostgreSQL: Support binary files in bytea fields PostgreSQL: Don't treat interval type as number (bug #474) PostgreSQL: Cast to string when searching using LIKE (bug #325) PostgreSQL: Fix condition for selecting no rows PostgreSQL: Support TRUNCATE+INSERT export Customization: Support connecting to MySQL via SSL Customization: Allow specifying server name displayed in breadcrumbs
Source code(tar.gz)
Source code(zip)
adminer-4.6.1.php(451.47 KB)
adminer-4.6.1.tar.gz(561.67 KB)
adminer-4.6.1.zip(702.89 KB)
adminer-4.6.1-cs.php(310.64 KB)
adminer-4.6.1-de.php(310.22 KB)
adminer-4.6.1-en.php(308.74 KB)
adminer-4.6.1-mysql.php(338.43 KB)
adminer-4.6.1-mysql-cs.php(203.81 KB)
adminer-4.6.1-mysql-de.php(203.37 KB)
adminer-4.6.1-mysql-en.php(202.02 KB)
adminer-4.6.1-mysql-pl.php(204.12 KB)
adminer-4.6.1-mysql-sk.php(203.44 KB)
adminer-4.6.1-pl.php(310.97 KB)
adminer-4.6.1-sk.php(310.27 KB)
editor-4.6.1.php(257.88 KB)
editor-4.6.1-cs.php(187.12 KB)
editor-4.6.1-de.php(186.95 KB)
editor-4.6.1-en.php(186.36 KB)
editor-4.6.1-mysql.php(169.07 KB)
editor-4.6.1-mysql-cs.php(100.36 KB)
editor-4.6.1-mysql-de.php(100.15 KB)
editor-4.6.1-mysql-en.php(99.64 KB)
editor-4.6.1-mysql-pl.php(100.32 KB)
editor-4.6.1-mysql-sk.php(100.03 KB)
editor-4.6.1-pl.php(187.09 KB)
editor-4.6.1-sk.php(186.79 KB)
-
v4.6.0(Feb 5, 2018)
Fix counting selected rows after going back to select page PHP <5.3 compatibility even with Elasticsearch enabled Fully support functions in default values Stop redirecting links via adminer.org Support X-Forwarded-Prefix Display options for timestamp columns when creating a new table Disable autocompleting password on create user page Use primary key to edit rows even if not selected MySQL, PostgreSQL: Display warnings MySQL: Add floor and ceil select functions MySQL: Add FIND_IN_SET search operator MariaDB: Support JSON since MariaDB 10.2 SQLite, PostgreSQL: Limit rows in data manipulation without unique key PostgreSQL: Support routines PostgreSQL: Allow editing views with uppercase letters (bug #467) PostgreSQL: Allow now() as default value (bug #525) SimpleDB: Document that allow_url_fopen is required Malay translation
Source code(tar.gz)
Source code(zip)
adminer-4.6.0-cs.php(307.95 KB)
adminer-4.6.0.php(446.37 KB)
adminer-4.6.0.tar.gz(559.36 KB)
adminer-4.6.0.zip(700.35 KB)
adminer-4.6.0-de.php(307.54 KB)
adminer-4.6.0-en.php(306.06 KB)
adminer-4.6.0-mysql.php(334.20 KB)
adminer-4.6.0-mysql-cs.php(201.94 KB)
adminer-4.6.0-mysql-de.php(201.50 KB)
adminer-4.6.0-mysql-en.php(200.16 KB)
adminer-4.6.0-mysql-pl.php(202.26 KB)
adminer-4.6.0-mysql-sk.php(201.58 KB)
adminer-4.6.0-pl.php(308.29 KB)
adminer-4.6.0-sk.php(307.59 KB)
editor-4.6.0.php(253.46 KB)
editor-4.6.0-cs.php(184.99 KB)
editor-4.6.0-de.php(184.84 KB)
editor-4.6.0-en.php(184.25 KB)
editor-4.6.0-mysql.php(165.42 KB)
editor-4.6.0-mysql-cs.php(99.05 KB)
editor-4.6.0-mysql-de.php(98.85 KB)
editor-4.6.0-mysql-en.php(98.34 KB)
editor-4.6.0-mysql-pl.php(99.02 KB)
editor-4.6.0-mysql-sk.php(98.73 KB)
editor-4.6.0-pl.php(184.97 KB)
editor-4.6.0-sk.php(184.67 KB)
-
v4.5.0(Jan 24, 2018)
Display name of the object in confirmation when dropping it Display newlines in column comments (bug #573) Support current_timestamp() as default of time fields (bug #572) Hide window.opener from pages opened in a new window (bug #561) Display error when getting row to edit Store current Adminer version server-side to avoid excessive requests Adminer: Fix Search data in tables (regression from 4.4.0) CSP: Allow any styles, images, media and fonts, disallow base-uri MySQL: Support geometry in MySQL 8 (bug #574) MySQL: Support routines with comments in parameters (bug #460) MariaDB: Support fulltext and spatial indexes in InnoDB (bug #583) SQLite: Enable foreign key checks PostgreSQL: Respect NULL default value PostgreSQL: Display foreign tables (bug #576) PostgreSQL: Do not export triggers if not requested PostgreSQL: Export DROP SEQUENCE if dropping table PostgreSQL: Display boolean values as code (bug #562) MS SQL: Support freetds non-MySQL: Avoid CONVERT() (bug #509) Elasticsearch: Insert, update, delete MongoDB: Support mongodb PHP extension Editor: Fix displaying of false values in PostgreSQL (bug #568)
Source code(tar.gz)
Source code(zip)
adminer-4.5.0.php(440.53 KB)
adminer-4.5.0.tar.gz(527.49 KB)
adminer-4.5.0.zip(665.34 KB)
adminer-4.5.0-cs.php(305.43 KB)
adminer-4.5.0-de.php(305.02 KB)
adminer-4.5.0-en.php(303.54 KB)
adminer-4.5.0-mysql.php(329.73 KB)
adminer-4.5.0-mysql-cs.php(200.61 KB)
adminer-4.5.0-mysql-de.php(200.18 KB)
adminer-4.5.0-mysql-en.php(198.83 KB)
adminer-4.5.0-mysql-pl.php(200.86 KB)
adminer-4.5.0-mysql-sk.php(200.25 KB)
adminer-4.5.0-pl.php(305.69 KB)
adminer-4.5.0-sk.php(305.08 KB)
editor-4.5.0.php(250.34 KB)
editor-4.5.0-cs.php(183.25 KB)
editor-4.5.0-de.php(183.10 KB)
editor-4.5.0-en.php(182.50 KB)
editor-4.5.0-mysql.php(163.53 KB)
editor-4.5.0-mysql-cs.php(98.48 KB)
editor-4.5.0-mysql-de.php(98.28 KB)
editor-4.5.0-mysql-en.php(97.77 KB)
editor-4.5.0-mysql-pl.php(98.42 KB)
editor-4.5.0-mysql-sk.php(98.16 KB)
editor-4.5.0-pl.php(183.20 KB)
editor-4.5.0-sk.php(182.93 KB)
-
v4.4.0(Jan 17, 2018)
Add Content Security Policy Disallow scripts without nonce Rate limit password-less login attempts from the same IP address Disallow connecting to privileged ports Add nosniff header PHP 7.1: Prevent warning when using empty limit PHP 7.2: Prevent warning when searching in select MySQL: Remove dedicated view for replication status (added in 4.3.0) PostgreSQL: Sort table names (regression from 4.3.1) Editor: Don't set time zone from PHP, fixes DST Editor: Display field comment's text inside [] only in edit form Editor: Fix doubleclick on database page Editor: Fix Search data in tables Customization: Always send security headers Hebrew translation
Source code(tar.gz)
Source code(zip)
adminer-4.4.0.php(430.17 KB)
adminer-4.4.0.tar.gz(517.98 KB)
adminer-4.4.0.zip(654.71 KB)
adminer-4.4.0-cs.php(295.67 KB)
adminer-4.4.0-de.php(295.33 KB)
adminer-4.4.0-en.php(293.85 KB)
adminer-4.4.0-mysql.php(327.11 KB)
adminer-4.4.0-mysql-cs.php(198.69 KB)
adminer-4.4.0-mysql-de.php(198.31 KB)
adminer-4.4.0-mysql-en.php(196.96 KB)
adminer-4.4.0-mysql-pl.php(198.99 KB)
adminer-4.4.0-mysql-sk.php(198.39 KB)
adminer-4.4.0-pl.php(296.00 KB)
adminer-4.4.0-sk.php(295.38 KB)
editor-4.4.0.php(240.45 KB)
editor-4.4.0-cs.php(174.17 KB)
editor-4.4.0-de.php(174.02 KB)
editor-4.4.0-en.php(173.44 KB)
editor-4.4.0-mysql.php(161.42 KB)
editor-4.4.0-mysql-cs.php(97.16 KB)
editor-4.4.0-mysql-de.php(96.97 KB)
editor-4.4.0-mysql-en.php(96.46 KB)
editor-4.4.0-mysql-pl.php(97.11 KB)
editor-4.4.0-mysql-sk.php(96.85 KB)
editor-4.4.0-pl.php(174.13 KB)
editor-4.4.0-sk.php(173.86 KB)
-
v4.3.1(Apr 14, 2017)
Fix permanent login after logout (bug #539) Fix SQL command autofocus (regression from 4.0.0) PostgreSQL: Support JSON and JSONB data types PostgreSQL: Fix index size computation in PostgreSQL < 9.0 (regression from 4.3.0) PostgreSQL: Fix nullable fields in export
Source code(tar.gz)
Source code(zip)
adminer-4.3.1.php(426.00 KB)
adminer-4.3.1.tar.gz(512.79 KB)
adminer-4.3.1.zip(648.83 KB)
adminer-4.3.1-cs.php(294.78 KB)
adminer-4.3.1-en.php(292.95 KB)
adminer-4.3.1-de.php(294.44 KB)
adminer-4.3.1-mysql.php(323.00 KB)
adminer-4.3.1-mysql-cs.php(197.90 KB)
adminer-4.3.1-mysql-de.php(197.53 KB)
adminer-4.3.1-mysql-en.php(196.17 KB)
adminer-4.3.1-mysql-sk.php(197.60 KB)
adminer-4.3.1-pl.php(295.11 KB)
adminer-4.3.1-sk.php(294.50 KB)
adminer-4.3.1-mysql-pl.php(198.20 KB)
editor-4.3.1-cs.php(172.55 KB)
editor-4.3.1.php(235.65 KB)
editor-4.3.1-en.php(171.82 KB)
editor-4.3.1-de.php(172.41 KB)
editor-4.3.1-mysql.php(156.84 KB)
editor-4.3.1-mysql-cs.php(95.57 KB)
editor-4.3.1-mysql-en.php(94.88 KB)
editor-4.3.1-mysql-de.php(95.38 KB)
editor-4.3.1-mysql-pl.php(95.53 KB)
editor-4.3.1-mysql-sk.php(95.27 KB)
editor-4.3.1-pl.php(172.52 KB)
editor-4.3.1-sk.php(172.25 KB)
-
v4.3.0(Mar 15, 2017)
Make maxlength in edit fields a soft limit Add accessibility labels Add Cache-Control: immutable to static files MySQL: Support MySQL 8 MySQL: Support JSON data type MySQL: Add dedicated view for replication status MySQL: Support spatial indexes PostgreSQL: Export PostgreSQL: Don't treat partial indexes as unique MS SQL: Support pdo_dblib Elasticsearch: Support HTTPS by inputting https://server
Source code(tar.gz)
Source code(zip)
adminer-4.3.0.php(425.78 KB)
adminer-4.3.0.tar.gz(511.96 KB)
adminer-4.3.0-mysql.php(322.98 KB)
adminer-4.3.0.zip(647.81 KB)
adminer-4.3.0-de.php(294.24 KB)
adminer-4.3.0-cs.php(294.59 KB)
adminer-4.3.0-en.php(292.76 KB)
adminer-4.3.0-mysql-cs.php(197.89 KB)
adminer-4.3.0-mysql-en.php(196.16 KB)
adminer-4.3.0-mysql-pl.php(198.20 KB)
adminer-4.3.0-mysql-de.php(197.52 KB)
adminer-4.3.0-pl.php(294.91 KB)
adminer-4.3.0-sk.php(294.30 KB)
adminer-4.3.0-mysql-sk.php(197.59 KB)
editor-4.3.0.php(235.51 KB)
editor-4.3.0-de.php(172.21 KB)
editor-4.3.0-cs.php(172.36 KB)
editor-4.3.0-en.php(171.63 KB)
editor-4.3.0-mysql.php(156.74 KB)
editor-4.3.0-mysql-de.php(95.38 KB)
editor-4.3.0-mysql-cs.php(95.56 KB)
editor-4.3.0-mysql-en.php(94.87 KB)
editor-4.3.0-mysql-sk.php(95.26 KB)
editor-4.3.0-mysql-pl.php(95.52 KB)
editor-4.3.0-pl.php(172.32 KB)
editor-4.3.0-sk.php(172.05 KB)
-
v4.2.5(Nov 15, 2016)
Fix remote execution in SQLite query SQLite: Require credentials to use PostgreSQL: Support KILL
Source code(tar.gz)
Source code(zip)
adminer-4.2.5.php(414.01 KB)
adminer-4.2.5-cs.php(284.61 KB)
adminer-4.2.5-en.php(282.80 KB)
adminer-4.2.5-mysql.php(314.22 KB)
adminer-4.2.5-de.php(284.26 KB)
adminer-4.2.5-mysql-de.php(190.43 KB)
adminer-4.2.5-mysql-cs.php(190.81 KB)
adminer-4.2.5-mysql-en.php(189.09 KB)
adminer-4.2.5-mysql-pl.php(191.10 KB)
adminer-4.2.5-mysql-sk.php(190.51 KB)
adminer-4.2.5-pl.php(284.94 KB)
editor-4.2.5.php(231.52 KB)
adminer-4.2.5-sk.php(284.33 KB)
editor-4.2.5-cs.php(168.38 KB)
editor-4.2.5-de.php(168.23 KB)
editor-4.2.5-en.php(167.66 KB)
editor-4.2.5-mysql-cs.php(94.46 KB)
editor-4.2.5-mysql.php(155.63 KB)
editor-4.2.5-mysql-de.php(94.27 KB)
editor-4.2.5-mysql-en.php(93.77 KB)
editor-4.2.5-mysql-sk.php(94.16 KB)
editor-4.2.5-sk.php(168.08 KB)
editor-4.2.5-pl.php(168.35 KB)
editor-4.2.5-mysql-pl.php(94.42 KB)
adminer-4.2.5.zip(632.89 KB)
adminer-4.2.5.tar.gz(498.83 KB)
DooTask is a lightweight open source online project task management tool that provides various document collaboration tools, online mind mapping, online flowcharting, project management, task distribution, instant IM, file management and other tools.
DooTask is a lightweight open source online project task management tool that provides various document collaboration tools, online mind mapping, online flowcharting, project management, task distribution, instant IM, file management and other tools.
Server manager is a open source project made for people so that they can add the servers to one single place irrespective of their provider and manage it through one location.
Server Manager Are you sick of having to log into hundreads of different website just to access your server? Well we got you, Server manager is a open
Single Page Chat Application
About A single page chat application developed in PHP OOP, Mysql and AJAX. Users email (password) [email protected] (abrazzaq) [email protected] (john)
Laravue - a sensible starting point for single-page apps
Laravue - a sensible starting point for single-page apps Note: The vast majority of the functionality of this project has essentially been added into
A self-hosted, drag-and-drop, & nosql file conversion server that supports 62x file formats
A self-hosted, drag-and-drop, & nosql file conversion server that supports 62x file formats
Open Source Voucher Management System is a web application for manage voucher. used PHP with Laravel Framework and use MySQL for Database.
Voucher Management System is a web application for manage voucher. You can create and manage your voucher. Voucher Management System is used PHP with Laravel Framework and use MySQL for Database.
Simplified database records management.
Simplified database records management. Inspector will let you take care of CRUD without taking over your frontend. Example $inspector = new \InvoiceN
mini Project in Laravel and vue js. Real World Laravel 8x + vue js Dashboard.Task management and project management system
mini Project in Laravel and vue js. Real World Laravel 8x + vue js Dashboard.Task management and project management system. Dashboard features such as: Complete Dashboard, Custom Authentication, Email Verification, custom-login-register-forgot password (without jetstream).
Laravel-Library-Management-system is nice to management library system...
About Laravel Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experie
HiDomainer One-File Domain Portfolio Script, is a PHP script of only 8kb.
HiDomainer One-File Domain Portfolio Script, is a PHP script of only 8kb. Download Feature 1. PC and Mobile Friendly 2. Data management without page r
Modern, Crazy Fast, Ridiculously Easy and Amazingly Powerful Flat-File CMS powered by PHP, Markdown, Twig, and Symfony
Grav Grav is a Fast, Simple, and Flexible, file-based Web-platform. There is Zero installation required. Just extract the ZIP archive, and you are alr
Chat Application In PHP using AJAX with file transferring system.
Chat Application In PHP using AJAX with file transferring system. Download free source code of real time chat application in PHP using AJAX with file transfer systemChat Application In PHP using AJAX with file transferring system. Download free source code of real time chat application in PHP using AJAX with file transfer system
Bulit PHP Twitter Clone IN OOP style and using MYSQL Database.
Bulit PHP Twitter Clone IN OOP style and using MYSQL Database. AJAX and Jquery for requests without reloading like Follow/unfollow, like, Search users, Show popups like comment , User lists, etc.
Created simple login system and chat type website using mysql database along with php and html , css and javascript.
Created simple login system and chat type website using mysql database along with php and html , css and javascript.
🔐 Password Manager written in PHP with MySQL database.
Password Manager A very basic password manager. Tech stack: PHP MySQL Bootstrap Setup Download and install XAMPP. Clone this repository: git clone htt
A monthly payment report using HTML, CSS, PHP and MySQL database
A monthly payment report using HTML, CSS, PHP and MySQL database
A simple web application that demonstrates how to quickly connect to and communicate with a MariaDB database using PHP
PHP Quickstart This repository contains a simple web application that demonstrates how to quickly connect to and communicate with a MariaDB database u
Create a PHP 8 CRUD (Create, Read, Update, Delete) RESTful API with an MySQL database.
Créer une API RESTful PHP 8 CRUD (Create, Read, Update , Delete) simple avec MySQL et PDO (PHP Data Objects) Détails du référentiel : Lire, insérer, m
Improved File Manager package for YunoHost
IFM for YunoHost Lire ce readme en français. This package allows you to install IFM quickly and simply on a YunoHost server. If you don't have YunoHos