> -----Original Message-----
> From: Jason k Larson [mailto:[EMAIL PROTECTED]
> Sent: 03 July 2003 01:21
> 
> I'm almost perfectly certain this *should* work ... can 
> anybody shed some light on why it 
> doesn't?
> 
> $retval1 = ini_set ('session.use_trans_sid',false);
> or
> $retval1 = ini_set ('session.use_trans_sid','0');
> or
> $retval1 = ini_set ('session.use_trans_sid','Off');
> 
> $retval1 will be: bool(false)

The manual page for ini_set at http://www.php.net/ini_set says that 
session.use_trans_sid has changeable attributes of PHP_INI_SYSTEM|PHP_INI_PERDIR -- 
this means it can be changed in php.ini, .htaccess or httpd.conf, but *not* in your 
scripts.

Cheers!

Mike

---------------------------------------------------------------------
Mike Ford,  Electronic Information Services Adviser,
Learning Support Services, Learning & Information Services,
JG125, James Graham Building, Leeds Metropolitan University,
Beckett Park, LEEDS,  LS6 3QS,  United Kingdom
Email: [EMAIL PROTECTED]
Tel: +44 113 283 2600 extn 4730      Fax:  +44 113 283 3211 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to