Re: [PHP] Uploading large files with HTTP_Request class

2012-05-31 Thread Matijn Woudt
On Thu, May 31, 2012 at 12:28 PM, Voß, Marko wrote: > Hello, > > I need to perform uploading of large files using the HTTP_Request class: > > http://pear.php.net/manual/package.http.http-request.php > > I am *not* using this one: > > http://php.net/manual/en/class.httprequest.php > > > The HTTP_Re

Re: [PHP] Uploading large files with HTTP_Request class

2012-05-31 Thread tamouse mailing lists
On Thu, May 31, 2012 at 5:28 AM, Voß, Marko wrote: > I need to perform uploading of large files using the HTTP_Request class: > http://pear.php.net/manual/package.http.http-request.php > The HTTP_Request class support the following functions: > setBody() and addFile() Reading the above, and check

Re: [PHP] Uploading large files with HTTP_Request class

2012-05-31 Thread tamouse mailing lists
On Thu, May 31, 2012 at 5:28 AM, Voß, Marko wrote: > Hello, > > I need to perform uploading of large files using the HTTP_Request class: > > http://pear.php.net/manual/package.http.http-request.php > > I am *not* using this one: > > http://php.net/manual/en/class.httprequest.php > > > The HTTP_Req

Re: [PHP] Uploading large files with HTTP_Request class

2012-05-31 Thread Jim Lucas
On 05/31/2012 11:34 AM, Bastien Koert wrote: On Thu, May 31, 2012 at 12:24 PM, Jim Lucas wrote: On 05/31/2012 03:28 AM, Voß, Marko wrote: Hello, I need to perform uploading of large files using the HTTP_Request class: http://pear.php.net/manual/package.http.http-request.php How am I suppos

Re: [PHP] Uploading large files with HTTP_Request class

2012-05-31 Thread Bastien Koert
On Thu, May 31, 2012 at 12:24 PM, Jim Lucas wrote: > On 05/31/2012 03:28 AM, Voß, Marko wrote: >> >> Hello, >> >> I need to perform uploading of large files using the HTTP_Request class: >> >> http://pear.php.net/manual/package.http.http-request.php >> >> How am I supposed to do that with this cla

Re: [PHP] Uploading large files with HTTP_Request class

2012-05-31 Thread Jim Lucas
On 05/31/2012 03:28 AM, Voß, Marko wrote: Hello, I need to perform uploading of large files using the HTTP_Request class: http://pear.php.net/manual/package.http.http-request.php How am I supposed to do that with this class? Are there any alternatives, which do not force me to add new PHP dep

RE: [PHP] Uploading Large Files - Strange Issue

