View Single Post
  #18  
Old 27th November 2012, 21:16
Joco1114 Joco1114 is offline
Member
 
Join Date: Nov 2012
P2P
Posts: 6
Default
I got the solution with login. There was the problem with mksecret() function in functions\function_main.php. It seems the genereated secret string stored in the mysql table was re-read incorrectly. That's because I use special accents (like: áűőúöüóí) and I had conflict with the codepages in PHP and in MySQL. Here is my mksecret():

PHP Code:
function mksecret($len 20)
{
    
$ret "";
    
$chars "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";

    
$size strlen$chars );
    for( 
$i 0$i $len$i++ ) {
        
$ret .= $charsrand0$size ) ];
    }
    return 
$ret;

As it seems it generated only "readable" secret string contain [a-zA-Z0-9] chars. No accents! :)

PS: I'm waiting your complete version impatiently. :)


Quote:
Originally Posted by firefly View Post
I don't seem to have that problem, have you tried removing all cookies related to that domain name and then closing and open your browser . Ive tested it my self and it seem to be fine by the way the login and takelogin are untouched.

I am about to release a even more complete version pretty soon! I'm just finishing off a few thing
Reply With Quote