Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Project U-232 (http://www.bvlist.com/forumdisplay.php?f=80)
-   -   User still pending problem (http://www.bvlist.com/showthread.php?t=9959)

DooM 14th July 2014 00:34

User still pending problem
 
Hello guys,

I've installed U232-V3 on my VPS and everything works smoothly. A friend of mine registered on the tracker, but since I've got no mail-server running on this VPS, I have confirmed his account manually on the AdminCP page, at Account Manage section. Now he can log in, but he can't access his UserCP page. Same problem when I'm clicking his username. I get this error:
Code:

Error
User is still pending.

Can someone give me a clue how to solve this?

DND 14th July 2014 00:44

go to db via phpmyadmin and see if its confirmed.:gum:
btw, did u flush the cache? with the memcache panel ?

DooM 14th July 2014 11:29

Quote:

Originally Posted by DND (Post 44820)
go to db via phpmyadmin and see if its confirmed.:gum:
btw, did u flush the cache? with the memcache panel ?

Flushing memcache solve the problem! Thank you!

GameMaster 30th July 2014 00:44

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:

   
    /**
    * @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 :)

Joe 31st July 2014 03:44

This is built into the theme on the bottom right hand corner .. That script autotron wrote is old news... BUT it may still help.

GameMaster 31st July 2014 13:12

Quote:

Originally Posted by Joe (Post 44903)
This is built into the theme on the bottom right hand corner .. That script autotron wrote is old news... BUT it may still help.

old but still works a treat, it clears the cache from the server.. :)


All times are GMT +2. The time now is 01:30.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.