Edit
by Mehran Ko - 8 years ago (2016-05-12)
How I can upload this file to my server with download link
| I want to upload a 700 megabyte file to directory of my server with download link of some file that exist on another server. |
- 2 Clarification requests
2.
by Manuel Lemos - 8 years ago (2016-05-15) Reply
Did you try PHP function file_get_contents?
3.
by Mehran Ko - 8 years ago (2016-05-15) in reply to comment 2 by Manuel Lemos Comment
1.
by Mehran Ko - 8 years ago (2016-05-12) Reply
i mean upload large file via url to my host as fast as possible
4.
by Manuel Lemos - 8 years ago (2016-05-15) in reply to comment 1 by Mehran Ko Comment
This is not clear. Do you want:
-
Have a form to let a user of your site upload a large file and then make that file available for download from your site with a link?
-
Or you want to pass a URL of file on one site and retrieve that file to your server to make it available for download in your site with a link?
- Or do you have one server running PHP and want to upload a file to another server so it makes the file available for download with a link?
5.
by Mehran Ko - 8 years ago (2016-05-16) in reply to comment 4 by Manuel Lemos Comment
i wana upload a file on my server with url...
just for me not users,,,
i think this "Or you want to pass a URL of file on one site and retrieve that file to your server to make it available for download in your site with a link?" is near some thing that i needed
Ask clarification
1 Recommendation
Class that implements requests to Web resources using the HTTP protocol.
It features:
- May submit HTTP requests with any method, to any page, to any server, connecting to any port.
- Provides support to setup connection and request arguments from a given URL.
- May submit requests via a proxy server with support for authentication if necessary.
- May establish connections via a SOCKS server.
- Supports HTTP direct access or proxy based authentication mechanisms via SASL class library like HTTP Basic, HTTP Digest or NTLM (Windows or Samba).
- Support secure connections (https) via Curl library with SSL support, or at least PHP 4.3.0 with OpenSSL support, or via a non-SSL HTTP proxy server.
- Supports accessing secure pages using SSL certificates and private keys using Curl library
- Supports user defined request headers.
- Supports POST requests with a user defined array of form values.
- Supports POST requests with a user defined request bodies for instance for making requests to SOAP services.
- Supports streaming requests that require uploading large amounts of data of undefined length in small chunks to avoid exceeding PHP memory limits
- Supports requests to sites hosting virtual Web servers.
- Retrieves the HTTP response headers and body data separately.
- Support HTTP 1.1 chunked content encoding
- Supports session and persistent cookies.
- Provides optional handling of redirected pages.
- Supports defining connection and data transfer timeout values.
- Can output connection debug information in plain text or formatted as HTML.
- An add-on class is provided to login to Yahoo sites and perform actions on the behalf of the logged users like exporting the user address book or sending invitation to a group.
| by Manuel Lemos package author 26695 - 8 years ago (2016-05-16) Comment
You can use this HTTP client class. It can retrieve the contents of a remote file with a given URL and you can store the contents in small chunks, so it does not exceed the configured PHP memory limits. |