Schusti Posted December 30, 2005 Report Share Posted December 30, 2005 Ich habe in Version 3.04 die Kundendaten aus OsCommerce per phpmyadmin importiert. Habe dann lt. Dokumentation aus dem Sponsorbereich die datei: xtc_validate_password.inc ver?ndert und bekomme folgende Fehlermeldung! Warning: Cannot modify header information - headers already sent by (output started at /hp/aa/ad/la/www/poolbedarf/inc/xtc_validate_password.inc.php:55) in /hp/aa/ad/la/www/poolbedarf/inc/xtc_redirect.inc.php on line 29 Wenn man dann den Browser dann auf zur?ck klickt, ist man zwar eingeloggt,aber wie bekomme ich die Fehlermeldung weg? Bitte um Hilfe Viele Gr??e Schusti Link to comment Share on other sites More sharing options...
sammyzento Posted December 20, 2006 Report Share Posted December 20, 2006 Sorry, wo finde ich die Dokumentation um die Datei xtc_validate_password.inc.php zu verändern? Finde das nicht. Gruß Sammy Link to comment Share on other sites More sharing options...
Pezi3 Posted March 24, 2007 Report Share Posted March 24, 2007 Also wo man das findet weiss ich auch nicht, aber ich hab das mal selbst gebaut jetzt - ist eigentlich nicht schwer. Folgende Funktion einfach bei xtcommerce ersetzen und dann kann man sich bei xtcommerce auch mit oscommerce Passwörtern einloggen. function xtc_validate_password($plain, $encrypted) { /// wenn es sich um ein osc-passwort handelt if(stristr($encrypted,":")) { //echo $plain; if ($plain!="" && $encrypted!="") { // split apart the hash / salt $stack = explode(':', $encrypted); if (sizeof($stack) != 2) return false; if (md5($stack[1] . $plain) == $stack[0]) { return true; } else return false; } else return false; } else { if ($encrypted!= md5($plain)) { return false; } else { return true; } } } [/php] Gruss, Sandy Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.