Author |
Message |
16/02/2004 03:58:25
|
Anonymous
|
As abovementioned,
Pls advise.
Thank you very much.
|
|
23/06/2004 20:16:32
|
Ignatius
Beginner
Joined: 25/12/2003 06:49:24
Messages: 41
Offline
|
Overwrite the v2.3.1 session.class.php file with the 2.2 version. Worked fine for me!
Wow, that worked for me too! Thanks for the easy solution to the password loop glitch.
Ignatius
|
|
24/06/2004 03:44:07
|
JTD
Graduate
Joined: 08/05/2004 21:52:50
Messages: 529
Location: Arkansas
Offline
|
can i make a suggestion to anyone who has problems remembering login names or passwords. www.roboform.com
Saves me alot of grief. And is spyware free also.
|
LINK-> Use Lazarus Guestbook |
|
24/06/2004 03:56:51
|
Ignatius
Beginner
Joined: 25/12/2003 06:49:24
Messages: 41
Offline
|
I like Roboform and use it all the time. Good recommendation!
The password problem I was having wasn't because I forgot it, but because I upgraded Advanced Guestbook on a new server. There's a bug that causes you to return to the log-in screen every time you try to do something on the admin screen. You log in, see the blue admin screen, click on one of the functions, and you're taken back to the log-in again.
Just FYI. The "lost password" and "password loop" discussions seem to be getting lumped together in some of these threads.
Ignatius
|
|
24/06/2004 03:59:27
|
JTD
Graduate
Joined: 08/05/2004 21:52:50
Messages: 529
Location: Arkansas
Offline
|
Very true lol Thank god I do a database backup everynight. So i can restore to a good point anytime i want. If needed.
|
LINK-> Use Lazarus Guestbook |
|
29/06/2004 23:11:01
|
Anonymous
|
anyone know where I can get a copy of Advanced Guestbook 2.2? Thanx for your time.
|
|
30/06/2004 01:59:49
|
JTD
Graduate
Joined: 08/05/2004 21:52:50
Messages: 529
Location: Arkansas
Offline
|
Why would you want to downgrade when 2.3.1 is out now.
|
LINK-> Use Lazarus Guestbook |
|
30/06/2004 03:49:50
|
Anonymous
|
Awesome! Thanks so much Jam'n. :o It worked w0000t!
|
|
14/07/2004 06:19:22
|
Anonymous
|
THIS SOLUTION: Overwrite the v2.3.1 session.class.php file with the 2.2 version. Worked fine for me!
Worked for me with one of my domains guestbooks, but NOT with another one at one of my other domains. There I did a fresh install, then replaced the session.class file and I'm still stuck in the loop any type I click any admin function. I'm at a loss why it worked once but not the second time.
-Jack
|
|
15/07/2004 22:45:32
|
Anonymous
|
quite obivously, overwriting any new file with an older version and downgrading it because you can't figure it out is not the real soulution. The real solution is importing the old password string of test and 123, and then waiting for the php session to time out on the server. (if you have already tried to log in with no success.) Also Dump all browser cache, and then login with test and 123.
Once I figured out the sessions, it work right away.
|
|
05/09/2004 15:34:35
|
samuelranta
Newbie
Joined: 03/09/2004 09:52:30
Messages: 3
Location: Finland
Offline
|
Anonymous wrote:quite obivously, overwriting any new file with an older version and downgrading it because you can't figure it out is not the real soulution. The real solution is importing the old password string of test and 123, and then waiting for the php session to time out on the server. (if you have already tried to log in with no success.) Also Dump all browser cache, and then login with test and 123.
Once I figured out the sessions, it work right away.
This works for me for reseting the password and username, but didn't help with the loop. Overwriting new file with older version is so far only thing that has worked here...
|
|
05/09/2004 18:23:06
|
amber222
Graduate
Joined: 07/05/2004 21:13:07
Messages: 586
Offline
|
The problem is with the database. If you upgrade from 2.2, the table information is different. If you have always used 2.3.1, the tables are probably corrupt. Either way, you should fix the database tables instead of reverting back to an older file.
|
|
22/09/2004 22:42:15
|
Carbonize
Master
Joined: 12/06/2003 19:26:08
Messages: 4292
Location: Bristol, UK
Offline
|
If you have this problem or wish to upgrade from 2.2. to 2.3.1 please try www.carbonize.co.uk/install.php I think I managed to fix one persons problem with it.
|
Carbonize
I am not the maker of the Advanced Guestbook
get Lazarus |
|
06/10/2004 10:44:09
|
Carbonize
Master
Joined: 12/06/2003 19:26:08
Messages: 4292
Location: Bristol, UK
Offline
|
Whoops meant www.carbonize.co.uk/install.zip
BTW to all those that have replaced the 2.3.1 session.class.php with the 2.2 version your guestbook is now susceptible to the login exploit.
|
Carbonize
I am not the maker of the Advanced Guestbook
get Lazarus |
|
17/01/2005 18:38:10
|
Anonymous
|
Same problem here , looks like the 'session' variable is reserved by apache2.
My nasty work around was to change all :
amp;session=
with
amp;sessionid=
as well as all :
name="session"
with
name="sessionid"
In all files in admin/
and
add a couple of lines in admin.php
...
if (!isset($PHP_SELF)) {
$PHP_SELF = $HTTP_SERVER_VARS["PHP_SELF"];
if (isset($HTTP_GET_VARS)) {
while (list($name, $value)=each($HTTP_GET_VARS)) {
$$name="$value";
}
}
if (isset($HTTP_POST_VARS)) {
while (list($name, $value)=each($HTTP_POST_VARS)) {
$$name="$value";
}
}
if (isset($HTTP_COOKIE_VARS)) {
while (list($name, $value)=each($HTTP_COOKIE_VARS)){
$$name="$value";
}
}
}
// Insert those 3 lines here
if (isset($sessionid)) {
$session = $sessionid;
}
$gb_auth = new gb_session($include_path);
$AUTH = $gb_auth->checkSessionID();
$VARS = $gb_auth->fetch_array($gb_auth->qu
...
|
|
|