komut.php olarak kaydet forum anadizinine at ve çalıştır
    <?php
    /**
    * @ignore
    */
    define('IN_PHPBB', true);
    $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
    $phpEx = substr(strrchr(__FILE__, '.'), 1);
    include($phpbb_root_path . 'common.' . $phpEx);
    set_config('wpm_enable', '1', $is_dynamic = false);
    set_config('wpm_send_id', '2', $is_dynamic = false);
    set_config('wpm_subject', 'Welcome to our forums!', $is_dynamic = false);
    set_config('wpm_message', 'Hello, {USERNAME}!\n\nWelcome to {SITE_NAME}. You registered on {USER_REGDATE}. According to your input, your email is: {USER_EMAIL}.\n\n-Thank you for registering at {SITE_NAME}! :D', $is_dynamic = false);
    set_config('wpm_preview', '', $is_dynamic = false);
    set_config('wpm_variables', '', $is_dynamic = false);
    die('Kurulum tamamlandı');
    ?>