Palz,
Something strikes me here as a little weird, you stated "The other issue is with Video upload. Everytime I upload I get a message File too big."
This was in issue with a previous verison, either beta 8 or RC1, I cant remember but has since been fixed. You never stated which RC version you are running. I do know that it is fixed in RC3. The fix is in the /inc/utils.inc.php file. Look for the code very near the bottom that starts with this:
// calculation ini_get('upload_max_filesize') in bytes as example
function return_bytes($val) {
Make sure that it looks exactly like this:
// calculation ini_get('upload_max_filesize') in bytes as example
function return_bytes($val) {
$val = trim($val);
$last = strtolower($val{strlen($val)-1});
$val = (int)$val;
switch($last) {
// The 'G' modifier is available since PHP 5.1.0
case 'k':
$val *= 1024;
break;
case 'm':
$val *= 1024 * 1024;
break;
case 'g':
$val *= 1024 * 1024 * 1024;
break;
}
return $val;
}
That should fix your "File too big" error with the flash loader.
Chris