ID: 20598 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Feedback Bug Type: Bzip2 Related Operating System: Windows NT 4.0 SP6a PHP Version: 4.2.3 New Comment:
Please try using this CVS snapshot: http://snaps.php.net/php4-latest.tar.gz For Windows: http://snaps.php.net/win32/php4-win32-latest.zip Previous Comments: ------------------------------------------------------------------------ [2002-11-23 13:08:58] [EMAIL PROTECTED] I have tried to test the example 'Small bzip2 Example', but it doesn't work, the function 'bzopen($filename, "w")' isn't creating a new file. I get a error 'Warning: bzopen(): Unable to open file in D:\Inetpub\wwwroot\php\smallbzip2.php on line 7'. So I change the code from: -------------------------------------------------- <?php $filename = "D:/TEMP/testfile.bz2"; $str = "This is a test string.\n"; // open file for writing $bz = bzopen($filename, "w"); . . . ?> -------------------------------------------------- to: -------------------------------------------------- <?php $filename = "D:/TEMP/testfile.bz2"; $str = "This is a test string.\n"; // open file for writing $fp= fopen($filename,"w"); //<<------HERE fclose($fp); //<<----- HERE $bz = bzopen($filename, "w"); . . . ?> ---------------------------------------------------------------- My configuration is: Windows NT 4.0 SP6a; IIS 4.0; PHP-4.2.3(binary); The system has full control over D:\TEMP; ---------------------------------------------------------------- Leandro Campos Sao Vicente - Sao Paulo - Brazil. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=20598&edit=1
