Results 1 to 4 of 4

Thread: File Uploading limit on the PHP server

  1. #1
    Join Date
    Oct 2008
    Posts
    100

    File Uploading limit on the PHP server

    Is there certain limit on the PHP web server that only certain amount of file will only be uploaded on the PHP server, this is because I have tried uploading 17Mb size file on the server but the cursor remains buy, and does not come to any conclusion. If anyone has any suggestion please let me know.

    Thanks in Advance..

  2. #2
    Join Date
    Jan 2006
    Posts
    6,878

    Re: File Uploading limit on the PHP server

    If you have taken any web hosting company then generally they provide the 10Mb size of file at single given point and that to be the php.ini configuration file. Directives are used to configure the PHP engine. They are placed in PHP’s configuration file php.ini. There are a number of directives that are related to file upload and they may be quite to users.

  3. #3
    Join Date
    Jan 2006
    Posts
    211

    Re: File Uploading limit on the PHP server

    PHP makes uploading files easy. To increase the existing size of PHP uploading capacity user need to make changes in the php.ini main file. You can upload any type of file to your Web server. But with ease comes danger and you should be careful when allowing file uploads. Files are usually POSTed to the webserver in a format known as 'multipart/form-data'. To upload the You may also have to configure your php.ini file to increase the execution time, memory limit, max post size, and max upload size. The post_max_size sets the upper limit on the amount of data that a script can accept in this manner. Ideally this value should be larger than the value that you set for upload_max_filesize.

  4. #4
    Join Date
    Feb 2009
    Posts
    105

    Re: File Uploading limit on the PHP server

    In case of DISK / FTP upload methods you need to provide the webserver with write access rights to the configured upload path (configured in the project) and temporary upload path (used by PHP). Before you do anything with the uploaded file you need to determine whether a file was really uploaded. After that we check if the uploaded file is JPEG image and its size is less than 350Kb. It is possible to upload multiple files simultaneously and have the information organized automatically in arrays for you. To do so, you need to use the same array submission syntax in the HTML form as you do with multiple selects and checkboxes.

Similar Threads

  1. Is there a uploading limit till 150MB in CloudMe?
    By Latika in forum Technology & Internet
    Replies: 4
    Last Post: 15-06-2011, 05:27 PM
  2. Error uploading .doc or .xls to WebDAV server
    By Daksha in forum Windows Software
    Replies: 4
    Last Post: 07-08-2010, 05:09 AM
  3. C#.net For Uploading a File on Ftp
    By ramsun in forum Software Development
    Replies: 5
    Last Post: 06-02-2010, 04:37 PM
  4. Error uploading file to the Web server
    By Guns-n-Roses in forum Software Development
    Replies: 3
    Last Post: 21-09-2009, 12:23 PM
  5. Replies: 3
    Last Post: 20-06-2009, 11:25 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,711,631,411.18804 seconds with 17 queries