Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Re: [ellipsiiis] Out of body experiences

Quote Reply
Re: [ellipsiiis] Out of body experiences In reply to
Oops, sorry, I read "mod" in your first message as "modification" - as in, you had modified the forum.

As far as I can see, the only way this could happen is if you somehow ended up with identical 30-something random character strings. I've added some code to 1.1.2 to make sure this doesn't happen. Can you do me a favor and change the code to see if it happens again for you?

In admin/GT/Session/SQL.pm:
Code:
94c94,98
< $self->{info}->{session_id} = generate_session_id();
---
> my $sid = generate_session_id();
> while ($self->{tb}->count({ session_id => $sid })) {
> $sid = generate_session_id();
> }
> $self->{info}->{session_id} = $sid;
Basically what you need to do is change line 94 (the first line, prefixed by '<') to the 5 lines prefixed by '>'.

Jason Rhinelander
Gossamer Threads
jason@gossamer-threads.com

Last edited by:

jagerman: Mar 13, 2002, 10:07 AM
Subject Author Views Date
Thread Out of body experiences ellipsiiis 3340 Mar 12, 2002, 4:14 PM
Post Re: [ellipsiiis] Out of body experiences
Jagerman 3259 Mar 12, 2002, 10:48 PM
Thread Re: [ellipsiiis] Out of body experiences
ellipsiiis 3224 Mar 12, 2002, 11:04 PM
Thread Re: [ellipsiiis] Out of body experiences
Jagerman 3244 Mar 13, 2002, 9:32 AM
Thread Re: [jagerman] Out of body experiences
Paul 3207 Mar 13, 2002, 9:34 AM
Thread Re: [RedRum] Out of body experiences
Jagerman 3199 Mar 13, 2002, 9:37 AM
Thread Re: [jagerman] Out of body experiences
Paul 3212 Mar 13, 2002, 9:38 AM
Thread Re: [RedRum] Out of body experiences
Jagerman 3209 Mar 13, 2002, 9:43 AM
Post Re: [jagerman] Out of body experiences
Paul 3200 Mar 13, 2002, 9:44 AM
Post Re: [jagerman] Out of body experiences
ellipsiiis 3204 Mar 13, 2002, 10:05 AM