Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   TBDev (http://www.bvlist.com/forumdisplay.php?f=20)
-   -   login problem (http://www.bvlist.com/showthread.php?t=520)

korl 26th June 2008 13:22

login problem
 
I installed netmaniack's edition, but I can't login. I confirmed the account but when I want to login... nothing happens. It just sends me to the home page :(

Fynnon 26th June 2008 13:31

Re: login problem
 
You can check in the database (the users table) if your account is confirmed and you can do it manually
(phpMyAdmin)


Strange...

korl 26th June 2008 19:40

Re: login problem
 
I checked that. you can confirm the accounts and it works. The only problem is that when I enter the name and password the page just refreshes :(


EDIT:

I managed to get it work

bestmd 31st July 2008 14:02

Quote:

Originally Posted by korn3l (Post 2094)
I checked that. you can confirm the accounts and it works. The only problem is that when I enter the name and password the page just refreshes :(


EDIT:

I managed to get it work

Mmmm, the problem is in function mksecret();
Open include/bittorrent.php, search function mksecret,
and remove, after put there this function:
PHP Code:

function mksecret($length 20) {
$set = array("a","A","b","B","c","C","d","D","e","E","f","F","g","G","h","H","i","I","j","J","k","K","l","L","m","M","n","N","o","O","p","P","q","Q","r","R","s","S","t","T","u","U","v","V","w","W","x","X","y","Y","z","Z","1","2","3","4","5","6","7","8","9");
    
$str;
    for(
$i 1$i <= $length$i++)
    {
        
$ch rand(0count($set)-1);
        
$str .= $set[$ch];
    }
    return 
$str;


:ok:

shyden 4th September 2008 07:53

ok i've done that and im still having the same problem


All times are GMT +2. The time now is 00:32.

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