wenn ich jetzt ein Attachment hinzufügen möchte, bekomm ich diese meldung:
Code: Alles auswählen
Upload Error: Kann das Attachment ./files/attachment/bild.gif nicht hochladen.
MfG Pato
Code: Alles auswählen
Upload Error: Kann das Attachment ./files/attachment/bild.gif nicht hochladen.
Code: Alles auswählen
#
#-----[ OPEN ]---------------------------------------------
#
admin/admin_forums.php
#
#-----[ FIND ]---------------------------------------------
# around line 52
//
// Mode setting
#
#-----[ BEFORE, ADD ]---------------------------------------
#
$forum_auth_ary['auth_attachments'] = AUTH_REG;
$forum_auth_ary['auth_download'] = AUTH_REG;
#
#-----[ OPEN ]---------------------------------------------
#
admin/admin_groups.php
#
#-----[ FIND ]---------------------------------------------
# around line 59
if ( isset($HTTP_POST_VARS['edit']) || isset($HTTP_POST_VARS['new']) )
#
#-----[ BEFORE, ADD ]---------------------------------------
#
attachment_quota_settings('group', $HTTP_POST_VARS['group_update'], $mode);
#
#-----[ OPEN ]---------------------------------------------
#
admin/admin_ug_auth.php
#
#-----[ FIND ]---------------------------------------------
# around line 91
// ---------------
// Start Functions
#
#-----[ BEFORE, ADD ]---------------------------------------
#
attach_setup_usergroup_auth($forum_auth_fields, $auth_field_match, $field_names);
Code: Alles auswählen
Fatal error: Cannot redeclare attach_faq_include() (previously declared in /../forum/attach_mod/includes/functions_includes.php:31) in /../forum/attach_mod/includes/functions_includes.php on line 31
Code: Alles auswählen
//
// Include the FAQ-File (faq.php)
//
function attach_faq_include($lang_file)
{
global $phpbb_root_path, $board_config, $phpEx, $faq, $attach_config;
if (intval($attach_config['disable_mod']))
{
return;
}
if ($lang_file == 'lang_faq')
{
if (!file_exists($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_faq_attach.'.$phpEx))
{
include($phpbb_root_path . 'language/lang_english/lang_faq_attach.'.$phpEx);
}
else
{
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_faq_attach.' . $phpEx);
}
}
}