your_account anpassen

Begonnen von _Mike_, 02 Juli 2003, 09:17:51

⏪ vorheriges - nächstes ⏩

0 Mitglieder und 1 Gast betrachten dieses Thema.

_Mike_

Hi,
für ein Modul soll ich die index im your_account anpassen.
Leider liegt mir nur eine Anpassungsanweisung für v6.0 vor :-( ich nutze aber euer vkp (5.5).

Kann mir evtl. einer verraten wo ich folgende Zeilen in v5.5 einfügen muss:

modules/Your_account/index.php
v6.0 - Find on Line 525
phpnuke code (reference only)
setcookie("user", "", 0,..
 
REPLACE the ABOVE code with:
setcookie("user", "", 0, "/");
setcookie("uidalbinator", "", 0, "/");
 
v6.0 - Find on Line 592
phpnuke code (reference only)
$setcookie("user","$info",time()+259200...
 
REPLACE the ABOVE code with:
setcookie("user","$info",time()+2592000, "/");

v6.0 - Find on Line 615
phpnuke code (reference only)
docookie($setinfo[uid], $uname, $new_pass, $setinfo[stor...
 
add the following just BELOW the above code...  
include_once('albinator_vars.php');
albinator_login( $uname, $new_pass );

v6.0 - Find on Line 742
phpnuke code (reference only)
cookiedecode($user.....
 
add the following just BELOW the above code...  
include_once('albinator_vars.php'); if(!empty($realname)) $realname_chg = "uname='".addslashes($realname)."',";
sql_query("UPDATE $tbl_userinfo SET $realname_chg email='".addslahses($email)."',password='".md5($pass)."' WHERE username='$uname'", $dbi);

v6.0 - Find on Line 754
phpnuke code (reference only)
sql_query("update ".$user_prefix."_users set name='$real...
 
add the following just BELOW the above code...  
include_once('albinator_vars.php'); if(!empty($realname)) $realname_chg = "uname='".addslashes($realname)."',";
sql_query("UPDATE $tbl_userinfo SET $realname_chg email='".addslahses($email)."' WHERE username='".addslashes($uname)."'", $dbi);
 
Natürlich stimmen die Zeilennummer überhaupt nicht mit 5.5 überein, was aber nicht das Prob ist.
Die erste Zeile setcookie gibt es in 5.5 gar nicht und vom cookiedecode und der query gibt es in 5.5 scheinbar mehr als in 6.0.

thanx for helping ... michael

_Mike_

Hat sich erledigt, habe mir ne v6.0 geholt und die Zeilen einfach abgeglichen - wenn man weiß welche funktion gemeint ist, geht es ja recjt easy :-)

ciao ... michael