Status: offline

Turias

Forum User
Full Member
Registered: 10/20/03
Posts: 807
The latest update to phpBBBridge has been released! This version enables support for phpBB 2.0.11 and Geeklog 1.3.10. It also fixes a couple of minor bugs.

Please read thoroughly through the enclosed read-me for important installation and upgrade information.

For now, you can download and test the new version at my demo site. Once Dirk gets a chance to approve the file, you will also be able to download it from Geeklog.net.

Thanks! And let me know if you run into any issues.

phpBB2

Anonymous
Thanks Turias!!!

Status: offline

penguin

Forum User
Newbie
Registered: 12/01/04
Posts: 11
I just updated to GeekLog 1.3.10 and phpBBBridge 0.75 and am having some problems.

When I try to access any of the admin links i get this error:
Text Formatted Code
Please ensure both the install/ and contrib/ directories are deleted
 


Both of these directories are deleted.

Status: offline

Turias

Forum User
Full Member
Registered: 10/20/03
Posts: 807
You have to make sure that your Geeklog admin/install directory is deleted, too.

This is in the installation instructions in the readme.

Status: offline

penguin

Forum User
Newbie
Registered: 12/01/04
Posts: 11
Thanks

Status: offline

zipstart

Forum User
Chatty
Registered: 09/13/04
Posts: 60
...AND Gallery's install and contrib dirs if you have it installed...

Status: offline

Turias

Forum User
Full Member
Registered: 10/20/03
Posts: 807
Quote by zipstart: ...AND Gallery's install and contrib dirs if you have it installed...


Heh, very true. In fact, if you have any "install" or "contrib" directories in your Geeklog webtree, there will be complaints.

I've already edited my local copy of the phpBB common.php so that it only checks for these directories when inside a phpBB page. This should fix the errors with the Geeklog admin/install directory and the Gallery contrib directory.

This fix will be in for the next version, but if for some reason you need it now, just change:

Text Formatted Code

if (file_exists('install') || file_exists('contrib'))
{
        message_die(GENERAL_MESSAGE, 'Please ensure both the install/ and contrib/ directories are deleted');
}

 


to

Text Formatted Code

if (!defined ('IN_GEEKLOG') && (file_exists('install') || file_exists('contrib')))
{
        message_die(GENERAL_MESSAGE, 'Please ensure both the install/ and contrib/ directories are deleted');
}

 


in the phpbb/common.php file.

Thanks!

Status: offline

Turias

Forum User
Full Member
Registered: 10/20/03
Posts: 807
There was a minor cosmetic bug in 0.75 that caused new users to look like moderators in the Who's Online phpBB block until they updated their profile. So, I have updated to 0.76. The only changed file is geeklog/plugins/phpbbbridge/functions.inc. If you have installed 0.75, feel free to upgrade by simply replacing that one file from the new archive.

You can get 0.76 from my site now, or from Geeklog.net once it gets approved. Sorry for any inconvenience. Thanks!