2008-08-06 Thread Anna Vester
[snip] -Original Message- From: Jay Blanchard [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2008 9:44 PM To: Anna Vester; php-general@lists.php.net Subject: RE: [PHP] Uploading Large Files - Strange Issue It is likely that it is not PHP causing the issue. What browser is he using

RE: [PHP] Uploading Large Files - Strange Issue

2008-08-06 Thread Jay Blanchard
[snip] I have a very strange issue coming up when uploading large files ( about 30MB). The problem is it works fine on my computer (and two others that I've tested), but it doesn't work on my client's laptop. It comes up with error code - 0 (which is upload successful), but the actual file is not o

Re: [PHP] Uploading large files

2006-05-15 Thread Richard Lynch
On Sat, May 13, 2006 9:23 am, php @ net mines wrote: > is there a way to upload large files (e.g. 15mb) without changing the > default settings in php.ini***? Probably not. This particular setting is "weird" in that the setting is the SMALLEST of: php.ini .htaccess The HTML INPUT thingie (MAX_UPL

Re: [PHP] Uploading large files

2006-05-14 Thread chris smith
On 5/14/06, php @ net mines <[EMAIL PROTECTED]> wrote: I'm building a site which will be hosted on a shared server (hosting company won't change any php.ini settings), and the client wants to upload his clients' data (let's say a zip) so they can loggin and download it from the site. Depends on

Re: [PHP] Uploading large files

2006-05-14 Thread php @ net mines
quot;Rory Browne" <[EMAIL PROTECTED]> To: "php @ net mines" <[EMAIL PROTECTED]> Cc: "PHP-General" Sent: Saturday, May 13, 2006 8:27 PM Subject: Re: [PHP] Uploading large files possibly by using CGI/php, and changing the relevent vaules, on the command line. Why d

Re: [PHP] Uploading large files

2006-05-13 Thread chris smith
is there a way to upload large files (e.g. 15mb) without changing the default settings in php.ini***? According to this page: http://www.php.net/manual/en/ini.php#ini.list You can do it with a htaccess file. See comments at the bottom. Preferably by using php, but if not is there another web

Re: [PHP] Uploading large files

2006-05-13 Thread Rory Browne
possibly by using CGI/php, and changing the relevent vaules, on the command line. Why don't you want to change the php.ini values if you legitimately want to upload these files? On 5/13/06, php @ net mines <[EMAIL PROTECTED]> wrote: Hi all is there a way to upload large files (e.g. 15mb) wit

Re: [PHP] uploading 'large' files (e.g. 6MB) -> tmp_name is empty?..

2004-12-01 Thread Greg Donald
On Wed, 1 Dec 2004 12:32:07 -0800 (PST), Richard Lynch <[EMAIL PROTECTED]> wrote: > Note that you also get slightly/subtly different results between: > > Successful file upload. > File too large (or too many) from php.ini settings. > User canceled upload. > User did not fill in upload box before

Re: [PHP] uploading 'large' files (e.g. 6MB) -> tmp_name is empty?..

2004-12-01 Thread Richard Lynch
Nico Veenman wrote: > Hi, > > When uploading 'large' files of (for example 6MB) I have a problem that > after uploading to the tmp folder on the server (so when the php script is > called), the tmp_name in the FILES global is empty. So this means I can't > do > a move uploaded file because I don't

Re: [PHP] uploading 'large' files (e.g. 6MB) -> tmp_name is empty?..

2004-12-01 Thread Marek Kilimajer
Nico Veenman wrote: Hi, When uploading 'large' files of (for example 6MB) I have a problem that after uploading to the tmp folder on the server (so when the php script is called), the tmp_name in the FILES global is empty. So this means I can't do a move uploaded file because I don't know where the

Re: [PHP] uploading large files

2004-10-26 Thread raditha dissanayake
Double Shameless Plus follows: marc serra wrote: Hi, I'm designing a web site and i need to let users upload large files like 10M or more. You need to tweak your php installation to be able to handle such large files http://www.radinks.com/upload/config.php will help you do that. I got some solu

Re: [PHP] uploading large files through php

2003-03-28 Thread David T-G
Dimitar -- ...and then Dimitar Haralanov said... % % Hi, Hi! % ... % The problem that I am facing is that I can get the script/browser/php % to pass such large file. I have modified the upload_max_size variable in % php.ini to be larger the 60Mb but this still does not help! Chec

Re: [PHP] uploading large files through php

2003-03-28 Thread Dimitar Haralanov
On Fri, 28 Mar 2003 12:39:10 -0500 Larry E. Ullman wrote: > memory_limit = 8M ; Maximum amount of memory a script may consume > (8MB) Does this mean that the content of the entire file will be stored in memory before it is written to disk? Thanx -- Mit

Re: [PHP] uploading large files through php

2003-03-28 Thread Larry E. Ullman
The problem that I am facing is that I can get the script/browser/php to pass such large file. I have modified the upload_max_size variable in php.ini to be larger the 60Mb but this still does not help! Is there any hard limitation that I am unaware of? You'll probably need to adjust the follow

Re: [PHP] Uploading large files

2001-08-30 Thread
From: Ulrich Hacke <[EMAIL PROTECTED]> Date: Thu, Aug 30, 2001 at 04:16:28PM +0200 Message-ID: <[EMAIL PROTECTED]> Subject: [PHP] Uploading large files > Hi, > i have a form for uploading files to a server. It looks like this: > > > > > > > Whenever I choose a file bigger than about 4 or 5