Hi,
i've compiled the latest source of php without the --with-apxs and --with-apache so that I could get a php executable.
I've created some basic scripts to run (hello Wolrd and such ) and each time I run the script I get an warning message saying : unable to load dynamic library '/usr/lib/php4/mysql.so' cannot opoen ... no such file or dir
I'm using glibc2.1, and my configure line is something like this:
./configure --with-xml --with-mysql --enable-wddx
and the sample script looks similar to this
test.sh:
#!/usr/local/bin/php -q
<?php
echo "Hello World";
?>
any help appreciated!
colin