Edit report at http://bugs.php.net/bug.php?id=48746&edit=1

 ID:               48746
 Comment by:       M8R-jw2mu7 at mailinator dot com
 Reported by:      ddkees at illinois dot edu
 Summary:          Unable to browse directories within Junction Points
 Status:           Closed
 Type:             Bug
 Package:          Directory function related
 Operating System: win32 only - Windows Server 2003
 PHP Version:      5.3.0
 Assigned To:      pajoye

 New Comment:

I don't know if at this point I should file a new defect.



Let's say we have this structure:

H:\www\site1\media\junction ( => I:\resources)



Let's say we call page.php in a browser:

$_SERVER['SCRIPT_FILENAME'] is 'h:/www/(etc.)'

dirname(...) works OK.



<?php

require_once( dirname($_SERVER['SCRIPT_FILENAME']). "/../inc/config.php"
);

?>

will yield an error: it does not try to load

  H:\www\site1\media\inc\config.php

but

  I:\inc\config.php (I:\resources/../inc/config.php)



Also, a realpath() on the included string returns false.


Previous Comments:
------------------------------------------------------------------------
[2010-07-12 14:05:31] paj...@php.net

The results in 5.3 are correct.

------------------------------------------------------------------------
[2010-07-12 13:58:09] M8R-jw2mu7 at mailinator dot com

pajoye at php dot net:

I get your point, but what about the lstat() part ?

"Gathers the statistics of the file or symbolic link named by
filename."



Shouldn't it work for directory symlinks as well?

------------------------------------------------------------------------
[2010-07-12 13:52:28] M8R-jw2mu7 at mailinator dot com

Replying to myself:

I think this is by design.



http://php.net/manual/en/language.constants.predefined.php says:



__FILE__         The full path and filename of the file. If used inside an
include, the name of the included file is returned. Since PHP 4.0.2,
__FILE__ always contains an absolute path with symlinks resolved whereas
in older versions it contained relative path under some circumstances. 



Maybe $_SERVER['SCRIPT_FILENAME'] should be used instead?

------------------------------------------------------------------------
[2010-07-12 13:49:59] paj...@php.net

M8R-jw2mu7 at mailinator dot com:



That's expected. 5.2 did not support link or junction resolutions.

------------------------------------------------------------------------
[2010-07-12 13:43:37] M8R-jw2mu7 at mailinator dot com

I don't know if the following behaviour regarding __FILE__ is intended,
or if it's a regression due to the patch for this bug.

Config test: Win 7, PHP 5.3.2 and 5.2.6 (VC6)



I created the following structure:

  H:\www\directory

  H:\www\junction  (=> H:\www\directory, created with junction.exe or
any other tool)

  H:\www\symlink   (=> directory, created with mklink.exe)



The test case is file.php:

<?php echo __FILE__; ?>



In PHP 5.3.2:

C:\php-cli.532>php.exe H:\www\directory\file.php

H:\www\directory\file.php



C:\php-cli.532>php.exe H:\www\junction\file.php

H:\www\directory\file.php



C:\php-cli.532>php.exe H:\www\symlink\file.php

H:\www\directory\file.php





This is not the case in, for instance, 5.2.6, which returns the correct
paths.

Haven't tested in the SAPIs if the result is the same.



Can someone with win XP (pre-Vista) please try if the case with a
junction yields the same output?



Test case 2:

<?php

var_dump(lstat('H:\\www\\directory'));

var_dump(lstat('H:\\www\\junction'));

var_dump(lstat('H:\\www\\symlink'));

?>



All three outputs are the same, despite having different timestamps and
using lstat. Once again, 5.2.6 gives correct results.

------------------------------------------------------------------------


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/bug.php?id=48746


-- 
Edit this bug report at http://bugs.php.net/bug.php?id=48746&edit=1

Reply via email to