Re: [PHP] trans_sid and forms -- feature request???

2003-09-28 Thread Curt Zirzow
* Thus wrote Curt Zirzow ([EMAIL PROTECTED]): > * Thus wrote Justin French ([EMAIL PROTECTED]): > > Hi all, > > > > enable_trans_sid in the PHP ini has given me no grief to date, but now > > I'm working towards XHTML 1.0 Strict, and PHP seems to fall over when > > dealing with forms. > > > > So

Re: [PHP] trans_sid and forms -- feature request???

2003-09-28 Thread Curt Zirzow
* Thus wrote Justin French ([EMAIL PROTECTED]): > Hi all, > > enable_trans_sid in the PHP ini has given me no grief to date, but now > I'm working towards XHTML 1.0 Strict, and PHP seems to fall over when > dealing with forms. > > So, one option is to exclude form= from the list or rewrite tags

[PHP] trans_sid and forms -- feature request???

2003-09-28 Thread Justin French
Hi all, enable_trans_sid in the PHP ini has given me no grief to date, but now I'm working towards XHTML 1.0 Strict, and PHP seems to fall over when dealing with forms. It seems to put an extra (hidden) form element straight after the tag, and the W3 validator doesn't like it. I've also con

Re: [PHP] Trans_sid not working

2003-07-31 Thread Curt Zirzow
* Thus wrote A&M ImpacT [Tom Suter] ([EMAIL PROTECTED]): > Hey everyone, > > I'm using PHP 4.1.2 and I want to pass the SID through the URL when the user > switched off cookies. > > I enabled session.use_trans_sid in my php.ini, but that doesn't seem to > work. With cookies it works perfect. Mak

[PHP] Trans_sid not working

2003-07-31 Thread A&M ImpacT [Tom Suter]
Hey everyone, I'm using PHP 4.1.2 and I want to pass the SID through the URL when the user switched off cookies. I enabled session.use_trans_sid in my php.ini, but that doesn't seem to work. With cookies it works perfect. Thanks for any help, Tom Suter

SV: SV: [PHP] trans_sid? (was: SV: [PHP] Quickie)

2002-10-01 Thread Daniel Alsén
Justin French propably said: > In order to set and then check a cookie, you need to go through a > page... so you'd have to set something in the URL like ?cookieset=1 > anyway, in order to knwo you had set it, in order to check it. > > In other words, you'll need some guff in the URL, in order f

Re: SV: [PHP] trans_sid? (was: SV: [PHP] Quickie)

2002-10-01 Thread Justin French
In order to set and then check a cookie, you need to go through a page... so you'd have to set something in the URL like ?cookieset=1 anyway, in order to knwo you had set it, in order to check it. In other words, you'll need some guff in the URL, in order for it to all work, so why not let it be

SV: [PHP] trans_sid? (was: SV: [PHP] Quickie)

2002-10-01 Thread Daniel Alsén
Justin French propably said: > You'd loose session for those without cookies. The work around for > this would be to hard-code the session ID to all URLs across your > site for all pages you wish to carry a session through -- a real pain. Indeed. > It HAS TO use a session ID from the first pag

Re: SV: [PHP] trans_sid? (was: SV: [PHP] Quickie)

2002-10-01 Thread Chris Marschall
On Tue, 1 Oct 2002 12:06:04 +0200, Daniel Als‚n wrote: >To reply to myself .) > >I disabled trans_sid on the actual site by using: > >ini_set('session.use_trans_sid',false); >session_start(); > >But i still want to know what trans_sid does for me. What am i missing out >on when not using it? > >-

Re: [PHP] trans_sid? (was: SV: [PHP] Quickie)

2002-10-01 Thread Justin French
on 01/10/02 7:45 PM, Daniel Alsén ([EMAIL PROTECTED]) wrote: > John W. Holmes propably said: > >> Do you have a session_start() on the page? It looks like you have a >> trans_sid enabled. PHP will add that to all of your URLs >> automatically. Can you disable it in php.ini? > > Yes trans_sid is

SV: [PHP] trans_sid? (was: SV: [PHP] Quickie)

2002-10-01 Thread Daniel Alsén
To reply to myself .) I disabled trans_sid on the actual site by using: ini_set('session.use_trans_sid',false); session_start(); But i still want to know what trans_sid does for me. What am i missing out on when not using it? - D, loves google -- PHP General Mailing List (http://www.php.n

[PHP] trans_sid? (was: SV: [PHP] Quickie)

2002-10-01 Thread Daniel Alsén
John W. Holmes propably said: > Do you have a session_start() on the page? It looks like you have a > trans_sid enabled. PHP will add that to all of your URLs > automatically. Can you disable it in php.ini? Yes trans_sid is enabled and i have a session_start on the page. What is trans_sid doing

[PHP] Trans_sid

2002-03-26 Thread Richard Baskett
Is there any other way of enabling trans_sid besides when compiling php? Can I enable it in the php.ini file or .htaccess? And if so what would the syntax be? I've tried multiple things, but nothing seems to work.. If that's not possible is there a way of getting rid of the '?' in the url when p