Thread: Project U-232
View Single Post
  #318  
Old 19th July 2014, 14:44
autotron autotron is offline
Senior Member
 
Join Date: Apr 2008
Canada
Posts: 29
Default
Quote:
Originally Posted by DooM View Post
I have tried

Code:
echo "flush_all" | nc 127.0.0.1 11211
but this didn't helped me!

I've chmoded the main root folder to 777 and all the files and folders from the readme doc.

Right now my tracker runs smoothly on Ubuntu 12.04 LTS.
that does not work as efficiently as this, create a new file called what ever you want and upload to root
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");
?>
run this to clear cache more effectively
The Following User Says Thank You to autotron For This Useful Post:
DooM (19th July 2014)