• 技术文章 >后端开发 >php教程

    解决:failed to open stream: No such file or directory in_PHP教程

    2016-07-13 10:57:41原创9949

    本教程来给各位同学介绍failed to open stream: No such file or directory in解决办法,有需要了解的朋友可进入参考。

    Warning: include_once(./include/main.inc.php) [function.include-once]: failed to open stream: failed to open stream: No such file or directory in

    Fatal error: main(): Failed opening required './Config.php' (include_path='.;c:php4pear') in D:wwwrootCoreConfig.php on line 13


    出现这个的问题是因为我们inlcude的路径不对了,只要我们把路径改对就可以了。

    Fatal error: main(): Failed opening required './Config.php' (include_path='.;c:php4pear') in D:wwwrootCoreConfig.php on line 13

    shopex主机问题描述

    Warning:
    require(/core/include_v5/adminCore.php) [function.require]: failed to open stream:
    No such file or directory in D:wwwrootbeisososhopadminindex.php on line 13
    Fatal error:
    require() [function.require]:
    Failed opening required "/core/include_v5/adminCore.php" (include_path=".;C:php5pear")


    三、shopex主机解决方案

    给D:和D:wwwroot 一个everyone可读权限,只在这两个位置加权限就可以了,不要附加到下一级目录!
    命令如下:
    cacls d: /e /g everyone:r
    cacls d:wwwroot /e /g everyone:r

    www.bkjia.comtruehttp://www.bkjia.com/PHPjc/632082.htmlTechArticle本教程来给各位同学介绍failed to open stream: No such file or directory in解决办法,有需要了解的朋友可进入参考。 Warning: include_once(./include/main.in...

    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    专题推荐:解决 failed open stream such file directory 教程 来给 各位 同学 介绍 f
    上一篇:php date()时间函数报错,时区问题解决 UTC PRC CST_PHP教程 下一篇:自己动手写 PHP MVC 框架(40节精讲/巨细/新人进阶必看)

    相关文章推荐

    • 一文解析PHP元转分的错误示范(附代码实例)• PHP+Socket系列之实现websocket聊天室• PHP+Socket系列之实现客户端与服务端数据传输• PHP+Socket系列之IO多路复用及实现web服务器• PHP socket学习:带你做个简单的socket服务器
    1/1

    PHP中文网