PDA

View Full Version : Removing session hash or session....?


Carnage540
02-11-2003, 03:17 PM
I want to make my url from this:

forumdisplay.php?forumid=62

to something like this:

forumdisplay.php?s=&forumid=62

----

So it looks nicer, and is easyer to copy/paste, etc. so....

- What would i remove?
- Is there a hack to remove it?
- Would it be hard to remove without a hack? Like i rather use a template mod

.....thanks! to anyone that can help!......

Erwin
02-11-2003, 08:53 PM
Sessionhash is used by PHP as an alternative to cookies to keep a user logged in if the user has cookies switched off in their browser, or is surfing through a proxy.

You can switch off sessionhash, but this means editing all your templates, and setting cookieuser and sessiohash in the user table to 1 permanently - I have done this with my forum with no ill effects.

If you don't know how to do it, I suggest you keep the sessionhash, as it is there for a good reason. :)