View Single Post
  #4  
Old 30th July 2014, 00:44
GameMaster GameMaster is offline
Elite
 
Join Date: Jun 2013
United Kingdom
Posts: 55
Default
upload the following code to the root directory of your website's folder and save it as clearcache.php, credits for this scripts goes to autotron.

Code:
<?php
     
    /**
     * @author autotron
     * @copyright 2010
     */
     //clear cache
    $memcache = new Memcache;
        $memcache->connect("localhost",11211);
        $memcache->flush();
        //print_r($memcache->getStats());
    header("Location: {$INSTALLER09['baseurl']}/index.php");
    ?>
Hope this helps :)
Reply With Quote