Here's the error message:
Quote:
Warning: main(/home/gtplanet/public_html/guides/includes/init.php): failed to open stream: No such file or directory in /home/gtplanet/public_html/forum/global.php on line 20
Fatal error: main(): Failed opening required '/home/gtplanet/public_html/guides/includes/init.php' (include_path='.:/home/gtplanet/public_html/guides:/home/gtplanet/public_html/guides/includes:/home/gtplanet/public_html/guides/languages') in /home/gtplanet/public_html/forum/global.php on line 20
|
It's obviously looking for init.php in the wrong place, but I don't know how to change that?
Here's how I included the file in the beginning of my MediaWiki skin:
PHP Code:
<?php
/**
* MonoBook nouveau
*
* Translated from gwicke's previous TAL template version to remove
* dependency on PHPTAL.
*
* @todo document
* @package MediaWiki
* @subpackage Skins
*/
if( !defined( 'MEDIAWIKI' ) )
die();
/** */
require_once('../forum/global.php');
require_once('includes/SkinTemplate.php');
/**