I was experiencing very high parse times (> 5s) on the first visit to a Zen Cart site on my Virtualmin Linux (Ubuntu) testing server. Heres the solution...
UPDATE `configuration` SET `configuration_value` = 'false' WHERE `configuration`.`configuration_key` ='SESSION_IP_TO_HOST_ADDRESS';
That'll stop it using the gethostbyaddr() function call which is failing & eating up the time.
I hope this helps others, this info gleaned after spending all morning timing the various elements in the autoloader list. init_sessions.php was the culprit & that led me to the solution above.


Reply With Quote
