0 && ($post_max < $upload_max || $upload_max == 0)) { $upload_max = $post_max; } // Check to handle POST requests exceeding max post size. if ($_SERVER['CONTENT_LENGTH'] > 0 && $post_max > 0 && $_SERVER['CONTENT_LENGTH'] > $post_max) { Upload::rerror(); exit; } /* Switch on the action passed in */ switch ($_REQUEST['actionp']) { case 'upload': if (AmpConfig::get('demo_mode')) { UI::access_denied(); exit; } Upload::process(); exit; default: UI::show_header(); require AmpConfig::get('prefix') . '/templates/show_add_upload.inc.php'; break; } // switch on the action UI::show_footer();