Jump to content

Curl Post Timeout on large file upload


digioz

Recommended Posts

Hello All,

 

I have a simple upload form which I am using to upload files to Box.net using PHP Curl. It works fine for small files, but times out for larger files. Anyone have any suggestions for this?

 

Thanks,

Pete

 

Here is the code:

 

<html>
<body bgcolor="black">
<div align="center">
                <img src="Homepage_02.jpg" border="0" />
                
                <br>
                <br>
                <font color="#f1ca63"; font face="Arial"; font size="5">Upload</font>
                <br>
                <br>
                
                <?php
   
                                if (isset($_POST['upload'])) 
                                {
                                                if (!empty($_FILES['new_file_1']['name'])) 
                                                {
                $allowedExtensions = array("txt","csv","xml","css","doc", "docx","xls","xlsx","rtf","ppt","pdf","swf","flv","avi","wmv","mov","jpg","jpeg","gif","png");
                
                foreach ($_FILES as $file) 
                {
                    if ($file['tmp_name'] > '') 
                    {
                        if (!in_array(end(explode(".", strtolower($file['name']))),$allowedExtensions)) 
                        {
                            echo $file['name'].' is an invalid file type!<br/>';
                        }
                        else
                        {
                            $temp_name = $_FILES['new_file_1']['name'];
                            $localfile = $_FILES['new_file_1']['tmp_name'];
                            $file = fopen($localfile,'r');
                            
                            $request_url = 'https://upload.box.net/api/1.0/upload/[Token Here]/[Folder ID]';
                            $post_params['check_name_conflict_folder_option'] = urlencode('1');
                            $post_params['new_file_1'] = "@$localfile";
                            $post_params['description'] = urlencode($_POST['description']);
                            $post_params['uploader_email'] = urlencode($_POST['uploader_email']);
                            $post_params['upload'] = urlencode('upload');

                            $ch = curl_init();
                            
                            curl_setopt($ch, CURLOPT_URL, $request_url);
                            curl_setopt($ch, CURLOPT_VERBOSE, 1); 
                            curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
                            curl_setopt($ch, CURLOPT_POST, true);
                            curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
                            curl_setopt($ch, CURLOPT_POSTFIELDS, $post_params);
                            curl_setopt($ch, CURLOPT_TIMEOUT, 300);
                    
                            curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
                            $result = curl_exec($ch);
                            curl_close($ch);
                            
                            $resultArray = explode(' ',$result);
                            
                            if($resultArray[5] != '')
                            {
                                $fileID = substr($resultArray[5],4,-1);
                                $shareName = $temp_name;
                                $link = 'http://www.box.net/shared/'.$shareName;
                            }
                            
                            $renameurl = addslashes("https://www.box.net/api/1.0/rest?action=rename&api_key=[API KEY]&auth_token=[TOKEN Here]&target=file&target_id=".$fileID."&new_name=".$shareName);
                            
                            $renameResult = file_get_contents($renameurl);
                                            
                            echo '<font color="white">Upload Successful</font>';                        
                                        
                        }
                    }
                }
                                                } 
                                                else 
                                                {
                                                                echo '<font color="white">Please select a file</font>';
                                                }
                                }
                ?>
                
                <hr width=600 color=grey> 
                <br>

                <div align="center">
                                <form action="box_upload_curl.php" enctype="multipart/form-data" method="post"> 
                                                <input type="hidden" name="check_name_conflict_folder_option" value="1"/> 
                                                                <table> 
                                                                <tr> 
                                                                                <td class="field" style="color: #f1ca63; font-family: Arial; font-size: 14px" width="50%">Choose File to Upload:   </td> 
                                                                                <td class="input"><input type="file" name="new_file_1" /></td> 
                                                                </tr> 
                                                                <tr> 
                                                                                <td class="field field_top" style="color: #f1ca63; font-family: Arial; font-size: 14px" ><br/> Description (optional):</td> 
                                                                                <td class="input"><br/><textarea name="description"></textarea></td> 
                                                                </tr> 
                                                                <tr> 
                                                                                <td class="field field_top" style="color:#f1ca63; font-family: Arial; font-size: 14px" >
                                                                                                <br/> 
                                                                                                Your e-mail <font color="red">*</font>:
                                                                                </td> 
                                                                                <td class="input field_top" style="color: #f1ca63; font-family: Arial; font-size: 14px" >
                                                                                                <br/>
                                                                                                <input type="text" name="uploader_email" id="email_input"></input>
                                                                                </td> 
                                                                </tr> 
                                                                <tr> 
                                                                                <td colspan="2" class="submit" align="center">
                                                                                                <br />
                                                                                                <input type="submit" name="upload" value="Upload" />
                                                                                </td> 
                                                                </tr> 
                                                                </table>
                                </form>
                <hr width=600 color="grey"> 
</div>

Link to comment
Share on other sites

  • 2 weeks later...

Thank you delickate. I did try your suggestion, but it looks like because our site is in a shared hosting environment, they do not allow us to increase memory limit or execution time. What's even worse is that they don't allow you to change the maximum upload size either, so we will have to switch to a dedicated web host to be able to do what we need. Here are the setting changes I have in mind to get this to work once we make that switch:

 

max_execution_time = 600

max_input_time = 600

memory_limit = 200M

post_max_size = 200M

upload_max_filesize = 200M

 

Thanks,

Pete

Link to comment
Share on other sites

  • 2 weeks later...

An update on this issue. We have made a switch to a dedicated server and I changed the PHP Settings above and the file upload now goes through for larger files without any issues. Thanks for the help!

 

Pete

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.