So i have a website on a VPS server and it takes almost 100 seconds to parse the entire page (zen cart category page), but on my shared hosting server it loads in almost 5 seconds.

I used FireBug and under the Net section i see the difference between my VPS and Shared server is that the VPS has

Cach-Control: max-age=0

After researching this it seems max-age=0 implies that the content is considered stale (and must be re-fetched) immediately.

I ran grep -r "max-age=0" /home/theuser/public_html/ and it came up with no results, so i can only think it would be the VPS server?

Does anybody know how to fix this or change this setting?

link|improve this question
It seems this may not be the issue, the shared server shows the same thing now, seems i just needed to refresh it once or twice :-\ – Myles Jun 4 '11 at 3:55
For analyzing the page and finding these kinds of problems YSlow! might be helpful. – fardjad Jun 4 '11 at 3:57
feedback

closed as off topic by Jakub, Cody Gray, Gilles, interjay, Kev Jun 4 '11 at 15:38

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

Look for ExpiresDefault and Expires on your httpd.conf file and change the values or override them by using a .htaccess file.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.