I have a PHP web page hosted in an Ubuntu (12.04) machine. Looks like that everything is correc except the fact that the include function of PHP is not working at all. I have checked the php.ini and documentation but I am not able to find the root cause. I enabled allow_url_include (which I think is not recommended) without any luck.
I think this is a very tiny silly question but is driving me crazy. Help is much appreciated.
Thank you very much in advanced.
Best regards,
Julen.
includeis a core statement of php and if the file is not found it emits only a warning. Instead of useincludetryrequire, if the file is not found,requirereturn a fatal error. This could lead you to understand what's happening. – freedev Dec 4 '12 at 14:03