ID: 32967 Updated by: [EMAIL PROTECTED] Reported By: oskar-phpbug at eyb dot de -Status: Open +Status: Feedback Bug Type: *General Issues Operating System: FreeBSD 5.3 PHP Version: 5.0.4 New Comment:
Please try using this CVS snapshot: http://snaps.php.net/php5-latest.tar.gz For Windows: http://snaps.php.net/win32/php5-win32-latest.zip Previous Comments: ------------------------------------------------------------------------ [2005-05-27 19:14:59] oskar-phpbug at eyb dot de In one vhost it works the following test, in another it doesn't. create in /home/whatever/www/test.php and in /home/whatever/www/sub1/testsub1.php and in /home/whatever/www/sub1/sub2/testsub2.php --- test.php <?php print __FILE__; print "<br>"; require("./sub1/testsub1.php"); ?> --- testsub1.php <?php print __FILE__; print "<br>"; require("./sub1/sub2/testsub2.php"); ?> --- testsub2.php <?php print __FILE__; ?> Result in vhost1 ------------------- /home/whatever/www/test.php /home/whatever/www/sub1/testsub1.php /home/whatever/www/sub1/sub2/testsub2.php Result in vhost2 ------------------- /home/whatever/www2/test.php ./sub1/testsub1.php ./sub1/sub2/testsub2.php I can't find no difference between the vhosts, in which its OK and the "disfunctional". In the diffs of both phpinfo() there are only vars like Hostname:Port, DOCUMENT_ROOT, HTTP_POST, SERVER_ADMIN, SERVER_NAME, UNIQUE_ID etc differential. But there must exist one?! httpd is Apache 1.3.33 This one is OK: <VirtualHost *:80> ServerAdmin [EMAIL PROTECTED] DocumentRoot /.../htdocs ServerName ... ServerAlias www.... ErrorLog /.../error_log CustomLog /.../access_log combined <Directory /.../htdocs> AllowOverride Options FileInfo </Directory> </VirtualHost> This one not: <VirtualHost *:80> ServerAdmin [EMAIL PROTECTED] DocumentRoot /.../htdocs ServerName ... ServerAlias www.... ErrorLog /.../www2/error_log CustomLog /.../www2/access_log combined <Directory /.../htdocs> AllowOverride Options FileInfo </Directory> </VirtualHost> The filesystem of these vhosts is the same. In the first vhost I can of course install gallery2 without any problems... ------------------------------------------------------------------------ [2005-05-27 09:14:08] [EMAIL PROTECTED] Zend extensions are loaded with (surprise surprise): zend_extension=/path/to/some/zend_extension.so Disable all the shared modules you're running and see if you get the same result. ------------------------------------------------------------------------ [2005-05-18 21:58:26] oskar-phpbug at eyb dot de SAPI [ php_sapi_name() ] is "apache" (mod_php) I've currently the following extensions loaded (no zend..) extension=bcmath.so extension=bz2.so extension=ctype.so extension=curl.so extension=dom.so extension=exif.so extension=ftp.so extension=gd.so extension=gettext.so extension=iconv.so extension=imagick.so extension=imap.so extension=ldap.so extension=mbstring.so extension=mcrypt.so extension=mcve.so extension=mhash.so extension=ming.so extension=mysql.so extension=openssl.so extension=pcre.so extension=pdf.so extension=pgsql.so extension=posix.so extension=readline.so extension=session.so extension=simplexml.so extension=sqlite.so extension=tokenizer.so extension=wddx.so extension=xmlrpc.so extension=zlib.so ------------------------------------------------------------------------ [2005-05-18 20:10:53] [EMAIL PROTECTED] And please check that you don't have any of zend_extension's loaded. ------------------------------------------------------------------------ [2005-05-18 17:18:19] [EMAIL PROTECTED] What SAPI are you using? Does it work with CLI ? ------------------------------------------------------------------------ The remainder of the comments for this report are too long. To view the rest of the comments, please view the bug report online at http://bugs.php.net/32967 -- Edit this bug report at http://bugs.php.net/?id=32967&edit=1