Answer the question
In order to leave comments, you need to log in
How to track which php script is loading the server?
You need to track which file creates a heavy load on the server. Is there a script?
Answer the question
In order to leave comments, you need to log in
if(e.parentNode.tagName.toLowerCase()==='p'&&(e.nextSibling||e.previousSibling)){}
or alternative
if(e.parentNode.tagName.toLowerCase()==='p' &&e.parentNode.childNodes.length>1){}
and to ignore text nodes
if(e.parentNode.tagName.toLowerCase()==='p'&&e.parentNode.children.length>1){} (in older will not include comments)
if it is related to the database, you can look at the logs of slow queries
Install any IDE with xdebug support (I have Netbeans), install xdebug xdebug.org/wizard.php , run your project in it, view the file received in xdebug in the wincachegrid program sourceforge.net/projects/wincachegrind
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question