Php 在apache服务器中运行Strace后,没有这样的文件或目录

Php 在apache服务器中运行Strace后,没有这样的文件或目录,php,apache,joomla3.0,Php,Apache,Joomla3.0,我在我的网站上使用Joomla 3.2,同时在ApacheServe中运行strace,如下所示 strace php index.php 2>&1 | grep 'write\|access' 我得到以下详细信息列表(其中很少) 它没有显示这样的文件或目录。但网站运行平稳。我的客户不想列出这些细节。任何人都可以看一下。Joomla有一个用于安装的web界面,位于“${pwd}/installation/index.php”。Joomla在引导时做的第一件事是检查该文件是否存在,

我在我的网站上使用Joomla 3.2,同时在ApacheServe中运行strace,如下所示

strace php index.php 2>&1 | grep 'write\|access'
我得到以下详细信息列表(其中很少)


它没有显示这样的文件或目录。但网站运行平稳。我的客户不想列出这些细节。任何人都可以看一下。

Joomla有一个用于安装的web界面,位于
“${pwd}/installation/index.php”
。Joomla在引导时做的第一件事是检查该文件是否存在,如果存在,则运行安装。安装完成后,该文件将被删除,但检查Joomla是否需要安装的检查仍然存在。所以,

<?php
if (file_exists('installation/index.php')) {
   include 'installation/index.php';
   exit;
}
// rest of program.

我们已在安装Joomla时删除了安装文件夹。你能告诉我怎么才能把这些拿走吗checks@DelphinSam就像我说的:这不值得麻烦,如果你想做的只是确保它不会出现在调试程序中,比如
strace
strace
不是用于确定性能的程序,而是用于调试问题的程序。这不是问题。
<?php
if (file_exists('installation/index.php')) {
   include 'installation/index.php';
   exit;
}
// rest of program.