Closed GoogleCodeExporter closed 8 years ago
Yikes!
I had an error_log in there, and ripped it out of the patch, and now it's
probably
"off" in the line numbers.
Sorry.
Silly mistake.
REAL patch here:
--- config.php.original 2008-07-23 11:36:10.103817300 -0500
+++ config.php 2008-07-23 11:43:34.056942300 -0500
@@ -53,7 +53,7 @@
if($outputName=='') // Ini value not defined
$outputName = '/^cachegrind\.out\.[0-9]+$/';
else
- $outputName = '/^'.preg_replace('/(%[^%])+/', '[a-zA-Z0-9%_-]+',
$outputName).'$/';
+ $outputName = '/^'.preg_replace('/(%[^%])+/',
'[a-zA-Z0-9%_.-]*',
$outputName).'$/';
return $outputName;
}
Original comment by richardl...@gmail.com
on 23 Jul 2008 at 4:44
There seems to be an issue where the profile file is not saved with the
xdebug.profiler_output_name specified in
the php.ini file. On my machine this happens when profiling a subdir on
localhost.
Only the static part and the pid (%p) will be included in these cases. This is
related to xdebug itself and not
directly to webgrind.
Original comment by gugakf...@gmail.com
on 1 Aug 2008 at 10:14
Original issue reported on code.google.com by
richardl...@gmail.com
on 23 Jul 2008 at 4:41