0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Linux Mint 21.1 で phpLiteAdmin v1.9.8.2 を使う

Posted at

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を指定

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?