Jump to content
xt:Commerce Community Forum

Fehler beim Einloggen nach Kundenimport aus OsC


Schusti

Recommended Posts

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 :unsure:

Viele Gr??e

Schusti

Link to comment
Share on other sites

  • 11 months later...
  • 3 months later...

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

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...