I am trying to run a blog on my local network, all it needs to run is PHP with SQLite enabled, I have PHP (5.2.14) configured properly yet cannot find where to activate SQLite.
I tried this:
http://serverfault.com/questions/32982/ ... apache-php
My unaltered php.ini file was missing "extension=php_pdo.dll" and "extension=php_pdo_sqlite.dll". When I try to add them to the ini, Apache crashes, and continues to do so until I remove these lines. SQLite has to be very easy to enable right?!
The only thing I see related to SQLite in the php.ini file seems to be:
- Code: Select all
[sqlite]
;sqlite.assoc_case = 0
I've altered this in a number of ways, (Without ';', with 1 instead of 0, with ';' as well as 1, nothing seems related!)
I looked a lot of places but couldn't find out how to simply enable SQLite! Thanks.

