Hi all, I released a directory about 2 weeks ago, and I've turned-on the URL rewrite feature in phpLD, but I still keep getting funky URLs like this: www.domain.com/directory/directories/?PHPSESSID=37a3552fd52e71283d3106bcce052d78 I want to get rid of that mumbo jumbo after the question mark. Does anyone know what's going on here? Thanks, Steve
.htaccess file change this secton: from # Override PHP settings that cannot be changed at runtime # (If your server supports PHP settings via htaccess you can comment following two lines off) # php_value register_globals 0 # php_value session.auto_start 0 to # Override PHP settings that cannot be changed at runtime # (If your server supports PHP settings via htaccess you can comment following two lines off) php_value register_globals 0 php_value session.auto_start 0 just remove those two #'s
I don't see that anywhere in the .htaccess file, an0n. Im using v2. I do have v3, but I don't really need all those added features. Thanks, Steve
php applies the session id if the session handling is not appropriate. Generally when cookies are not allowed by your browser or being blocked, then PHP needs to find anotehr way to pass along a token or "SessionID" which stores your session data.