ID:               49620
 Comment by:       philipp at servicemail24 dot de
 Reported By:      philipp at servicemail24 dot de
 Status:           Feedback
 Bug Type:         *Directory/Filesystem functions
 Operating System: Windows XP SP2
 PHP Version:      5.3.0
 Assigned To:      pajoye
 New Comment:

php-5.3.2-dev-nts-Win32-VC9-x86 has the same problem.

I run this script using CLI (cmd.exe Terminal running php.exe)


Previous Comments:
------------------------------------------------------------------------

[2009-09-22 08:43:37] paj...@php.net

Under which SAPI do you run it? CLI, FCGI or apache?

Can you try again using
http://windows.php.net/downloads/qa/test/php-5.3.2-dev-nts-Win32-VC9-x86.zip

please?

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

[2009-09-22 07:52:52] philipp at servicemail24 dot de

Description:
------------
PHP 5.3.0 and 5.3.1RC1 has a bug in the is_readable and is_writeable
function if you execute a script with normal windows user rights.

The same test script works fine using PHP 5.2.x. Providing admin rights
for the user solves the problem but this is not a long term solution for
us.

All tested PHP releases are VC6 TS

PHP 5.2.10 -> OK
PHP 5.2.11 -> OK
PHP 5.3.0 -> FAILED
PHP 5.3.1RC1 -> FAILED

Reproduce code:
---------------
$folders = array(       '\\\\10.1.1.1\\share',
                                        '\\\\srv\\share',
                                        'd:/temp'
                                );

foreach($folders as $folder) {

        if(@!is_readable($folder)) {
                echo('FAILED is_readable: ' . $folder . "\n");
        } else {
                echo "OK is_readable:  " . $folder . "\n";
        }

        if(@!is_writeable($folder)) {
                echo('FAILED is_writeable: ' . $folder . "\n");
        } else {
                echo "OK is_writeable:  " . $folder . "\n";
        }

        $filename = $folder . '\\test.txt';

        if(@!file_put_contents($filename, 'php test')) {
                echo('FAILED file_put_contents: ' . $filename . "\n");
        } else {
                echo "OK file_put_contents:  " . $filename . "\n";
        }
}


Expected result:
----------------
OK is_readable:  \\10.1.1.1\share
OK is_writeable:  \\10.1.1.1\share
OK file_put_contents:  \\10.1.1.1\share\test.txt
OK is_readable:  \\srv\share
OK is_writeable:  \\srv\share
OK file_put_contents:  \\srv\share\test.txt
OK is_readable:  d:/temp
OK is_writeable:  d:/temp
OK file_put_contents:  d:/temp\test.txt

Actual result:
--------------
FAILED is_readable:  \\10.1.1.1\share
FAILED is_writeable:  \\10.1.1.1\share
OK file_put_contents:  \\10.1.1.1\share\test.txt
FAILED is_readable:  \\srv\share
FAILED is_writeable:  \\srv\share
OK file_put_contents:  \\srv\share\test.txt
OK is_readable:  d:/temp
OK is_writeable:  d:/temp
OK file_put_contents:  d:/temp\test.txt


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


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

Reply via email to