473,668 Members | 2,452 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Uploading large files

Hi

For a CMS admin tool I would like to provide a possibility to upload large
files to a directory on the webserver. As HTTP uploads are limited in file
size and also not comfortable in handling, I thought of an FTP solution.

Displaying a link to ftp://mydomain.com/mydirectory is easy but limited to
browsers who can act as FTP clients, such as Internet Explorer.

When looking at PHP's FTP functions and googling for web-based FTP
applications it looks like they all need an HTTP upload to get the data to
the webserver which acts as an FTP client then.

Java applets usually provide the whole FTP functionality, but I don't want
the user to do something else than uploading files; and I don't speak Java
so I could adapt an applet to my needs.

I thought of a PHP script that could act as something like an intermediate
client: Establish the connection between the FTP server and the remote
computer. But I don't think this is possible.

I would be very happy to get pointed to better ideas on that. How do you
handle large file uploads?

--
Markus
Jul 17 '05 #1
9 3322
Markus Ernst napisa³(a):
Hi

For a CMS admin tool I would like to provide a possibility to upload large
files to a directory on the webserver. As HTTP uploads are limited in file
size and also not comfortable in handling, I thought of an FTP solution.

Displaying a link to ftp://mydomain.com/mydirectory is easy but limited to
browsers who can act as FTP clients, such as Internet Explorer.

When looking at PHP's FTP functions and googling for web-based FTP
applications it looks like they all need an HTTP upload to get the data to
the webserver which acts as an FTP client then.

Java applets usually provide the whole FTP functionality, but I don't want
the user to do something else than uploading files; and I don't speak Java
so I could adapt an applet to my needs.

I thought of a PHP script that could act as something like an intermediate
client: Establish the connection between the FTP server and the remote
computer. But I don't think this is possible.

I would be very happy to get pointed to better ideas on that. How do you
handle large file uploads?


try this:

edit php.ini
;;;;;;;;;;;;;;; ;
; File Uploads ;
;;;;;;;;;;;;;;; ;

; Whether to allow HTTP file uploads.
file_uploads = On

; Temporary directory for HTTP uploaded files (will use system default
if not
; specified).
upload_tmp_dir = I:\temp

; Maximum allowed size for uploaded files.
upload_max_file size = 2M

Jul 17 '05 #2
Kasjan wrote:
try this:

edit php.ini


Thank you for this input. As I am on shared hosting I can't change the ini
settings; and then there is still the limitation that HTTP uploads are not
convenient at large file sizes (such as 10 MB plus), so I hope to find a
non-HTTP solution.

--
Markus
Jul 17 '05 #3
"Markus Ernst" <derernst@NO#SP #AMgmx.ch> writes:
and then there is still the limitation that HTTP uploads are not
convenient at large file sizes (such as 10 MB plus), so I hope to find a
non-HTTP solution.


Why do you say that? I routinely do HTTP uploads that size. Why do you
really think FTP would work better?

--
Make that pile of digital photos presentable: http://ourdoings.com/
It's quicker and easier than you think.
Jul 17 '05 #4
Bruce Lewis wrote:
"Markus Ernst" <derernst@NO#SP #AMgmx.ch> writes:
and then there is still the limitation that HTTP uploads are not
convenient at large file sizes (such as 10 MB plus), so I hope to
find a non-HTTP solution.


Why do you say that? I routinely do HTTP uploads that size. Why do
you really think FTP would work better?


Because you don't get any feedback on the state of the upload. As the upload
can easily take several minutes, you have to wait and don't see if the
upload is still going on or your browser crashed.

--
Markus
Jul 17 '05 #5
"Markus Ernst" <derernst@NO#SP #AMgmx.ch> wrote in
news:41******** *************** @news.easynet.c h:
Thank you for this input. As I am on shared hosting I can't change the
ini settings; and then there is still the limitation that HTTP uploads
are not convenient at large file sizes (such as 10 MB plus), so I hope
to find a non-HTTP solution.


AFAIK, you will not be able ot find a non-HTTP solution.

If the lack of feedback during file upload is your main concern, you can
try browsing a couple of classes at www.phpclasses.org , perhaps even
http://www.phpclasses.org/browse/package/1554.html or just do a search for
'progress bar'. I haven't tried any of these, but I think that's what you
are after if indeed your big gripe is the lack of client/server feedback.

If you wanted to go non-HTTP for file uploads, you'd have to run a totally
seperate program outside of the web-browser (or a java applet within it).

Good luck...
Jul 17 '05 #6
"Markus Ernst" <derernst@NO#SP #AMgmx.ch> writes:
Because you don't get any feedback on the state of the upload. As the upload
can easily take several minutes, you have to wait and don't see if the
upload is still going on or your browser crashed.


Ah, sounds like an Internet Explorer problem. Since creating the site I
do big uploads to, I've been using firefox. A progress bar on the lower
right shows the status of the upload.

--
Make that pile of digital photos presentable: http://ourdoings.com/
It's quicker and easier than you think.
Jul 17 '05 #7
> Thank you for this input. As I am on shared hosting I can't change the
ini
settings;


Have you tried .htaccess to change the setting? Even if you can't edit
php.ini many shared hosting services will allow .htaccess files
(assuming this is apache, of course).

