MyBB Community Forums

Full Version: Installation: Fatal error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
A user over here gets the following error when opening install/index.php:
Quote:Warning: MyLanguage::require_once(resources///language.lang.php) [function.MyLanguage-require-once]: failed to open stream: No such file or directory in E:\Apache2\htdocs\mybb2\inc\class_language.php on line 136

Fatal error: MyLanguage::require_once() [function.require]: Failed opening required 'resources///language.lang.php' (include_path='E:\php\') in E:\Apache2\htdocs\mybb2\inc\class_language.php on line 136
Wow, I am not sure why isn't it failing on file_exists() check. Try cheating a bit in install/index.php file. Find:

$lang->set_path('resources/');

Replace with:

$lang->set_path('/home/user_name/public_html/mybb_forum/install');
$lang->language = 'resources';

Let's see if it works (not tested).
Can you try the attached install/index.php?