in config.php, set define(“PHPGRID_DBTYPE”,”sqlite”);
open the url
I get the error: You need to enable php extension ‘native’ first.
Do I need any steps to enable sqlite?
2 Answers
Yes, this means you need to enable extension in php.ini file. Edit your php.ini file and search “sqlite” and if it’s commented, uncomment.
If issue persists, please let me know the operating system you are using and wamp / lamp software if any.
If there is no “sqlite” text found in php.ini, most likely the sqlite is not configured while installing php.
PS: You also need to restart web server after enabling.
Your Answer