North Carolina Fishing Reports

Register for FREE to Use our Offshore Fishing Resources

North Carolina Charter Boats - North Carolina Charter Fishing

North Carolina - North Carolina Charter Fishing
    Create an Account Home  ·  ReefCast  ·  WaveCast  ·  Supermap  ·  Tide Charts  ·  NC Radar  ·  Solunar  ·  Account  ·  Photo Gallery  ·  Videos  ·  Forums  ·  Recipes  ·  Classified Ads  

Electric Fishing Reels
Offshore Fishing Tackle
Costa Rica Sportfishing
Loyal for Life

FryingPanTower.Com :: View topic - Invalid Session Error.....
North Carolina Offshore Fishing Forums
 Forum FAQForum FAQ   SearchSearch   UsergroupsUsergroups   ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Invalid Session Error.....
Goto page Previous  1, 2
 
Post new topic   Reply to topic    FryingPanTower.Com Forum Index -> It's Broke.....FIX It!
View previous topic :: View next topic  
Author Message
Reel_Trouble
Guest





PostPosted: Sat Jan 05, 2008 9:35 am    Post subject: Reply with quote

Thanks Dave
Back to top
blueoceaneyez
I-Mapper
I-Mapper


Joined: Jan 19, 2006
Posts: 810
Location: Monkey Junction, NC & Destin, FL

PostPosted: Sat Jan 05, 2008 9:53 am    Post subject: Reply with quote

AOL test...Yep, it works! Smile
Back to top
View user's profile Send private message Visit poster's website AIM Address
Capt_Dave
Site Admin
Site Admin


Joined: Mar 29, 2004
Posts: 3841
Location: Cape Fear, NC

PostPosted: Sat Jan 05, 2008 10:01 am    Post subject: Reply with quote

Another one bites the DUST.......WOOT WOOT!

Only 6482 tasks to go!!

Dave
_________________
Capt. Dave

Life is SHORT....Fish Hard!



NOT a Member??You are missing ALL the Downloads........and most of the Pictures....!!
Back to top
View user's profile Send private message Send e-mail
Reel_Trouble
Guest





PostPosted: Sat Jan 05, 2008 5:16 pm    Post subject: Reply with quote

AOL test different lap top
Back to top
Reel_Trouble
Guest





PostPosted: Sat Jan 05, 2008 5:17 pm    Post subject: Reply with quote

You Da Man Dave
Back to top
Capt_Dave
Site Admin
Site Admin


Joined: Mar 29, 2004
Posts: 3841
Location: Cape Fear, NC

PostPosted: Tue Jan 15, 2008 10:41 am    Post subject: Reply with quote

Try a PM and see if that works. I had a e-mail this morning about invalid in the PMs and I want to see if it is him or this issue coming back to light...

Dave
_________________
Capt. Dave

Life is SHORT....Fish Hard!



NOT a Member??You are missing ALL the Downloads........and most of the Pictures....!!
Back to top
View user's profile Send private message Send e-mail
Reel_Trouble
Guest





PostPosted: Tue Jan 15, 2008 4:58 pm    Post subject: Reply with quote

Could not PM
Back to top
Capt_Dave
Site Admin
Site Admin


Joined: Mar 29, 2004
Posts: 3841
Location: Cape Fear, NC

PostPosted: Tue Jan 15, 2008 5:02 pm    Post subject: Reply with quote

So Reel you could not PM either?

I will send you one...see if you can read it and reply.

Dave
_________________
Capt. Dave

Life is SHORT....Fish Hard!



NOT a Member??You are missing ALL the Downloads........and most of the Pictures....!!
Back to top
View user's profile Send private message Send e-mail
Reel_Trouble
Guest





PostPosted: Tue Jan 15, 2008 9:49 pm    Post subject: Reply with quote

Dave,
Got your PM sent at 5:02, tried sending PM reply, invalid ses.........
Back to top
Capt_Dave
Site Admin
Site Admin


Joined: Mar 29, 2004
Posts: 3841
Location: Cape Fear, NC

PostPosted: Tue Jan 15, 2008 9:57 pm    Post subject: Reply with quote

Have I ever told you how much I HATE AOL!!

I will look into it.

Dave
_________________
Capt. Dave

Life is SHORT....Fish Hard!



NOT a Member??You are missing ALL the Downloads........and most of the Pictures....!!
Back to top
View user's profile Send private message Send e-mail
Reel_Trouble
Guest





PostPosted: Tue Jan 15, 2008 10:14 pm    Post subject: Reply with quote

Capt_Dave wrote:
Have I ever told you how much I HATE AOL!!

I will look into it.

Dave

Seems that came up the other day Laughing
I'll use another browser, not a problem.

Thanks
Back to top
Capt_Dave
Site Admin
Site Admin


Joined: Mar 29, 2004
Posts: 3841
Location: Cape Fear, NC

