[PHP] Uploading large files with HTTP_Request class

2012-05-31 Thread Voß , Marko
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_Request class support the following functions: setBody() and addFile()

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

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 li...@cmsws.com 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

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 Lucasli...@cmsws.com 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

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 marko.v...@fiz-karlsruhe.de 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

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 marko.v...@fiz-karlsruhe.de 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()

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 marko.v...@fiz-karlsruhe.de 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:

[PHP] Uploading Large Files - Strange Issue

2008-08-06 Thread Anna Vester
Hello group, 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

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

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

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

Re: [PHP] Uploading large files

2006-05-14 Thread php @ net mines
PROTECTED] To: php @ net mines [EMAIL PROTECTED] Cc: PHP-General php-general@lists.php.net 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 don't you want to change the php.ini values

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

[PHP] Uploading large files

2006-05-13 Thread php @ net mines
Hi all is there a way to upload large files (e.g. 15mb) without changing the default settings in php.ini***? Preferably by using php, but if not is there another web tech (e.g. Java applets) that will allow me to do this? Thanks in advance Mario -- PHP General Mailing List

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)

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

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

2004-12-01 Thread Nico Veenman
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 tmp file is. Any

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

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 know

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

[PHP] uploading large files

2004-10-26 Thread marc serra
Hi, I'm designing a web site and i need to let users upload large files like 10M or more. I got some solution that are using common file transfert in PHP or using FTP transfert in PHP. The problem is that if someone upload a big file he will not have any indication about the upload status. Is

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

[PHP] uploading large files through php

2003-03-28 Thread Dimitar Haralanov
Hi, I have a script that allows the user to upload a file. Sometimes the files are going to be rather large (in the order of 60Mb). I know that this is very dangerous but only trusted users will be able to upload since they have to login through ssl and the entire session is

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

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 --

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!

[PHP] UpLoading Large Files?

2001-08-31 Thread Henrik Hudson
Afternoon List- I have been burrowing through archives and newsgroups for awhile now and have been trying to find some info on a better way to upload files from a browser then doing HTTP based uploads? Are there any? My system: PIII 750, 128MB RAM running FreeBSD 4.2 and Apache 1.3.20, PHP

[PHP] Uploading large files

2001-08-30 Thread Ulrich Hacke
Hi, i have a form for uploading files to a server. It looks like this: form action=upload.php method=post enctype=multipart/form-data input type=file name=name input type=submit value=Go /form Whenever I choose a file bigger than about 4 or 5 MB i get an internal server error. I changed the