okay guys i have 1 problem. i'm using uploader v6 2 beta from celereondude i have set this codes to .htaccess : DirectoryIndex index.phpOptions -Indexes <IfModule mod_php5.c> php_value set_time_limit 6000000000 php_value max_input_time 60000000 php_value max_execution_time 60000000 php_value magic_quotes_gpc off php_value upload_max_filesize 100000M php_value post_max_size 100005M php_value short_open_tag 1 </IfModule> RewriteEngine On RewriteRule ^view/(.+)$ view.php [L,NC] Code (markup): and in php info is all right but when i'm uploading a file like 5 mb-s on 65-75 % it's making error site interruped or anything else timed out or etcc but in php info php_value set_time_limit 6000000000php_value max_input_time 60000000 php_value max_execution_time 60000000 this works please help!
can you alter the script and add the following line after the first <? (<?php) set_time_limit(600); // 600 seconds Hope it will work