PostPosted: Wed Jan 16, 2008 9:48 pm    Post subject: Reply with quote

Try it now.....See if it works....

Dave
_________________
Capt. Dave

Life is SHORT....Fish Hard!



NOT a Member??You are missing ALL the Downloads........and most of the Pictures....!!
Back to top
View user's profile Send private message Send e-mail
Reel_Trouble
Guest





PostPosted: Wed Jan 16, 2008 9:57 pm    Post subject: Reply with quote

Your dreaded AOL test, PM sent to you, invalid
Back to top
Capt_Dave
Site Admin
Site Admin


Joined: Mar 29, 2004
Posts: 3841
Location: Cape Fear, NC

PostPosted: Wed Jan 16, 2008 10:33 pm    Post subject: Reply with quote

phpBB uses sessions to "track" users as they move between pages, forums, topics, etc. A session is made up of a unique 32 character session_id which identifies the current users. This value is stored in the sessions table and either a temporary (i.e. it's deleted when the browser window is closed) cookie on the users machine or if that doesn't seem to be working it's appended to all URLs.

The problem with using just a session_id is that it becomes very easy to hijack (takeover) a session. All a user need do is obtain the session_id and add it to the url as they browse the board. If the id they grab happens to be a logged in admin or moderator ... well you get the picture.

What we do to help complicate the situation is also tie the session to the users IP. Using this method someone would need to spoof an IP and obtain the session_id in order to hijack a session, not incredibly difficult but certainly harder ... and with this sort of software it's really a case of making everything harder to do, thus disuading all but the most ardent "hackers" from bothering to attempt anything.

How do we obtain this IP? We check the availability of two variables, REMOTE_ADDR and HTTP_X_FORWARDED_FOR. Firstly we check for HTTP_X_ ..., this is typically set by "nice" proxies, caches, etc. and contains "an" IP which may be the users "real" IP or some other IP. If that does not exist or it contains a private or restricted IP range (several blocks of IPs are reserved by the international bodies responsible for IP allocation) we instead use the value contained in REMOTE_ADDR. This variable typically contains the users real IP.

However, problems arise with how some ISPs operate their systems. Instead of forwarding the users real IP or indeed a different but static IP they simply make available only the IP of the proxy being browsed. The larger ISPs do not use a single proxy or cache, the load upon it and data passing through it would be far too great. Instead they use several systems in a "proxy farm" (I tend to refer to it as something containing most of those letters ... ). A user browsing the web may be switched between these machines from one page to another (to help distribute load), with the IP changing as they go.

Obviously a problem then exists in that phpBB's ability to tie a users session to a unique id and an IP fails ... because the IP is constantly changing. There are some "nice" ISPs out there that run these farms within a single "class" or block of IPs, e.g. 1.2.3.4, 1.2.3.5, 1.2.3.6, etc.

This is why in a previous release of phpBB we introduced a slightly reduced IP checking system which now checks only the first three "quads" of an IP, i.e. 1.2.3.4 is checked only for 1.2.3 the 4 is discarded. Remember, that an IPv4 address is 32bits wide, this is generally presented in the form of four 8 bit numbers. By checking just the first three numbers (24bits) we neglect 8 bits or 255 (253 in practice) possible IPs ... that's 253 seperate potential proxies ... IOW enough machines for practically any ISP on the planet. However we can go further and reduce that checking to just the first "two quads", that ignores 255 * 253 IPs!

The problem is some ISPs don't arrange their IP allocation particularly well, either for historical or other reasons ... AOL is one significant culprit. So what happens is that users can jump between completely different Class A (this is a full 32bit block of IPs) networks, e.g. 100.100.100.100 to 200.100.40.40, etc. This renders IP validation completely useless for such situations
_________________
Capt. Dave

Life is SHORT....Fish Hard!



NOT a Member??You are missing ALL the Downloads........and most of the Pictures....!!
Back to top
View user's profile Send private message Send e-mail
Reel_Trouble
Guest





PostPosted: Thu Jan 17, 2008 9:08 am    Post subject: Reply with quote

So based on what I see (don't understand) the best for all parties is to use something other than AOL for browser. NOT A PROBLEM. Thanks again
Back to top
Display posts from previous:   
Post new topic   Reply to topic    FryingPanTower.Com Forum Index -> It's Broke.....FIX It! All times are GMT - 5 Hours
Goto page Previous  1, 2
Page 2 of 2

 

Jump to:  
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
You cannot attach files in this forum
You cannot download files in this forum
 

Powered by phpBB © 2001-2007 phpBB Group

All logos and trademarks in this site are property of their respective owner.
The comments are property of their posters, all the rest © 2008 at creation by Frying Pan Tower Associates Inc.

Website engine core code is © copyright by PHP-Nuke

Heavily patched and modified by the RavenNuke Team and others.


Google Site Map


Nuke_Cron



Page Generation: 0.33 Seconds

North Carolina Fishing Reports