Omar Bazavilvazo
YaBB SE Developer
YaBB God
    
Posts: 2153

I never said I would stay to the end...
|
 |
Re:problema con las cookies
« Reply #1 on: September 25, 2002, 04:58:18 PM » |
|
intenta esto
Index.php Load.php busca:
/* clear the cookies note that in php, setCookie is called in reverse order - so we set it to an expired time 'after' clearing it */ setCookie($cookieusername); setCookie($cookieusername,'',time()-3600,"/"); setCookie($cookiepassword); setCookie($cookiepassword,'',time()-3600,"/");
reemplazalo por
/* clear the cookies note that in php, setCookie is called in reverse order - so we set it to an expired time 'after' clearing it */ //setCookie($cookieusername); setCookie($cookieusername,'',time()-3600,"/"); //setCookie($cookiepassword); setCookie($cookiepassword,'',time()-3600,"/");
LogInOut.php busca:
setCookie('expiretime','-1');
reemplazalo por:
setCookie('expiretime','-1','-1',"/");
en Profile.php busca
setCookie($cookieusername,$username, time()+30240000); setCookie($cookiepassword,$password, time()+30240000);
reemplazalo por:
setCookie($cookieusername,$username, time()+30240000,"/"); setCookie($cookiepassword,$password, time()+30240000,"/");
Antes DEBES borrar tus cookies
avisame si funciona!
|