Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
mp4 upload error
#9
here is the new function in 3.4 to get uplaod size, maybe it will help.

PHP Code:
/**
 * get the maximum upload size as defined by php ini
 * @since  3.4
 * @return int max bytes
 */
function getMaxUploadSize(){
    
$max_upload   toBytes(ini_get('upload_max_filesize'));
    
$max_post     toBytes(ini_get('post_max_size'));
    
$memory_limit toBytes(ini_get('memory_limit'));
    
$upload_mb    min($max_upload$max_post$memory_limit);
    return 
$upload_mb;

NEW: SA Admin Toolbar Plugin | View All My Plugins
- Shawn A aka Tablatronix
Reply


Messages In This Thread
mp4 upload error - by b3n.ji - 2015-04-17, 20:14:55
RE: mp4 upload error - by shawn_a - 2015-04-17, 22:31:34
RE: mp4 upload error - by shawn_a - 2015-04-17, 22:31:56
RE: mp4 upload error - by b3n.ji - 2015-04-18, 02:40:17
RE: mp4 upload error - by shawn_a - 2015-04-18, 04:52:06
RE: mp4 upload error - by b3n.ji - 2015-04-18, 06:35:34
RE: mp4 upload error - by shawn_a - 2015-04-18, 06:40:31
RE: mp4 upload error - by b3n.ji - 2015-04-18, 06:58:43
RE: mp4 upload error - by shawn_a - 2015-04-18, 07:20:20
RE: mp4 upload error - by simplycrazy - 2015-04-18, 11:46:42
RE: mp4 upload error - by shawn_a - 2015-04-18, 11:57:31
RE: mp4 upload error - by b3n.ji - 2015-04-18, 18:11:44
RE: mp4 upload error - by RootIQ - 2016-08-09, 02:41:07



Users browsing this thread: 1 Guest(s)