Can i help?
aircool51
1. find file: www/theme/<themename>/post.php
2. find: (this is with a my language, you need to find with your)
/* newly uploaded files */
if (isset($_FILES['attach_control']) && $_FILES['attach_control']['size']) {
if ($_FILES['attach_control']['size'] > $MAX_F_SIZE) {
$attach_control_error = '<font class="ErrorText">Файл слишком велик (превышает установленный предел в '.$MAX_F_SIZE.' байт)</font><br>';
} else {
if (!($MOD && $frm->forum_opt & 32) && filter_ext($_FILES['attach_control']['name'])) {
$attach_control_error = '<font class="ErrorText">Загружаемый файл не принадлежит к одному из допустимых типов.</font><br>';
} else {
if (($attach_count+1) <= $frm->max_file_attachments) {
$val = attach_add($_FILES['attach_control'], _uid);
$attach_list[$val] = $val;
$attach_count++;
} else {
$attach_control_error = '<font class="ErrorText">Вы пытаетесь загрузить большее допустимого количество файлов.</font><br>';
}
}
}
}
and replace with
for( $i = 0; $i < 3; $i++ )
{
$name = 'attach_control'.$i;
if (isset($_FILES[$name]) && $_FILES[$name]['size']) {
if ($_FILES[$name]['size'] > $MAX_F_SIZE) {
$attach_control_error = '<font class="ErrorText">Файл слишком велик (превышает установленный предел в '.$MAX_F_SIZE.' байт)</font><br>';
} else {
if (!($MOD && $frm->forum_opt & 32) && filter_ext($_FILES[$name]['name'])) {
$attach_control_error = '<font class="ErrorText">Загружаемый файл не принадлежит к одному из допустимых типов.</font><br>';
} else {
if (($attach_count+1) <= $frm->max_file_attachments) {
$val = attach_add($_FILES[$name], _uid);
$attach_list[$val] = $val;
$attach_count++;
} else {
$attach_control_error = '<font class="ErrorText">Вы пытаетесь загрузить большее допустимого количество файлов.</font><br>';
}
}
}
}
}
3. find
<input type="file" name="attach_control">
and replace with
<input type="file" name="attach_control0"><br />
<input type="file" name="attach_control1"><br />
<input type="file" name="attach_control2">
you have a 3 inputs for files...
if you want to more inputs, add <input type..> and for( .. $i< <your number>..)
all done
[Updated on: Fri, 17 June 2005 09:00]
Report message to a moderator