PHP-PHP调用文件报错,用的是相对路径,路径是对的

发布于 2017-01-05 16:54:50 字数 1224 浏览 1364 评论 3

今天将一个文件整个从一个服务器个转移到另一个服务器中去,结果运行时就出现这种提示了。
原服务器中运行正常,没有报错。

PHP Warning:  include_once(./sina/sinadown.php): failed to open stream: No such file or directory in /opt/app/SinaWeb/down/GetdocEvent.php on line 3

Warning: include_once(./sina/sinadown.php): failed to open stream: No such file or directory in /opt/app/SinaWeb/down/GetdocEvent.php on line 3
PHP Warning: include_once(): Failed opening './sina/sinadown.php' for inclusion (include_path='.:/usr/local/php/lib/php') in /opt/app/SinaWeb/down/GetdocEvent.php on line 3

Warning: include_once(): Failed opening './sina/sinadown.php' for inclusion (include_path='.:/usr/local/php/lib/php') in /opt/app/SinaWeb/down/GetdocEvent.php on line 3
PHP Warning: include_once(./include/writelog.php): failed to open stream: No such file or directory in /opt/app/SinaWeb/down/GetdocEvent.php on line 4

Warning: include_once(./include/writelog.php): failed to open stream: No such file or directory in /opt/app/SinaWeb/down/GetdocEvent.php on line 4
PHP Warning: include_once(): Failed opening './include/writelog.php' for inclusion (include_path='.:/usr/local/php/lib/php') in /opt/app/SinaWeb/down/GetdocEvent.php on line 4

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

想挽留 2017-07-21 01:39:07

nginx 配置节点中,nginx.conf server 节点的 root 有个指向根目录的东西,你如果是.(点),它好像默认就是在那个文件夹在拼接上路径查找。

晚风撩人 2017-03-19 09:50:39

检查一下你的新服务器上文件的权限够不够

对文件的读写执行权限

灵芸 2017-01-31 22:30:28

请试试:

include_once(dirname(__FILE__).'/include/writelog.php');

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文