ok well, let me try to explain this again, I have installed Apache/1.3.31 (Unix) PHP/4.3.9-dev mod_ssl/2.8.19 OpenSSL/0.9.7d on FreeBSD 5.1. I downloaded from snaps.php.net PHP Version 4.3.9-dev. I ran this configure line.
'./configure' '--enable-versioning' '--enable-memory-limit' '--with-layout=GNU' '--disable-all' '--with-regex=php' '--disable-cli' '--with-apxs=/usr/local/sbin/apxs' '--disable-ipv6' '--prefix=/usr/local'
..everything built ok, i proceeded with a make, and a make install, i restarted apache, and bam, PHP 4.3.9-dev is now working.... But this is where my errors come in. From what i can see, PHP is now working, i created a index.php and it includes this
<?php
// Show all information, defaults to INFO_ALL
phpinfo();
// Show just the module information.
// phpinfo(8) yields identical results.
phpinfo(INFO_MODULES);
?>
I go to my webserver, and bam, there is the wole report on php. So far so good right? Here is where i run into problems....
I try to implement, let's just say, squirrelmail, anything php related, when i try to go to that directory, i get this.
Warning: main(../config/config.php): failed to open stream: No such file or directory in /var/www/squirrelmail/functions/global.php on line 16
Fatal error: main(): Failed opening required '../config/config.php' (include_path='.:') in /var/www/squirrelmail/functions/global.php on line 16
It seems like, on the underside, php is working, but for some reason, none of the php scripts i'm trying to use work, and they work for me on every other development machine here, but just this one, what could be wrong?
Is that a little bit clearer for you? I am just trying to write the whole story down as i know some people need a thorough explanation. Thanks again for any help.