• We value your experience with Plesk during 2025
    Plesk strives to perform even better in 2026. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2025.
    Please take this short survey:

    https://survey.webpros.com/

sqlite2

P

pete121

Guest
Hi all...

Does anyone know where I can find this third party rpm:

php-sqlite2-1.0.2-200608291856.i386.rpm

Thanks.

P.
 
As I know it should go with Plesk.
Also, note that this package is suitable only for following PHP versions:

php >= 4.3.0
php <= 4.4.0

If you can't find it I can send it to your e-mail, if you wish.
 
PHP

Yes, that would be great but are you saying that it won't work with php 4.4.1?

4.4.1 is on my publishing server.

Thanks.

P.
 
Re: PHP

Originally posted by pete121
Yes, that would be great but are you saying that it won't work with php 4.4.1?

4.4.1 is on my publishing server.

P.

Unfortunately, it won't work for PHP 4.4.1. In this case you should try to find sqlite.so extension for 4.4.1 or compile it by your self. I have complied couple of times sqlite.so extension on the servers and below you can find instructions how I did that:

Find SQlite package in internet (for example, here http://pecl.php.net/package/SQLite )

a. Unpack SQLite-1.0.3.tgz to SQLite-1.0.3 directory.
b. As UTF-8 encoding support required by Sitebuilder modify SQLite-
1.0.3/libsqlite/src/main.c file a little bit (by default iso8859 is
used).
c. cd SQLite-1.0.3
d. /usr/local/psa/apache/bin/phpize (path to that file can be different)
e. ./configure --with-sqlite --with-php-config=/usr/local/psa/apache/bin/php-config (path to that file can be different)
f. make
g. copy compiled sqlite.so file into appropriate folder for PHP modules enable it in php.ini file.

Hope these instructions could help you in this case.
 
Back
Top