Re: [PHP] upload file size limit

2005-01-31 Thread badlya badlu
thanks bobert. I have done it. thanks... --- Robert Sossomon <[EMAIL PROTECTED]> wrote: > Look in /etc/httpd/conf.d/php.conf > > For a buddy with a file upload need I set it to > this: > > > SetOutputFilter PHP > SetInputFilter PHP > LimitRequestBody 760217600 > > > > You wi

Re: [PHP] upload file size limit

2005-01-31 Thread Robert Sossomon
Look in /etc/httpd/conf.d/php.conf For a buddy with a file upload need I set it to this: SetOutputFilter PHP SetInputFilter PHP LimitRequestBody 760217600 You will need to set your upload limit higher in this file for it to work correctly. Robert -- Robert Sossomon, Business and Tech

Re: [PHP] upload file size limit

2005-01-31 Thread Richard Lynch
badlya badlu wrote: > I have created one php file for uploading the file. i > also made changes in /etc/php.ini for size limit. but > i can not upload the files greater than 5mb. Is there > any modification which has to be done in other > configuration file. Check your POST size limit in, errr, ph

Re: [PHP] upload file size limit

2005-01-31 Thread badlya badlu
yes httpd-2.0.49-4 Should i upgrade it? --- Thomas Seifert <[EMAIL PROTECTED]> wrote: > On Mon, 31 Jan 2005 03:15:00 -0800, Badlya Badlu > wrote: > > > the path is /etc/php.ini > > also > > upload_max_filesize 50M 50M > > > > Waiting for reply. > > it also depends on your webserver. I gue

Re: [PHP] upload file size limit

2005-01-31 Thread Thomas Seifert
On Mon, 31 Jan 2005 03:15:00 -0800, Badlya Badlu wrote: > the path is /etc/php.ini > also > upload_max_filesize 50M 50M > > Waiting for reply. it also depends on your webserver. I guess you are running apache2? thomas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vi

Re: [PHP] upload file size limit

2005-01-31 Thread badlya badlu
the path is /etc/php.ini also upload_max_filesize 50M 50M Waiting for reply. --- Wudi <[EMAIL PROTECTED]> wrote: > Run phpinfo() to see the Configuration File > (php.ini) Path. > > __ Do you Yahoo!? Yahoo! Mail - Easier than ever wit

Re: [PHP] upload file size limit

2005-01-31 Thread Wudi
Run phpinfo() to see the Configuration File (php.ini) Path. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Upload file size limits

2004-01-25 Thread David T-G
Chris -- ...and then Chris Edwards said... % % I would like to give the users of my web site the ability to upload video % type files, up to 12 megs in size. OK. % % I notice in my PHI.INI there is a % % "memory_limit =8M ; Maximum amount of memory a script may consume % (8MB)" %

Re: [PHP] upload file size

2004-01-04 Thread niclas meyer
wich kind of files are we talking about? pictures or others? "Gerard Samuel" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > On Friday 14 November 2003 12:48 pm, joe wrote: > > is there a way to check the file size > > without fully uploading the file? > > > > No there isnt, well

Re: [PHP] upload file size

2003-11-17 Thread Raditha Dissanayake
Gerard Samuel wrote: On Friday 14 November 2003 12:48 pm, joe wrote: is there a way to check the file size without fully uploading the file? No there isnt, well at least not via php... correct. There are two solutions you can upload with a java applet, the applet can be configured to lo

Re: [PHP] upload file size

2003-11-16 Thread Jason Wong
On Saturday 15 November 2003 02:40, Johnson, Kirk wrote: > > this could really kill my bandwidth. is there a way to check > > the file size > > without fully uploading the file? > > Although it has been called an "urban legend" :), you could try the old > MAX_FILE_SIZE trick. I think you may be r

RE: [PHP] upload file size

2003-11-14 Thread Johnson, Kirk
> this could really kill my bandwidth. is there a way to check > the file size > without fully uploading the file? Although it has been called an "urban legend" :), you could try the old MAX_FILE_SIZE trick. For this, add a hidden tag before the tag: This is an instruction to the browser to r

Re: [PHP] upload file size

2003-11-14 Thread Gerard Samuel
On Friday 14 November 2003 12:48 pm, joe wrote: > is there a way to check the file size > without fully uploading the file? > No there isnt, well at least not via php... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] upload file size corruption?

2003-03-16 Thread Rasmus Lerdorf
> I am going nuts reinstalling over and over again on different computers > and keep getting this error. I am using 2.0.40 http (I know > experimental, but don't tell me that :) ) Why not? Since this is the problem. Upgrade to Apache 1.3.27 and everything will be fine. -Rasmus -- PHP Genera

Re: [PHP] upload file size

2002-07-08 Thread Norman Zhang
"Jason Wong" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Saturday 06 July 2002 10:04, Norman Zhang wrote: >> > > I can't seem to upload file bigger than 5M even if I set the > > upload_max_filesize to 20M in php.ini and MAX_FILE_SIZE to 20M in the > > scr

Re: [PHP] upload file size

2002-07-05 Thread Jason Wong
On Saturday 06 July 2002 10:04, Norman Zhang wrote: > Hi, > > I can't seem to upload file bigger than 5M even if I set the > upload_max_filesize to 20M in php.ini and MAX_FILE_SIZE to 20M in the > script. What's am I missing here? Is the temporary upload directory won't > handle file this size? Pl