I have set all of my PHP settings in the php.ini file to allow for file sizes over 30mb and max times over 5 minutes. The problem I am having is that the hosting account I have to use is killing all scripts within 60 seconds

Script restrictions All scripts have the following memory and run time limitations:

Memory: Some PHP CMS applications may need a larger memory_limit than the default set in the php.ini. You may change this limit in your php.ini, however, do not exceed the maximum of 64M.

Run time: All PHP/CGI/Perl scripts are limited to a 60 seconds run time. If your script does not complete during that time, it will be killed. BlueDomino cannot allow custom scripts to impact the performance of other customer sites on our shared hosting platform.

I currently have a flash uploader that I created that sends the data to PHP for processing. I works perfectly for files that take less than a minute but fails if it takes longer than a minute :/

Is there another ways around this problem? Maybe using a different programming language like Python?

link|improve this question
3  
Get a better host. It's as simple as that... – ircmaxell Oct 11 '11 at 20:46
Find a more flexible hosting service :/ – eykanal Oct 11 '11 at 20:46
They're not going to allow Python scripts to run indefinitely just because it's written in Python. A script sucking up resources will suck up resources no matter what language it's written in. Get a better host - you can get a VPS pretty cheap these days and do whatever you want with it. – Marc B Oct 11 '11 at 20:49
I am not able to change hosts. I am only rebuilding their current site. I will suggest it to them though. What hosts do you recommend? – tktutorials Oct 11 '11 at 20:49
feedback

1 Answer

up vote 3 down vote accepted

You could create some kind of flash uploader which uploads a chunk at a time of the file, each request will then be short but you will instead make several of them. When the last chunk is uploaded you call a script which merges all the chunks to one file.

A simple googling gave me this: http://www.plupload.com/

link|improve this answer
1  
This, good problem solving right here - the user doesn't even have to notice it. – nightcracker Oct 11 '11 at 20:49
do you know a good place for me to find out how to do this? – tktutorials Oct 11 '11 at 20:50
Added a possible candidate in answer. – Zeta Two Oct 11 '11 at 21:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.