无法设置PHP include_path
作者:互联网
我已经将所有文件上传到var / www / html和我的一个php文件中,我有这行:
require_once('libraries/stripe/init.php');
我的文件夹的结构列出这个:
www
-html/
-libraries
-> Stripe -> init.php
-register.php
我一直收到此错误消息:
Warning: require_once(libraries/Stripe/init.php): failed to open stream: No such file or directory in /var/www/html/register.php on line 116
Fatal error: require_once(): Failed opening required ‘libraries/Stripe/init.php’ (include_path=’.:/usr/share/php:/var/www/html/’) in /var/www/html/register.php on line 116
我的php.ini文件曾经是这样的
include_path= “.:/usr/local/php/pear/”
但基于这里的一些答案我改变了
include_path=’.:/usr/share/php:/var/www/html/’
但它不起作用!
编辑:在我的库文件夹中,我有一个名为index.php的文件,内容是:
<?php
header("Location: ../"); die();
解决方法:
我不会让图书馆的路径像这样:
require_once(__DIR__ . '/libraries/Stripe/init.php');
这将确保使用当前运行的脚本的绝对目录路径包含脚本.
更新
Failed opening required ‘/var/www/html/libraries/Stripe/init.php’
那么,文件就不存在;如果此文件是由其他工具生成的,例如作曲家,需要在新服务器上再次完成(或者理想情况下在每次部署时).
i think the problem is my Stripe folder is in “s” but I’m using capital “S”. is there anyway to make not case sensitive?
Linux下的文件系统默认区分大小写(甚至不确定是否可以更改),而不是Windows.确保始终使用大小写.
标签:ubuntu,php,path,include-path 来源: https://codeday.me/bug/20190528/1170088.html