Unfortunately no one can be told what fun_plug is - you have to see it for yourself.
You are not logged in.
Hi All,
I managed to set up PHP and MYSQL, both of them run properly when the are independent. I followed the instructions from forre listed in here http://81.216.140.39/dns-323/mysql_and_php/. I even got the php.ini file from there.
But when I try to run phpMyAdmin, I got the following error in my PHP error_log (I set the settings in php.ini to make it log)
[29-Aug-2008 02:26:17] PHP Warning: PHP Startup: Unable to load dynamic library '/mnt/HD_a2/ffp/lib/php/extensions/no-debug-non-zts-20060613/mysql.so' - File not found in Unknown on line 0
I can 100% confirm that mysql.so is 100% in /mnt/HD_a2/ffp/lib/php/extensions/no-debug-non-zts-20060613/.
Any ideas?
Thanks in advanced
Offline
Just a heads up, apparently the path is 100% right because it can load other .so files like
mbstring.so, pdo.so, sqlite.so, pdo_sqlite.so, zlib.so
And these 3 .so files can't be loaded
gd.so, pdo_mysql.so, mysql.so
Any ideas?
Offline
GaMerZ wrote:
Just a heads up, apparently the path is 100% right because it can load other .so files like
mbstring.so, pdo.so, sqlite.so, pdo_sqlite.so, zlib.so
And these 3 .so files can't be loaded
gd.so, pdo_mysql.so, mysql.so
Any ideas?
I had the same problem.
the extensions mysql.so and pdo_mysql.so call to library libmysqlclient.so.16, but the file in /mnt/HD_a2/ffp/lib/mysql is libmysqlclient.so.15
I copied the file with .15 extension to a new file with extension .16:
root@CH3SNAS:/mnt/HD_a2/ffp/lib/mysql# cp libmysqlclient.so.15 libmysqlclient.so.16
I also copied to /mnt/HD_a2/ffp/lib
To use the extension gd.so you need to install the packages libpng-1.2.29-1.tgz and libjpeg-6b-1.tgz from fonz
finally dont forget restart lighttpd
/ffp/start/lighttpd.sh restart
and OLE!!!!, all works fine.
Sorry my spanglish
Offline
Thanks mate, I will go back and try.
Offline
Hi jagcos,
I tested and the MYSQL works but the GD doesn't. I installed libpng and libjpeg, any more packages i should try?
Offline