Quote:
Originally Posted by RVSmarter
Hi I am trying to install vbwiki standard at the moment and I went through the instructions and I get the following error on the wiki mainpage:
Code:
Warning: require_once(/includes/AuthPlugin.php) [function.require-once]: failed to open stream: No such file or directory in /home/mathhelp/public_html/math-help/vbWiki/vbWiki_Auth.php on line 14
Fatal error: require_once() [function.require]: Failed opening required '/includes/AuthPlugin.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/mathhelp/public_html/math-help/vbWiki/vbWiki_Auth.php on line 14
Line 14 reads: require_once( "$IP/includes/AuthPlugin.php");
What shall I do????
You can see for yourself here: www.mathhelpforum.com/wiki
|
Hi,
This is usually caused by entering the incorrect path on the 'require_once' line added to MW's LocalSettings.php.
Verify that the path entered in LocalSettings is an absolute
local directory path.
For instance, this is wrong:
require_once "http://www.mydomain.com/forums/vbWiki/......php"; // THIS IS WRONG
The right way is as follows:
require_once "
/local/path/to/your/forum/installation/vbWiki/vbWiki_Init.php";
Entering the correct path for your server.
Could you verify if this is the issue in your installation?
Thanks.