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

后端 未结 7 2318
暗喜
暗喜 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.

    0 讨论(0)
提交回复
热议问题