PDA

View Full Version : Strange URL's


chinaski
01-29-2006, 02:22 PM
I'm not sure if this is related to PP 1.5b, but i don't remember such thing in 1.4.3.

When i load my pp photolog for the first time, all links appears like this one:

http://frozen.dezigne.com.ar/index.php?x=about&PHPSESSID=b7d2a3bbc3d0fe06313f83a99f83d249

Then, when I follow any link or refresh the page, that PHPSESSID= thing disappears...

Dunno whats happening...

Connie
01-29-2006, 02:28 PM
this is not strange, PP now uses session data
that is absolute ok and not dangerous ;=)

the PHP-Manual defines sessions like the following:

Session support in PHP consists of a way to preserve certain data across subsequent accesses. This enables you to build more customized applications and increase the appeal of your web site. All informations are in Session reference sections.

A visitor accessing your web site is assigned an unique id, the so-called session id. This is either stored in a cookie on the user side or is propagated in the URL.

by that, when session are supported by the actual PHP installation, the login is registered and not kept in a cookie
it is more stable and secure

I am not quite sure if I explained it clearly, but you should not worry
everything is ok

chinaski
01-30-2006, 06:04 AM
thanks connie ;)