Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@FMCorz
Created November 27, 2018 03:13
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save FMCorz/f7819107c6848841372624d1becc8958 to your computer and use it in GitHub Desktop.
Save FMCorz/f7819107c6848841372624d1becc8958 to your computer and use it in GitHub Desktop.
Adminer with SQLite no-login

Adminer setup

Enables plugins, and SQLite no-login.

Instructions

  1. Copy index.php to a new directory
  2. Download Adminer to adminer.php
  3. Create a plugins/ folder
  4. Download plugin to plugins/plugin.php
  5. Copy login-sqlite.php in plugins/
<?php
# File from https://www.adminer.org/en/#download
<?php
function adminer_object() {
// Required to run any plugin.
include_once(__DIR__ . "/plugins/plugin.php");
// Load plugins.
foreach (glob(__DIR__ . "/plugins/*.php") as $file) {
include_once($file);
}
$plugins = [
new AdminerLoginSqlite()
];
return new AdminerPlugin($plugins);
}
// Include original Adminer or Adminer Editor.
include "./adminer.php";
<?php
# Place in `plugins/`
/** Enable auto-login for SQLite
* @link https://www.adminer.org/plugins/#use
* @author Jakub Vrana, https://www.vrana.cz/
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/
class AdminerLoginSqlite {
function login($login, $password) {
return true;
}
function loginForm() {
?>
<script type="text/javascript">
addEventListener('load', function () {
var driver = document.getElementsByName('auth[driver]')[0];
if (isTag(driver, 'select')) {
driver.onchange = function () {
var trs = parentTag(driver, 'table').rows;
for (var i=1; i < trs.length - 1; i++) {
var disabled = /sqlite/.test(driver.value);
alterClass(trs[i], 'hidden', disabled);
trs[i].getElementsByTagName('input')[0].disabled = disabled;
}
};
}
driver.onchange();
});
</script>
<?php
}
}
<?php
# File `plugin` from https://www.adminer.org/en/plugins/
# Place in plugins/ folder
@soiqualang
Copy link

Thanks very much! It worked.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment