SQlite is a serverless Relational Database Management System. In plain words, it’s an SQL database without the need of running an SQL server. From my experience it’s not included in LAMP stack, so you have to install it by yourself.
1. Install php5-sqlite via apt …
1 |
$ sudo apt-get install php5-sqlite |
If SQLite is installed but the PHP driver is not enabled you should try this….
2. If things go bad …
1 2 3 |
$ sudo apt-get --purge remove php5* $ sudo apt-get install php5 php5-sqlite php5-mysql $ sudo apt-get install php-pear php-apc php5-curl |