Clear site cache from Cpanel
Hello,
What needs to be done for website to show instant updated information?
Our site was made in php.
After uploading images and description from site back end CMS it takes about 24 to 48 hours for uploaded information to show up on site.
Any assistance on how to clear site linked cache on Cpanel.
Your help will be appreciated.
What needs to be done for website to show instant updated information?
Our site was made in php.
After uploading images and description from site back end CMS it takes about 24 to 48 hours for uploaded information to show up on site.
Any assistance on how to clear site linked cache on Cpanel.
Your help will be appreciated.
It is quite simple, add the code below at the top of the pages :)
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Content-Type: application/xml; charset=utf-8");
Works ONLY on PHP pages.