JuCachalot
JuCachalot

Reputation: 1020

Profiling PHP application in production on IIS 7

I'd like to profile a PHP application in production. My setup is windows server 2008 with IIS 7 and PHP 5.3 in FastCGI. I know from this question that XHProf Profiler is a good tool but obviously it doesn't work on Windows yet. Should I try with xdebug profiler or has anyone a better suggestion?

Upvotes: 3

Views: 1029

Answers (2)

williamvicary
williamvicary

Reputation: 805

If you have access to a Zend Studio license the profiler built into Zend Server is fantastic (check out some screenshots here http://files.zend.com/help/Beta/Zend_Studio_8_0/working_with_the_profiler.htm) - otherwise XDebug and a cache grind app will help (see this http://devzone.zend.com/1139/profiling-php-applications-with-xdebug/)

Upvotes: 0

Related Questions