View Single Post
  #11  
Old 15th January 2013, 14:59
autotron autotron is offline
Senior Member
 
Join Date: Apr 2008
Canada
Posts: 29
Default
Quote:
Originally Posted by spidey View Post
i done every thing and still a can not accesses the staff panel
pleas post for me Right Example of Staff_setting.php to make like it and thanks for help Guys ! :)
Assuming you are ID 1 this is right, just add 2 after 1, in staff_settings.php
Then in phpmyadmin set your Class to 6
Then create a file called clearcache.php with this code
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");
?>
Upload it to server and run it, then you can login and see panel
Reply With Quote