我在Xbup上运行Ubuntu 12.04。我有一个php页面,其中包含了另一个文件,如include 'dbconfig.php'
。但每当我尝试打开页面时,我都会收到如下错误:
Warning: require(1): failed to open stream: No such file or directory in /opt/lampp/htdocs/index.php on line 2
Fatal error: require(): Failed opening required '1' (include_path='.:/opt/lampp/lib/php') in /opt/lampp/htdocs/index.php on line 2
我尝试过使用相对路径,完整路径和所有内容。我还仔细检查了dbconfig.php
IS与index.php
位于同一文件夹中的情况。我搜索了一下,我认为问题是由于“许可”问题,php无法打开dbconfig.php
。
我是ubuntu的新手,所以我不知道如何解决这个问题。有人可以帮帮我吗?
来自index.php
的代码如下:
<?php
include 'dbconfig.php';
?>