Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ayziao/c3d358c3a390cc5521eeb0932bfa0583 to your computer and use it in GitHub Desktop.
Save ayziao/c3d358c3a390cc5521eeb0932bfa0583 to your computer and use it in GitHub Desktop.

Linux Mint 21.1 (Ubuntu 22.04ベース)

sudo apt install php8.1-cli
sudo apt install php-sqlite3
sudo apt install php-pdo-sqlite
sudo apt install php-mbstring

curl -OL https://bitbucket.org/phpliteadmin/public/downloads/phpLiteAdmin_v1-9-8-2.zip
unzip -d phpLiteAdmin phpLiteAdmin_v1-9-8-2.zip 

phpliteadmin.php修正 PHP 7.4以降get_magic_quotes_gpc()が廃止されているため492行から505行をコメントアウト(PHP5.4以降常にFALSEのため処理自体が不要と思われる) PHPのバージョンかCLIのため?(原因調べられず)定義前のクラスのnewが出来ないようなのでMicroTimerクラス(5989行〜6021行)を使用前(476行より前)へ移動

cd ~/sqlite/
php -S 127.0.0.1:8080 ~/phpLiteAdmin/phpliteadmin.php

備考

sudo apt install php でインストールするとapache2等もインストールされるようだったためphp8.1-cliを指定

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