Hi, I’ve just upgraded (localhost) to Kirby 3.5, but I’m having a bad issue with Bnomei’s auotid plugin.
Don’t really know how to fix it. Any hint?
I guess, according to your codes in screenshot, you’re using old version of autoid, right?
Hmm, did you check the current php.ini file for extension=pdo_sqlite line?
I got this
extension=pdo_sqlite3.dll
I have no idea what the problem is about. Do you see sqlite in phpinfo?
Also may be you can check out the following issue:
Have you installed the right DLL and restarted the server?
https://www.php.net/manual/en/ref.pdo-sqlite.php
What is your PHP version? The manual says for PHP 7.4.0+ you also need libsqlite3.dll.
I found the problem.
I have all the dll’s (including libsqlite.dll, thank you @texnixe ) already installed, but I missed a line in the php.ini:
extension=php_pdo_sqlite.dll
The weird thing is that I’m able to use SQLite in another project with this different driver:
extension=pdo_sqlite3.dll
?!