upload limit for multi uploads
-
Hi there,
I’m trying to build a form that allows multiple uploads of up to 4/5mb each
I’ve managed to get the multiple uploads working (form script below) but each upload seems to be limited to 1mb (same as default)
I’ve already changed my wordpress php.ini file to allow larger uploads and also the plugins file.php to allow uploads of greater than 1mb but neither has workedAny ideas??
PLUGIN FILE.PHP amendements
(“$allowed_size = 50242880; // default size 50 MB”and
“if ( ‘kb’ == $kbmb )
$allowed_size *= 400000;
elseif ( ‘mb’ == $kbmb )
$allowed_size *= 100024 * 100024;
}CONTACT FORM SCRIPT
<p class=”hide”>[file file-01 limit:10000000]</p>
<p class=”hide”>[file file-02 limit:10000000]del</p>
<p class=”hide”>[file file-03 limit:10000000]del</p>
<p class=”hide”>[file file-04 limit:10000000]del</p>
<p class=”hide”>[file file-05 limit:10000000]del</p>
Add file<p>[submit “Send”]</p>
- The topic ‘upload limit for multi uploads’ is closed to new replies.