0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
lib
/
filegals
/
[
Home
]
File: max_upload_size.php
<?php //this script may only be included - so its better to die if called directly. if (strpos($_SERVER["SCRIPT_NAME"],basename(__FILE__)) !== false) { header("location: index.php"); exit; } // Try to detect a file max size due to upload or memory limits // (to do an insert into the database, the data has to be put in memory by PHP) // // from PHP manual (ini-get function example) if ( ! function_exists('return_bytes') ) { function return_bytes( $val ) { $val = trim($val); $last = strtolower($val{strlen($val)-1}); switch ( $last ) { // The 'G' modifier is available since PHP 5.1.0 case 'g': $val *= 1024; case 'm': $val *= 1024; case 'k': $val *= 1024; } return $val; } } @$max_upload_size = return_bytes(ini_get('upload_max_filesize')); @$post_max_size = return_bytes(ini_get('post_max_size')); $max_upload_size_comment = tra("This is the value of your server's PHP '%s' setting"); if ( $post_max_size > 0 && ( $post_max_size < $max_upload_size || $max_upload_size == 0 ) ) { $max_upload_size = $post_max_size; $max_upload_size_comment = sprintf($max_upload_size_comment, 'post_max_size'); } else { $max_upload_size_comment = sprintf($max_upload_size_comment, 'upload_max_filesize'); } if ( $prefs['fgal_use_db'] == 'y' && ! $podCastGallery ) { // Get memory limit @$memory_limit_ini = ini_get('memory_limit'); $memory_limit = return_bytes($memory_limit_ini); if ( $memory_limit > 0 ) { // Try to detect current memory usage or set it arbitrary to 10MB // @$current_memory_usage = function_exists('memory_get_usage') ? (int)memory_get_usage(true) : 10 * 1024 * 1024; // Estimate available memory for file upload. // The result is divided by 3, because the file has to be stored twice in memory : // one copy when reading the file, and two other modified copies in ADODB when adding quotes to the query variables // ( due to functions like mysqli_real_escape_string that takes 200% more memory) // We also reduce of a memory size of 3 MB (which is an approximation too) that may be necessary for other tasks to work // $remaining_memory = max(0, ((int)($memory_limit - $current_memory_usage) / 3) - (3 * 1024 * 1024)); if ( $max_upload_size > $remaining_memory ) { $max_upload_size = $remaining_memory; $max_upload_size_comment = tra('This is an approximation based on your server memory limit:').' '.$memory_limit_ini; } } } $smarty->assign("max_upload_size_comment", $max_upload_size_comment); $smarty->assign("max_upload_size", "$max_upload_size");