I have a script to upload a file - but it fails everytime it takes more than 30 seconds to upload a file. Using 'ini_get' i found that the max_execution_time is set to 30seconds...
Is there a way to override this? I've tried using the following methods:
an .htaccess file
set_time_limit(0);
set_time_limit(3600);
None of this works... Is there another way to override this setting - or could it be something else causing my problems?
Alternatively is there a way to upload a file via html without using PHP? i'm guessing not..