Posted: Sun Mar 05, 2006 11:47 pm Post subject: Re: Standalone phpBB2 integration within PHPNuke
I heard say, to sumon the Dari the great for help, all you have to is.
Go to the bathroom and with the lights off in this order.
initally you need to have a 3ft bathroom mirror, small black candle 3 inches long,
three large steps
1. light a small black candle and hold the flame an inch away from your lips.
2. Take three large steps towards the bathroom mirror without blowing the candle out.
3. Then stair dead straight into the mirror for 3 long seconds, then
4. Whisper Dari, Dari, Dari without blowing the candle out.
5. And then wait 3 long seconds more.
6. Now blow the candle out and wait for Dari to manifest himself before you.
Caution this may take a while and could be dangerous and i will not be held responsible for anything that may happen.
Joined: Mar 03, 2003 Posts: 6233 Location: Washington Township, NJ, USA
Posted: Mon Mar 06, 2006 7:55 am Post subject: Re: Standalone phpBB2 integration within PHPNuke
heh...i'm flattered
i'm busy right now w/ Gallery 2.1 related things (and new baby related things, too), so this has been put on hold for awhile. Hopefully I'll get back to it ASAP _________________
Posted: Tue Mar 07, 2006 3:31 am Post subject: Re: Standalone phpBB2 integration within PHPNuke
I burn't my lip doing that but it worked and was worth it, mumbled the idiot . Will hold out a while for your advice, but as far as i can tell all your integration works just about fine, for me it has, all good so far????... good luck and congratulations DARI....
(Can't log in as admin in phpbb2 after integration???).
Posted: Sun Mar 26, 2006 8:19 am Post subject: Re: Standalone phpBB2 integration within PHPNuke
Hi still looking for alittle help with the integration. just have one last problem with the phpbb admin login, everytime i try to login as admin it just take me back to the phpbb main page instead in admin control panel??? any ideas anyone please.
Posted: Sun Apr 02, 2006 10:34 pm Post subject: Re: Standalone phpBB2 integration within PHPNuke
Still Hanging out like a junkie here please help somebody!
is there anybody who actually checks these posts??
Am i wasting my time holding out and asking for help here???
Have been very very patient but nothing or nobody has come forward with any kind or adivce any literally no response of any kind to anything???
What is up??? Is there no help avalible on for integration and where should i be looking???? It seems that there is none or very little that actually helps???
Please help, i just want to secure and finish my site and the integration.
please help somebody!
Joined: Mar 03, 2003 Posts: 6233 Location: Washington Township, NJ, USA
Posted: Mon Apr 03, 2006 7:06 am Post subject: Re: Standalone phpBB2 integration within PHPNuke
sorry, but due to the changes in phpBB since the original MOD i posted, plus the fact that I'm supporting the Gallery 2.1 integration as well, I haven't had time to maintain this. _________________
Posted: Sat Apr 08, 2006 5:44 pm Post subject: Re: Standalone phpBB2 integration within PHPNuke
heres how to make this work with the latest version of phpBB, it does not work with the latest ver of phpnuke so im using PHP-Nuke-7.8 also if you already have a phpBB forum you can keep all your data,
after following all the mods, for those with the "Parse error: parse error, unexpected $ in /home/.../modules/Your_Account/index.php..." error, make sure your modules/Your_Account/index.php has the following, this error is due to a } being left out here: (you may have forum instead of phpBB2)
PHP: › <?php #
#-----[ OPEN ]-----------------------------------
#
modules/Your_Account/index.php
#
#-----[ CHECK ]-----------------------------------
#
if ($redirect == "" ) {
Header("Location: modules.php?name=Your_Account&op=userinfo&bypass=1&username=$username");
} else if ($redirect == "phpBB") {
Header("Location: /phpBB2/");
} else if ($mode == "") {
Header("Location: /phpBB2/$forward");
} else if ($t !="") {
Header("Location: /phpBB2/$forward&mode=$mode&t=$t");
} else {
Header("Location: /phpBB2/$forward&mode=$mode&f=$f");
}
} // make sure you have this one.
}
#
#-----[ SAVE & CLOSE ]-----------------------------------
#
modules/Your_Account/index.php ?>
next we want to be able to get into the forums admin panel so do the following:
PHP: › <?php #
#-----[ OPEN ]-----------------------------------
#
phpBB2/login.php
#
#-----[ FIND ]-----------------------------------
#
else
{
//
// Do a full login page dohickey if
// user not already logged in
//
if( !$userdata['session_logged_in'] || (isset($HTTP_GET_VARS['admin']) && $userdata['session_logged_in'] && $userdata['user_level'] == ADMIN))
{
$page_title = $lang['Login'];
include($phpbb_root_path . 'includes/page_header.'.$phpEx);