here is a sample htaccess file with ini rules php_value register_globals Off php_value track_vars On php_value arg_separator.output "&" php_value arg_separator.input "&" php_value upload_max_filesize "3M"
i get 3M returned as the upload_max_filesize so it does work "Mike Ford" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > -----Original Message----- > > From: electroteque [mailto:[EMAIL PROTECTED]] > > Sent: 20 December 2002 11:35 > > To: [EMAIL PROTECTED] > > Subject: [PHP] upload_max_filesize + ini_set > > > > > > is there a way to get this setting to work without hard > > setting in htaccess > > ? i'd like to be able to dynamically set the max filesize via > > a defines > > setting and ini_set rather than statically in htaccess > > No can do -- as all file upload activity takes place before your script even > starts executing, you can't use ini_set on this. > > In fact, upload_max_filesize is listed in > http://www.php.net/manual/en/function.ini-set.php as being a PHP_INI_SYSTEM > level directive, which means it can be set only in php.ini or httpd.conf (if > using Apache) -- it's not even settable in .htaccess files. > > 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