ID: 45987 Updated by: fel...@php.net Reported By: masiena at hotmail dot com -Status: No Feedback +Status: Feedback Bug Type: Scripting Engine problem Operating System: Windows Server 2003 PHP Version: 5.3CVS-2008-09-03 (snap) New Comment:
Please try using this CVS snapshot: http://snaps.php.net/php5.3-latest.tar.gz For Windows: http://windows.php.net/snapshots/ Previous Comments: ------------------------------------------------------------------------ [2008-09-11 01:00:01] php-bugs at lists dot php dot net No feedback was provided for this bug for over a week, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open". ------------------------------------------------------------------------ [2008-09-03 19:59:04] paj...@php.net Try without the double quotes in php.ini or use / as path separator. \x is used as special characters in double quotes string, nothing new here. \t is a tab, \n a new line, etc. ------------------------------------------------------------------------ [2008-09-03 19:54:17] masiena at hotmail dot com Description: ------------ On Windows, directives that have backslashes (\) in file paths are broken. When something like \t is seen (like in error_log="c:\temp\err.log"), it's interpreted like a control sequence (in the example, a tab), and no error logs are generated. This behavior is present in many directives relative to file paths. Solution (temporary?): use forward slashes instead (even in Windows). The same is valid for PHP 6. This is a PATH problem because, where error_log=syslog is used, the messages are correctly sent to Event Viewer. Another clue: phpinfo() output "eats" \t. Reproduce code: --------------- In PHP.INI: error_log = "D:\Progs\php\temp\Logs\php5.3_error_log.txt" include_path = ".;D:\Progs\php\include" etc. Expected result: ---------------- No error logs are generated. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=45987&edit=1