Sudden Fatal Error
Status: Inactive
Brought to you by:
jvreuls
Hi,
By accident I also posted this message at 'bu'gs'
Sorry for that.
After months of perfect functioning suddenly eCorrei fails
to launch to day.
I get the error message:
Fatal error: Failed opening required 'lang/lang..php'
(include_path='.:/usr/local/lib/php4/lib/php')
in /u/web/audio5/mail/main.php on line 87
I did not modify anything.
eCorrei functioned well until this morning.
The URL:
http://www.audiovisueel.com/mail/
What could be wrong?
Thanks
Alwin Bijvoet
alwin@bijvoet.nl
Logged In: NO
I got the same problem when installing.
Perhaps a new version of PHP? I have no idea, I am no PHP-
coder.... ;-)
This was posted 4 months ago, but if anyone still is haveing
this problem, here we go...
This is how I fixed it in main.php:
Look for:
require($cfg->langdir . "lang." . $usr_langcode . ".php");
Insert this simple line before:
if($usr_langcode == "") $usr_langcode = "en";
require($cfg->langdir . "lang." . $usr_langcode . ".php");
Worked for me.