Where is the setting to set the maximum file size for videos? Also, how large should you allow?
Where is the setting to set the maximum file size for videos? Also, how large should you allow? |
This was removed in Dolphin 7 and is no longer available. You can either:
BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
So you do not know where that files is located? |
So you do not know where that files is located? It's /modules/[module]/classes/Bx[module]Uploader.php BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
I this in there, but I am not sure what the "0" represents. You know if it is size or whatever.
$aPossibleDuration = array(); $aPossibleDuration['duration'] = array( 'type' => 'hidden', 'name' => 'duration', 'value' => isset($aDefaultValues['duration']) ? $aDefaultValues['duration'] : "0" ); |
You need to add code, not change anything presently in there. If I had to guess, it's probably something like adding ini_set at the top of the file (under the comments):
ini_set('upload_max_filesize', '128M'); BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
Guess I better wait and see if someone knows for sure what to change. I do not know why they took this option out of the flash apps settings in modules. |