--cd
Jul 17 '05 #8
Bruce Lewis <br*****@yahoo. com> wrote in
news:nm******** *****@biohazard-cafe.mit.edu:
"Markus Ernst" <derernst@NO#SP #AMgmx.ch> writes:
Because you don't get any feedback on the state of the upload. As the
upload can easily take several minutes, you have to wait and don't
see if the upload is still going on or your browser crashed.


Ah, sounds like an Internet Explorer problem. Since creating the site
I do big uploads to, I've been using firefox. A progress bar on the
lower right shows the status of the upload.


i don't think is necessarily true, in that the progress bar can reach
maximum before a large file is uploaded....
Jul 17 '05 #9
Good Man wrote:
"Markus Ernst" <derernst@NO#SP #AMgmx.ch> wrote in
news:41******** *************** @news.easynet.c h:
Thank you for this input. As I am on shared hosting I can't change
the ini settings; and then there is still the limitation that HTTP
uploads are not convenient at large file sizes (such as 10 MB plus),
so I hope to find a non-HTTP solution.


AFAIK, you will not be able ot find a non-HTTP solution.

If the lack of feedback during file upload is your main concern, you
can try browsing a couple of classes at www.phpclasses.org , perhaps
even http://www.phpclasses.org/browse/package/1554.html or just do a
search for 'progress bar'. I haven't tried any of these, but I think
that's what you are after if indeed your big gripe is the lack of
client/server feedback.

If you wanted to go non-HTTP for file uploads, you'd have to run a
totally seperate program outside of the web-browser (or a java applet
within it).

Good luck...


Thanks... I had a look at the phpclasses.org classes, they both just draw
the progress bar, but don't make any relation to a file upload, which seems
to be impossible with PHP. But now I found a small app that uses a Perl
functionality for this:

http://www.raditha.com/php/progress.php/

Raditha also has a very interesting article at his site on building a
web-based FTP app with PHP, where (s)he points out very clearly why PHP/FTP
uploads need an HTTP upload first. And Raditha's company provides a
drag-and-drop upload applet (better than what I was looking for...) at very
reasonable pricing:

http://www.radinks.com/upload/

Thanks all for the discussion.

--
Markus
Jul 17 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
3110
by: Marc | last post by:
Hello, I have a page where i can upload binary file (using the HTML input type=file approach). This works fine for relatively small files (<6MB)) but when files get bigger (13MB) there is a problem. The code of the php file is based upon the article in http://www.onlamp.com/pub/a/php/2000/09/15/php_mysql.html: uploading large binary files using more than one table and more trhan 1 row per file.
6
2823
by: Chamomile | last post by:
can anyone point me to some straightforward information on file uploading without using an html form? That is, direcly from within a php script. if I know the local path etc. to a particular requested file how can I send it directly to a location on a remote webserver following a request from the remote server? The motivation is that I have a large number of image files that are
3
1955
by: deko | last post by:
Newbie ASP.NET question: Now that I've created an ASP.NET site, how to I get it to my hosting provider? I've developed sites with Dreamweaver MX in the past - with Dreamweaver, it's very easy. The ability to link to the remote site (via FTP) is built into the IDE and all you have to do is click upload. Does Visual Studio have a similar feature? How do most people deploy their sites to a remote server from Visual Studio?
13
4298
by: Sky Sigal | last post by:
I have created an IHttpHandler that waits for uploads as attachments for a webmail interface, and saves it to a directory that is defined in config.xml. My question is the following: assuming that this is suppossed to end up as a component for others to use, and therefore I do NOT have access to their global.cs::Session_End() how do I cleanup files that were uploaded -- but obviously left stranded when the users aborted/gave up writting...
1
1747
by: David | last post by:
Hello. I can't upload large file with HtmlInputFile control:( Is there any file size limitation in HtmlInputFile control? If yes how can I upload to server large size file? Than you.
2
2700
by: WSE with SSL and large amount of data | last post by:
Hi there, What's the better strategy for uploading large files trough webservices? I can use Dime/WS-Attachments but for files with over 5MB in size, maybe I got some timeout/refuse problems in my server. Is it a good idea upload the files in chucks? In this case, how can I control and validate the transfering, and ensure the security? As a matter of fact, I have to use standarts for EDI processes. Thanks in advanced.
1
2331
by: Steven Berkovitz | last post by:
Hi there, I am having a problem with an ASP.NET 1.1 application running on II6. When uploading large files, the attempt seems to timeout (in the form of a IE DNS error) after about a minute even though I have adjusted the executionTimeout and maxRequestLength attributes of the httpRuntime element. <httpRuntime executionTimeout="1200" maxRequestLength="20480"
7
3890
by: Lad | last post by:
If a user will upload large files via FTP protocol, must the user have an FTP client on his computer or is it possible to use a similar way to "http form" comunication? Or is there another way( besides FTP) how to upload large files to server? Thank you he help Lad.
1
726
by: =?Utf-8?B?RGFu?= | last post by:
MS won't seem to let me reply to my old post, so I created a new one. The error occurs in all browsers. It's definitely a server issue, not client. The server is not proxied in any way. I tried uploading the files on the server and experienced the same issues as I get on any other computer. Thanks in advance for your help. Dan
0
8462
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8381
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8893
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8799
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8586
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6209
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5681
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4205
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1786
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.