what does it mean “(include_path='.:/usr/share/pear:/usr/share/php')”?

后端 未结 7 2336
暗喜
暗喜 2021-02-18 16:31

I have file structure on EC2 like : but facing some file referencing problem.

index.php
-db
  -config.php
-cron
  -cron1.php

I have tried file

7条回答
  •  花落未央
    2021-02-18 17:21

    Thats just the directories showing you where PHP was looking for your file. Make sure that cron1.php exists where you think it does. And make sure you know where dirname(__FILE__) and $_SERVER['DOCUMENT_ROOT'] are pointing where you'd expect.

    This value can be adjusted in your php.ini file.

提交回复
热议问题