Hi,
When Google tries to index the site (via the sitemap items no doubt), I see this in my logs:
mod_fcgid: stderr: PHP Fatal error: require_once(): Failed opening required '/homeofdomain/modules/classes/Config.php' (include_path='.:/usr/share/pear:/usr/share/php') in /homeofdomain/inc/classes/BxDolModule.php on line 64
The ./modules/classes/Config.php actually doesn't exist, it's not on the filesystem, as a matter of fact, ./modules/classes doesn't exist.
Looking at BxDolModule.php around line 64:
$sClassName = $sClassPrefix . 'Config';
require_once($sClassPath . $sClassName . '.php');
$this->_oConfig = new $sClassName($aModule);
(the middle line is line 64), it's trying to find Config.php which doesn't exist.
The Config.php files I find on the filesystem of the OS is:
/usr/share/pear/PEAR/Config.php
/usr/share/pear/PEAR/Command/Config.php
/homeofdomain/plugins/moxiemanager/classes/Util/Config.php
Obviously I want my site indexed for Google, so this is an urgent thing to try and resolve.
Any ideas?
Thanks.