Quote:
Originally Posted by ElfMage
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.
|
Yes I believe this is it. Thank you.