Forum Moderators: coopster

Message Too Old, No Replies

Limit File Upload Size

Can't change php.ini

         

FourDegreez

4:24 pm on Aug 1, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



My host has set the max file size limit at 10MB. Is there a way to lower that value within the script?

jatar_k

6:18 pm on Aug 1, 2006 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



take a look at these links

[php.net...]
[php.net...]

FiRe

10:00 am on Aug 2, 2006 (gmt 0)

10+ Year Member



Or you could limit it in the code...


<?php

// Enter the maximum file size in bytes (2 MB)
$max_size = 2097152;

if ($_FILES['file']['size'] > $max_size) {
die('Maximum file size limit!');
}

?>