Re: [PHP] trans id problem

2007-03-24 Thread Juergen Wind
>* restart apache on the server side restarting the server is not neccessary if php_values/flags are changed via .htaccess >* in the page containing the method=POST form there must >be "" tags somewhere with the PHPSESSID in the >form's HTML source php does this automagically, you can s

Re: [PHP] trans id problem

2007-03-24 Thread Holger Blasum
Hello Luciano, > i have a big problem with form with method post. > the php correclty add the hidden session variables > but it seem that it does not arrive to the page. Having toggled session's use_trans_sid first time myself last week, take care to: * restart apache on the server side (you a

[PHP] trans id problem

2007-03-22 Thread Luciano Tolomei
I must configure a site to not use cookie at all. so i have made a directive in the .htaccess file to disable cookie and use only trans id: php_flag session.use_cookies 0 php_flag session.use_trans_sid 1 i have a big problem with form with method post. the php correclty add the hidden sessio

[PHP] Trans id

2007-03-21 Thread Luciano Tolomei
I have a big problem with trans id. i have to use it on a particolar site cause a security restriction of a group of users. So i have to: use only trans id and to disable cookies. php correctly work on get variables but when it add the input hidden in the form it does not work on submit and p

[PHP] trans-id enabled not working?

2002-06-26 Thread Jerry Artman
I am experiencing a problem with NN6.2. When I link to a url from a popup the session id is not being appended to the url. The destination page check session variables and redirects to an error page. If I add the query portion "?PHPSESSID=,?php session_id() ?>" to the link string it works. Howev