What is: Failed opening 'includes/languages/english/' for inclusion 
asked by Not Registered on 23 May 2008 16:16
Warning: include() [function.include]: Failed opening 'includes/languages/english/' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/a9394051/public_html/admin/includes/application_top.php on line 126
Answers
You are trying to include a directory. This can not work. Look in line 126 of your file /home/a9394051/public_html/admin/includes/application_top.php.
Their must be something like:
include('includes/languages/english/');
Change it to:
include('includes/languages/english/file.example');
Include function must point to an file/url, not a directory!
Their must be something like:
include('includes/languages/english/');
Change it to:
include('includes/languages/english/file.example');
Include function must point to an file/url, not a directory!
answered by Not Registered on 26 May 2008 8:51
Have a look at http://php.net/include/
- PHP Fatal erro, Not Registered
- what does phpBB : CRITICAL ERROR MEAN, Not Registered


















