skrolla ner till denna biten:
Där börjar den manuell moddningen.#
# STEP NUMBER III: Modifying existing phpBB2 Files
#
# Now you have to alter existing phpBB2 files, read the instructions carefully and make sure you find the correct lines.
# The Line Numbers are only a hint, most of the time they are not correct, especially if you have Mods installed.
#
#
#
#-----[ OPEN ]---------------------------------------------
#
common.php
#
#-----[ FIND ]---------------------------------------------
# around line 218
$board_config[$row['config_name']] = $row['config_value'];
}
Utan den fungerar inget.
Det är här som du t.ex. lägger till rutan där du söker igenom din dator efter filer som du vill ladda upp.
Nu följer du helt enkelt anvisningarna.
betyder:#
#-----[ OPEN ]---------------------------------------------
#
common.php
#
#-----[ FIND ]---------------------------------------------
# around line 218
$board_config[$row['config_name']] = $row['config_value'];
}
#
#-----[ AFTER, ADD ]--------------------------------------
# After the closing brace
include($phpbb_root_path . 'attach_mod/attachment_mod.'.$phpEx);
öppna common.php
sök och hitta
Kod: Markera allt
$board_config[$row['config_name']] = $row['config_value'];
}Kod: Markera allt
include($phpbb_root_path . 'attach_mod/attachment_mod.'.$phpEx);Kod: Markera allt
$board_config[$row['config_name']] = $row['config_value'];
}
include($phpbb_root_path . 'attach_mod/attachment_mod.'.$phpEx);

