dpdhsq0783 2017-01-09 04:10
浏览 170
已采纳

使用composer时init.php中的require_once路径错误

Hi friends this is my folder structure

googleauth
    -app
       --classes
           ---googleauth.php
       --init.php
   -vendor
     --autoload.php

I have given the following path in init.php

 require_once 'vendor/autoload.php';
 require_once 'classes/GoogleAuth.php';

then the error is shown as

Warning: require_once(vendor/autoload.php): failed to open stream: No such          
file or directory in C:\xampp\htdocs\tutorials\googleauth\app\init.php on     
line 5
Fatal error: require_once(): Failed opening required 'vendor/autoload.php'      
(include_path='C:\xampp\php\PEAR') in     
C:\xampp\htdocs\tutorials\googleauth\app\init.php on line 5

So how can I resolve it by giving the correct path for the file

  • 写回答

2条回答 默认 最新

  • drf21989 2017-01-09 04:13
    关注

    You have to use '../vendor/autoload.php' because the path is from the file you running it in.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 syri可视化不显示插入缺失
  • ¥30 运行软件卡死查看系统日志分析不出来
  • ¥15 C语言代码改正特征选择算法设计,贝叶斯决策,,设计分类器,远程操作代码修正一下
  • ¥15 String 类valuve指向的问题
  • ¥15 在ros2的iron版本进行编译时遇到如下问题
  • ¥18 vs用setup project打包项目实现安装完立即运行
  • ¥15 孟德尔随机化TwoSampleMR在线提取结局数据,遇到Error in check_reset(override_429)的问题
  • ¥15 ONNX转RKNN遇到问题
  • ¥60 以太网电缆未接通怎么处理
  • ¥15 关于超声图片进行放射组学的疑问
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部