Fatal error: require_once() [function.require]

Hello

Can someone help me i think i have an error in language

here’s the error i get :

Fatal error: require_once() [function.require]: Failed opening required '/home/turbo/public_html/inc/lang/lang_english.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/turbo/public_html/inc/bootstrap.php on line 113

Here is the line 113 in bootstrap.php :

[php]require_once(PATH_LANG . ‘lang_’ . $cfg->getVar(‘lang’) . ‘.php’);[/php]

Please help :frowning:

hello,

this error simply means the file was not found or the path doesnt exis.

So PATH_LANG is Constant correct?

copy the full path from current location of this script to the php file you are calling.

and compare it to the result of the following echo

[php]
echo PATH_LANG . ‘lang_’ . $cfg->getVar(‘lang’) . ‘.php’;
[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service