Hey, I was wondering is that exist or maybe someone saw it. Like I am looking for software which could be run parralel to the script and could show slowest part of the script, like in which points it takes most of the time to run script (like scripts weak points). I know my old method taking 2 variables and count time at the start and at the end and then move pointer thru the script to find time of running some of the parts but this process takes huge amount of time, so need some software Any help would be appreciated
can you provide links to those 2 ? any cpanel friendly ? or something that I dont need to setup thru ssh
I use DBG and Xdebug for local profiling before I promote to production. I am not sure if remote profiling is available. Check out this link @ http://files.zend.com/help/Zend-Studio-Eclipse/remotely_profiling_a_php_script.htm
TO: Social.Network How did u install DBG ? after changing php file I can not start apache (reboot server doesnt help)
Does that debugger makes a heavy load on server ? my server already very loaded so maybe when I am running it with debugger it just gets stuck
I never run debuggers or profilers in a production environment, because the tools do create a load on the server. All debug and profile work I do is in a local DEV or TEST environment. I would consider remote profiling as needed.