i allready updated php on my server to version 5.2.14 from webtatic repository (http://repo.webtatic.com/yum/centos/5/x86_64/). But i can't find SQLITE.
Can someone help me?
|
|
|
I am not familiar with webtatic... To see what version of sqlite is installed on the machine, execute the following command as root or sudo
I am guessing you mean that php can't access sqlite? What I had to do to was install the php sqlite part. For whatever reason, it seems that centos gutted it out of their php distro. What I did to install sqlite for php was download the version of php that is currently installed on the server.
Build the sqlite extension
Add sqlite.so to php Create the file (likely location, you should see other .ini files in the same folder)
Press 'i' for insert mode and add the following line
Hit the [esc] key, and type :wq to 'w'rite and 'q'uite VI Then do an apache restart
running a php page with phpinfo(); at the top will show you if you now have sqlite installed. |
|||
|
|