ksumanth Posted March 16, 2013 Share Posted March 16, 2013 Hi EveryOne I have the script below to upload and unzip files on my website. The problem is that i can only get it ti work on small files that about 2 MB in size. When I try to upload a file that is 10 MB, the progress successfully runs to 100%, then the page refreshes, and i am back at the upload page with NO error message and nothing is uploaded. <?php if($_FILES["zip_file"]["name"]) { $filename = $_FILES["zip_file"]["name"]; $source = $_FILES["zip_file"]["tmp_name"]; $type = $_FILES["zip_file"]["type"]; $name = explode(".", $filename); $accepted_types = array('application/zip', 'application/x-zip-compressed', 'multipart/x-zip', 'application/x-compressed'); foreach($accepted_types as $mime_type) { if($mime_type == $type) { $okay = true; break; } } $continue = strtolower($name[1]) == 'zip' ? true : false; if(!$continue) { $message = "The file you are trying to upload is not a .zip file. Please try again."; } $target_path = "/home1/cleaverc/public_html/temporary/".$filename; if(move_uploaded_file($source, $target_path)) { $zip = new ZipArchive(); $x = $zip->open($target_path); if ($x === true) { $zip->extractTo("/home1/cleaverc/public_html/temporary/"); $zip->close(); unlink($target_path); } $message = "Your .zip file was uploaded and unpacked."; } else { $message = "There was a problem with the upload. Please try again."; } } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Untitled Document</title> </head> <body> <?php if($message) echo "<p>$message</p>"; ?> <form enctype="multipart/form-data" method="post" action=""> <label>Choose a zip file to upload: <input type="file" name="zip_file" /></label> <br /> <input type="submit" name="submit" value="Upload" /> </form> </body> </html> What am I doing wrong? What needs to be changed? Quote Link to comment https://forums.phpfreaks.com/topic/275720-how-can-i-upload-large-zip-files/ Share on other sites More sharing options...
will35010 Posted March 16, 2013 Share Posted March 16, 2013 (edited) Hello, Have you checked your upload size in your php.ini? upload_max_filesize = 10M post_max_size = 10M Edited March 16, 2013 by will35010 Quote Link to comment https://forums.phpfreaks.com/topic/275720-how-can-i-upload-large-zip-files/#findComment-1418951 Share on other sites More sharing options...
ksumanth Posted March 16, 2013 Author Share Posted March 16, 2013 In my hosting cpanel where to check Quote Link to comment https://forums.phpfreaks.com/topic/275720-how-can-i-upload-large-zip-files/#findComment-1418953 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.