[PHP] File upload issue

2003-11-29 Thread Binay
Hi all, In my php.ini file, file_uploads value is set to OFF. Hence stopping HTTP_UPLOAD functionlaity. But in my script i am turning it On using ini_set(file_uploads,1) but still it doesn't upload the file. I don have access to modify the php.ini file hence trying to play with script only.

Re: [PHP] File upload issue

2003-11-29 Thread Robert Cummings
On Sat, 2003-11-29 at 02:36, Binay wrote: Hi all, In my php.ini file, file_uploads value is set to OFF. Hence stopping HTTP_UPLOAD functionlaity. But in my script i am turning it On using ini_set(file_uploads,1) but still it doesn't upload the file. I don have access to modify the

RE: [PHP] File upload issue

2003-11-29 Thread Bronislav Klucka
Are u working in safe mode? What does the ini_set function return? did u try ini_get then to see what is current value? Brona Hi all, In my php.ini file, file_uploads value is set to OFF. Hence stopping HTTP_UPLOAD functionlaity. But in my script i am turning it On using

Re: [PHP] File upload issue

2003-11-29 Thread Binay
- Original Message - From: Bronislav Klucka [EMAIL PROTECTED] To: PHP Konference [EMAIL PROTECTED]; Binay [EMAIL PROTECTED] Sent: Saturday, November 29, 2003 1:08 PM Subject: RE: [PHP] File upload issue Are u working in safe mode? safe_mode is OFF What