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.
WordPress Integration Problem
WordPress 2.0.5
Vanilla 1.0.3
I'm working my way through the WordPress integration instructions. I've made it to the point where I should be able to login to Vanilla with my WP ID, but I can't.
I can log into WP still fine with my WP IDs but when I try and go to this page:
http://www.hometurfmedia.com/blog/forum/
I can't login. After I enter my user/pw I end up at this URL...not sure if that is a clue to the problem:
http://www.hometurfmedia.com/blog/forum/people.php?PageAction=SignOutNow&ReturnUrl=http://www.hometurfmedia.com/blog/forum/
It looks like it is logging me out?
Also interesting is that from the Vanilla login page, if I reset my password [by entering the WP user ID I was trying to log in with] I do get a reset message from the Vanilla forum, with a link to reset my password. When I reset it using the link, I can then login into WP fine with the new login, but I still get the same result with Vanilla.
Any help really appreciated.
Thanks,
Jon
0
This discussion has been closed.
Comments
Is there some sort of paid support system for Vanilla that I'm supposed to be using?
Or have I unknowingly broken some community guideline and that's the reason no one will help?
Or there's nobody home...everyone's gone for Xmas?
Or my question is so stupid that every trained monkey in the world [with the exception of me] could figure it out?
Or ...please enlighten if there is some other reason that I'm not getting any replys.
As it currently stands I either need to figure this out...which without some help is virtually impossible, or move on to my next choice for forum software.
Thanks,
Jon
Is this the part you are looking for:
//===========settings.php================
<?php
// Application Settings
$Configuration['SETUP_TEST'] = '1';
$Configuration['APPLICATION_PATH'] = '/home/.hog/hometurf/hometurfmedia/blog/forum/';
$Configuration['DATABASE_PATH'] = '/home/.hog/hometurf/hometurfmedia/blog/forum/conf/database.php';
$Configuration['LIBRARY_PATH'] = '/home/.hog/hometurf/hometurfmedia/blog/forum/library/';
$Configuration['EXTENSIONS_PATH'] = '/home/.hog/hometurf/hometurfmedia/blog/forum/extensions/';
$Configuration['LANGUAGES_PATH'] = '/home/.hog/hometurf/hometurfmedia/blog/forum/languages/';
$Configuration['THEME_PATH'] = '/home/.hog/hometurf/hometurfmedia/blog/forum/themes/vanilla/';
$Configuration['DEFAULT_STYLE'] = '/blog/forum/themes/vanilla/styles/default/';
$Configuration['WEB_ROOT'] = '/blog/forum/';
$Configuration['BASE_URL'] = 'http://www.hometurfmedia.com/blog/forum/';
$Configuration['FORWARD_VALIDATED_USER_URL'] = 'http://www.hometurfmedia.com/blog/forum/';
$Configuration['SUPPORT_EMAIL'] = 'me@gmail.com';
$Configuration['SUPPORT_NAME'] = 'Jon';
$Configuration['APPLICATION_TITLE'] = 'Home Turf Media Bloggers Forum';
$Configuration['BANNER_TITLE'] = 'Home Turf Media Bloggers Forum';
$Configuration['COOKIE_DOMAIN'] = '.hometurfmedia.com';
$Configuration['COOKIE_PATH'] = '/blog/forum/';
$Configuration['SETUP_COMPLETE'] = '1';
// Wordpress Authenticator
$Configuration['AUTHENTICATION_MODULE'] = 'People/People.Class.WordpressAuthenticator.php';
?>
//==================database.php=======================
// Wordpress Integration
// =====================
// Map to the wordpress user table
$DatabaseTables['User'] = 'wp_users';
// Map existing wordpress columns to Vanilla
$DatabaseColumns['User']['UserID'] = 'ID';
$DatabaseColumns['User']['Name'] = 'user_login';
$DatabaseColumns['User']['Password'] = 'user_pass';
$DatabaseColumns['User']['Email'] = 'user_email';
$DatabaseColumns['User']['DateFirstVisit'] = 'user_registered';
// Also map the Wordpress columns into Vanilla
$DatabaseColumns['User']['user_nicename'] = 'user_nicename';
$DatabaseColumns['User']['user_url'] = 'user_url';
$DatabaseColumns['User']['user_activation_key'] = 'user_activation_key';
$DatabaseColumns['User']['user_status'] = 'user_status';
$DatabaseColumns['User']['display_name'] = 'display_name';