rabol / filament-logviewer

Logviewer for Filament admin
MIT License
9 stars 5 forks source link

could not find driver (SQL: create table "log_files" ("id" integer not null primary key autoincrement, #4

Closed djoudi closed 1 year ago

djoudi commented 2 years ago

Illuminate\Database\QueryException could not find driver (SQL: create table "log_files" ("id" integer not null primary key autoincrement, "name" varchar, "path" varchar))

image

ak-flash commented 1 year ago

You need to install PDO on your server, or you might have to just comment out the following line in your php.ini file.

;extension=pdo_sqlite
;extension=sqlite3

(remove the ; character)

You should then restart your server.