----- "Philipp Morath" <[EMAIL PROTECTED]> wrote: > Thanks you Gopal. > Nothing about sqlite in my error.log. Hum? > How do I get the required library?
Hi Philipp: Is it a stock version of PHP (installed from package), or is it compiled from source? If its the former, what does the following command return? shell> dpkg -l | grep php5-sqlite If its returning empty, you're missing the PHP SQLite extension. Install it using the following command: shell> sudo dpkg -i php5-sqlite If its the latter, you'll have to recompile PHP with the sqlite extension turned on (this is by default), but doing a recompile might be worth the try. HTH. -- Gopal Venkatesan http://gopalarathnam.com/weblog/ _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

