Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Define "not working". Is there an error? A blank screen? Is it echoing code? – Jon Stirling Dec 4 '12 at 13:46
include is a core statement of php and if the file is not found it emits only a warning. Instead of use include try require, if the file is not found, require return a fatal error. This could lead you to understand what's happening. – freedev Dec 4 '12 at 14:03
check the permissions of the php file(s) you are trying to include. if apache user does not have file permissions php will not be able to include the file. – Jim Ford Dec 4 '12 at 14:57

closed as not constructive by Marcin Orlowski, bhamby, Rody Oldenhuis, Nimit Dudani, Jan Hančič Dec 4 '12 at 14:58

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

Sir, I think may be some properties of php.ini is disable

  1. You have to please enable 'allow_url_fopen = On', OR 2. 1) Open up php.ini . vi /path to php/php.ini (replace with the path to your php.ini file)

2) Find the following line: safe_mode

3) Turning safe mode on or off. safe_mode = Off You may active it by or turn it off by changing it to either On OR Off. safe_mode = On

4) Restart the Apache web server

OR

3. ;extension=php_curl.dll Check weather this code is there or not,if it is not please add it

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.