Since I've upgraded to 4.1.1 from 4.0.6 the --enable-trans-sid don't work for me any more.
1) Test script is as easy as (taken from php documentation): --------------------------- <?php session_register ("count"); $count++; ?> Hello visitor, you have seen this page <?php echo $count; ?> times.<p>; To continue, <A HREF="test.php">click here</A> <?php phpinfo(); ?> ------------------------- 2) relevant lines in php.ini are: session.use_cookies = 0 (changed from default 1) session.use_trans_sid = 1 url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry" --------------------------- 3) phpinfo() gives me: ./configure' '--with-mysql' '--enable-xslt' '--with-xslt-sablot' '--with-apxs' '--with-curl'--enable-trans-sid' session.use_cookies Off Off session.use_trans_sid 1 1 What happens is: Netscape 4.7 (Cookies on): PHP uses Cookies to track the session id, although I turned it OFF!! Netscape 4.7 (Cookies off): PHP don't uses Cookies and is unable to track the session id at all With 4.0.6 I had to _NOT_ use the url_rewriter.tags in order to get url rewriting to work. With 4.1.1 neither with nor without url_rewriter.tags works. What am I missing here??? Regards, ;Martin P.S.: I'm trying to play with XSLT (Sablotron) and it happens that every 5th request Sablotron crashes with SIG11, everyone else experiencing this problem?? -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]