Your php.ini says
That is script will get killed after 30 seconds, so video processing will not complete, you will need to make sure php.in settings are as per
http://buyscripts.in/requirements.html
	Code:
	safe_mode = off 
register_globals = on 
open_basedir = (no value) 
output_buffering = on 
upload_max_filesize = 200M (or more) 
post_max_size = 200M (or more) 
max_execution_time = 6000 (or more) 
max_input_time = 6000 (or more) 
memory_limit = 32M (or more) 
display_errors = On 
file_uploads = On 
session.gc_maxlifetime = 14000 (or more)
 
				
			
Bookmarks