(I'm working with Postnuke here, but someone with good PHP & session knowledge can hopefully answer this question)
I need to know what happens when a spider 'hits' my web site - specifically (and technically) how sessions are involved. Do spiders 'load' a page as a normal user Agent would?
When a 'normal' user (guest or registered) comes to my site, they are (1) assigned a session id (by PHP or apache?) and they are (2) entered into the *_session_info table and they (3) load the page they requested (lets say the front page), triggering any code that may be on that page.
is it possible that a spider can do both #1 and #2, but not #3 - therefore not triggering code on the pages?