removed subBlack3dBlue and one other Theme. Left only subBlack and Labs and still the same thing if I try to change between the 2 themes. Any other ideas? Willing to try about anything.
Also: it is changing the Theme, just not redirecting back to the Your Account Screen like normal.
okay, I need to know what version of nuke this is. If this feature ever worked? What your account tweek you have used and when. Also, if you email me your site super user admin and ftp information I will help you to fix this.
Only registered users can see links on this board! Get registered or login to the forums!
the other thing that you can try it to reload the original your account module back up to your site that you had before you added whatever tweak/hack you use to it.
if (is_user($user) AND urinfo_WIWenabled()) {
cookiedecode($user);
$uname = $cookie[1];
$uip = urinfo_get_ip();
$past = time() - 900; $ctime = time();
$db->sql_query("DELETE FROM ".$prefix."_session WHERE time < '$past'");
$result = $db->sql_query("SELECT time FROM ".$prefix."_session WHERE uname='$uname'");
if ($tmp = sql_fetch_array($result)) {
$db->sql_query("UPDATE ".$prefix."_session SET uname='$uname', time='$ctime', host_addr='$uip', guest='0' WHERE uname='$uname'");
} else {
$db->sql_query("INSERT INTO ".$prefix."_session (uname, time, host_addr, guest) VALUES ('$uname', '$ctime', '$uip', '0')");
}
$db->sql_query("DELETE FROM ".$prefix."_urinfo_where WHERE time < '$past'");
$result = $db->sql_query("SELECT time FROM ".$prefix."_urinfo_where WHERE username = '$uname'");
$mod = $db->sql_fetchrow($db->sql_query("SELECT * FROM ".$prefix."_modules WHERE title = '$name'"));
if ($tmp = $db->sql_fetchrow($result)) {
$db->sql_query("UPDATE ".$prefix."_urinfo_where SET username = '$uname', time = '$ctime', module = '".$mod['custom_title']."' WHERE username = '$uname'");
} else {
$db->sql_query("INSERT INTO ".$prefix."_urinfo_where (username, time, module) VALUES ('$uname', '$ctime', '".$mod['custom_title']."')");
}
}
function urinfo_WIWenabled() {
global $db, $prefix;
list($wiw) = $db->sql_fetchrow($db->sql_query("SELECT whoiswhere FROM ".$prefix."_urinfo_conf"));
if ($wiw == '1') return true; else return false;
}
View next topic View previous topic
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum