
Originally Posted by
insanemonkey
You can set the value also directly inside the php-script via
<? ini_set("session.gc_maxlifetime","10800"); ?>
try this..
What? That is the entirely wrong setting to change. If you read my first post, you'll see that included that the correct code when I first posted.

Originally Posted by
pssparkman
Okay so I need to add this piece of code to my script to allow for large video size uploads say up to about 150MB, if so where do I add it? It will work. I am a bit lost with the last few posts by the two of you and don't quite understand fully, sorry I don't know jack about .php coding and this type of stuff.
Okay, where you see
change it to
PHP Code:
<?php
ini_set('post_max_size','150M');//Upload up to 150 Megabytes
ini_set('upload_max_file_size','150M');//Upload up to 150 Megabytes
Bookmarks