| Anonymous | Login | Signup for a new account | 2013-05-20 14:55 BST | ![]() |
| Main | My View | View Issues | Change Log | Roadmap |
| View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] | |||||||
| ID | Project | Category | View Status | Date Submitted | Last Update | |||
| 0000653 | Xdebug | Usage problems | public | 2011-01-10 16:35 | 2011-01-10 21:48 | |||
| Reporter | Archy | |||||||
| Assigned To | derick | |||||||
| Priority | normal | Severity | minor | Reproducibility | have not tried | |||
| Status | closed | Resolution | fixed | |||||
| Platform | OS | OS Version | ||||||
| Product Version | 2.2dev | |||||||
| Target Version | Fixed in Version | |||||||
| Summary | 0000653: XDebug profiler crash with %H in file name and non standart port | |||||||
| Description | Bug maybe related to http://bugs.xdebug.org/view.php?id=478 [^] http://bugs.xdebug.org/view.php?id=312 [^] In windows and linux next symbols are disallowed in file names: \ / : * ? " < > | But xdebug don't fix these symbols: : * " < > | All of them might jump out in REQUEST_URI and ":" in HTTP_HOST. And we have HTTP_HOST like host:8080 and tried to chose file name with %H, so xdebug profiler tried to create report file and die on it. In "additional information" section I provided dirty fix to our problem, hope normal solution will appear soon. | |||||||
| Additional Information | File: usefulstuff.c Line: 598 diff: @@ -595,7 +595,7 @@ /* replace slashes, dots, question marks, plus signs, * ambersands and spaces with underscores */ - while ((char_ptr = strpbrk(strval, "/\\.?&+ ")) != NULL) { + while ((char_ptr = strpbrk(strval, "/\\.?&+: ")) != NULL) { char_ptr[0] = '_'; } xdebug_str_add(&fname, strval, 0); | |||||||
| Tags | No tags attached. | |||||||
| Operating System | windows 2008 | |||||||
| PHP Version | 5.3.3 | |||||||
| Attached Files | ||||||||
Notes |
|
|
(0001637) derick (administrator) 2011-01-10 21:48 |
Fixed in SVN for 2.1.1 and 2.2.0. Thanks for your report (and suggested patch)! |
Issue History |
|||
| Date Modified | Username | Field | Change |
| 2011-01-10 16:35 | Archy | New Issue | |
| 2011-01-10 21:48 | derick | Note Added: 0001637 | |
| 2011-01-10 21:48 | derick | Status | new => closed |
| 2011-01-10 21:48 | derick | Assigned To | => derick |
| 2011-01-10 21:48 | derick | Resolution | open => fixed |
| Copyright © 2000 - 2011 MantisBT Group |