I'm giving up. At least for tonight. I put everything back like it was.
This is what the instructions with the plug in said to do -
In reply to:
Plugin Name: WphpBB-Login
Plugin URI: http://www.happypoet.com/hackery/wphpbb-login/
Description: Replaces the login system of phpBB and WP to combine the two.
Author: Wilbur Bennett
Version: .09
Author URI: http://www.happypoet.com
WARNING:::: I take no responsibility for destroying everything you have worked hard to set up in your life.
For complete and updated directions go to http://www.happypoet.com/hackery/wphpbb-login/directions/
1) Upload zip in WP Main Folderr.
2) Uncompress zip
3) Move wphpbb-plugin.php to the plugin folder.
4) Modify phpBB and WordPress by putting making get_userdata and make_clickable pluggable.
5) Login to Wordpress Admin.
6) Activate WphpBB-Login.
7) Go to WphpBB-Login Options Page (Under Main Options).
8) Edit Options to Suit being sure to fill in required (Content Blocks if left undefined will be .
9) Save
10) Test WP login to make sure it works.
11) Modify phpBB to use wphpbb-login.php as the login page. (directions in changes to phpBB).
12) Enjoy!
I kept getting a blank index page.
1. Done
2. Done
3. Done
4. No clue!
5. Done
6. Done
7. Done
8. Done
9. Done
10. Didn't work.
11. Done - this was my "localhost" question.
12. Not yet!
But, on his website, I also found -
In reply to:
WphpBB-Login Directions
Filed under: main — WDuluoz @ 1:42 pm
Before you begin:
BACK UP EVERYTHING THING
Have phpBB and Wordpress running smoothly. (believe me it helps)
DID YOU BACK UP EVERYTHING?
Required:
Download WPHPBB-Login
(upload and unzip files in the main directory of wp).
Edit phpBB and WordPress:
Find function get_userdata in PHPBB (in includes/functions.php line 116 of phpBB 2.0.17):
add before the function
if (!function_exists(get_userdata)) :
and after the funtion
endif;
Find make_clickable both in WP (in wp-includes/functions-formatting.php line 544 of WP 1.5.1.3) and phpBB (in includes/bbcode.php line 617 in phpBB 2.0.17):
add before function
if (!function_exists(make_clickable)) :
and after the function
endif;
The idea is to tell these two functions not to be defined if they are already defined.
The reason is because PHPBB uses get_userdata only to get the user information for admin functions and for profile information. Since we are not doing either of those while in WP, then there should never be a time it is called. While you are in WP, you are using WordPress’s get_userdata and while you are in PHPBB you are using PHPBB’s get_userdata. This should ease some of the burden of installing this script.
PHPBB Login:
Change the path to the login page in phpBB to the file wphpbb-login.php in the WordPress login.
Directions are supplied with both WphpBB and WphpBB-Login. Easier to follow in text form.
Disable Allow Username changes
Unfortunately, WordPress will not allow the user_login to be changed with their wp_update_user function, even though it should. I could force it into the system, but I would rather not. If you dont set it to not allow username changes, then a new user will be created in WP each time the person changes their name.
The find function instructions weren't with the plug in I downloaded.
So, I'll try again when my head quits hurting.