Darkside Legion Social
Just Got Off The Phone With IPowerweb............
miikrr x (15): Board List | Topic List | Post New Message | Log Out | FAQ | TOS
From: EvilPrimate | Posted: 8/25/2003 07:25:16 PM | Mark | Suggest
In their words, there's nothing they can do to help out.In other words, unless a miracle happens:

Darkside Legion is done.

I have no idea how to fix it, nor do the other people who have looked at it.
---

DSL GameFAQs Board:http://cgi.gamefaqs.com/boards/gentopic.asp?board=37279
From: Sandy Bear | Posted: 8/25/2003 07:25:57 PM | Mark | Suggest
Seriously, can I see head.php and login.php?

My AIM is StablerZebra, getting on right now.
From: EvilPrimate | Posted: 8/25/2003 07:28:28 PM | Mark | Suggest
I sent them to your e-mail address you have listed on your profile.My AIM isn't working currently.
---

DSL GameFAQs Board:http://cgi.gamefaqs.com/boards/gentopic.asp?board=37279
From: sertman | Posted: 8/25/2003 07:40:01 PM | Mark | Suggest
Don't just give up on it. You have got to get Jay back somehow.
---
"I politely told a mod that he could go on ahead and wrap his mouth around my genatal area and start sucking." - LessThanJake
If your parents never had kids, chances are you won't either.
From: Sandy Bear | Posted: 8/25/2003 07:45:26 PM | Mark | Suggest | +
Been talking with XTUX about it.

Somewhere along the road, Jay switched from using "auname", "apword", "luname" and "lpword" to using actual sessions for temporary logins.

However, your current login page is using the cookies "username" and "password", which head.php doesn't seem to do anything to.

if (auth2($_COOKIE['username'],$_COOKIE['password']) && !auth2($_SESSION['username'],$_SESSION['password'])) {
$_SESSION['username'] = $_COOKIE['username'];
$_SESSION['password'] = $_COOKIE['password'];
}
if ($_COOKIE['username'] && !auth2($_COOKIE['username'],$_COOKIE['password']))
mysql_query("INSERT INTO badlogin (ip,date) VALUES ('".$_SERVER['REMOTE_ADDR']."',".time().")");
if (!auth2($_SESSION['username'],$_SESSION['password'])) {
$_SESSION['username'] = '';
$_SESSION['password'] = '';
}
$uname = $_SESSION['username'];
$pword = $_SESSION['password'];

snippet of code from another Jay source, tacking that on right before this comment:

// just a little protection in case somebody tries to fake their cookies

in head.php might fix it.
From: sertman | Posted: 8/25/2003 07:47:38 PM | Mark | Suggest
If thats the problem, you deserve 50 essance for finding it.
---
"I politely told a mod that he could go on ahead and wrap his mouth around my genatal area and start sucking." - LessThanJake
If your parents never had kids, chances are you won't either.
From: Sandy Bear | Posted: 8/25/2003 07:52:23 PM | Mark | Suggest | +
I'm logged in here with the username/password cookie, I think that fixed it.

Its sort of a half-ass fix, i don't know if bugs will creep in later but at least people can log in.