Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Vanilla 1.1.3 Released
This discussion has been closed.
Comments
You also have to recreate conf/settings.php; it should look like:
<?php // Application Settings $Configuration['SETUP_TEST'] = '1'; $Configuration['APPLICATION_PATH'] = '/path/to/vanillaforum/'; $Configuration['DATABASE_PATH'] = '/path/to/vanillaforum/conf/database.php'; $Configuration['LIBRARY_PATH'] = '/path/to/vanillaforum/library/'; $Configuration['EXTENSIONS_PATH'] = '/path/to/vanillaforum/extensions/'; $Configuration['LANGUAGES_PATH'] = '/path/to/vanillaforum/languages/'; $Configuration['THEME_PATH'] = '/path/to/vanillaforum/themes/vanilla/'; $Configuration['DEFAULT_STYLE'] = '/path/to/vanillaforum/styles/default/'; $Configuration['WEB_ROOT'] = '/vanillaforum/'; $Configuration['BASE_URL'] = 'http://ballofspray.com/vanillaforum/'; $Configuration['FORWARD_VALIDATED_USER_URL'] = 'http://ballofspray.com/vanillaforum/'; $Configuration['SUPPORT_EMAIL'] = 'Horton@ballofspray.com'; $Configuration['SUPPORT_NAME'] = 'Horton'; $Configuration['APPLICATION_TITLE'] = 'Vanilla Forum'; $Configuration['BANNER_TITLE'] = 'Vanilla Forum'; $Configuration['COOKIE_DOMAIN'] = 'ballofspray.com'; $Configuration['COOKIE_PATH'] = '/vanillaforum/'; $Configuration['SETUP_COMPLETE'] = '1'; ?>
Then go through Vanilla's settings to make sure they are all as they should be.