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!