“没有指定输入文件。”安装Roundcube后

时间:2015-06-30 15:29:45

标签: php linux apache debian roundcube

在安装apache,php和phpmyadmin之后,我正在配置一个新的vps(Debian 7)。我现在正在尝试安装roundcube,但是当我尝试在线访问时,我会收到一条带有"No input file specified."消息的空白页面。

我在日志中遇到以下错误:

mod_fcgid: stderr: PHP Warning:  Unknown: failed to open stream: Operation not permitted in Unknown on line 0
mod_fcgid: stderr: PHP Warning:  Unknown: open_basedir restriction in effect. File(/usr/share/roundcube/index.php) is not within the allowed path(s): (/var/www/clients/client0/web1/web:/var/www/clients/client0/web1/private:/var/www/clients/client0/web1/tmp:/var/www/site.com/web:/srv/www/site.com/web:/usr/share/php5:/usr/share/php:/tmp:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin) in Unknown on line 0

我试图在open_basedir和apache的conf文件中禁用php.ini,但我仍然遇到此错误(我重新启动了apache)。也许open_basedir不是问题;权限,符号链接?

<小时/> 的的apache.conf:

# Those aliases do not work properly with several hosts on your apache server
# Uncomment them to use it or adapt them to your configuration
#    Alias /roundcube/program/js/tiny_mce/ /usr/share/tinymce/www/
#    Alias /roundcube /var/lib/roundcube

Alias /interfacewebmail /var/lib/roundcube

# Access to tinymce files
<Directory "/usr/share/tinymce/www/">
      Options Indexes MultiViews FollowSymLinks
      AllowOverride None
      Order allow,deny
      allow from all
</Directory>

<Directory /var/lib/roundcube/>
    Options +FollowSymLinks
    php_admin_value open_basedir none
    DirectoryIndex index.php

    <FilesMatch "\.php[345]?$">
    SetHandler fcgid-script
    </FilesMatch>

    FCGIWrapper /var/www/php-fcgi-scripts/web1/.php-fcgi-starter .php
    FCGIWrapper /var/www/php-fcgi-scripts/web1/.php-fcgi-starter .php3
    FCGIWrapper /var/www/php-fcgi-scripts/web1/.php-fcgi-starter .php4
    FCGIWrapper /var/www/php-fcgi-scripts/web1/.php-fcgi-starter .php5
    Options +ExecCGI

  # This is needed to parse /var/lib/roundcube/.htaccess. See its
  # content before setting AllowOverride to None.
  AllowOverride All
  order allow,deny
  allow from all
</Directory>

# Protecting basic directories:
<Directory /var/lib/roundcube/config>
        Options -FollowSymLinks
        AllowOverride None
</Directory>

<Directory /var/lib/roundcube/temp>
        Options -FollowSymLinks
        AllowOverride None
    Order allow,deny
    Deny from all
</Directory>

<Directory /var/lib/roundcube/logs>
        Options -FollowSymLinks
        AllowOverride None
    Order allow,deny
    Deny from all
</Directory>

1 个答案:

答案 0 :(得分:0)

线索在错误消息中

mod_fcgid: stderr: PHP Warning:  Unknown: open_basedir restriction in effect. 

File(/usr/share/roundcube/index.php) is not within the allowed path(s):

所以你需要做的是将圆形路径添加到&#34;允许&#34;路径

请参阅此有关如何执行PHP open_basedir broken in Apache but works in PHP at runtime

的信息

LE: 如果你改变了这个会很有帮助

php_admin_value open_basedir none

进入

php_admin_value open_basedir "/usr/share/roundcube/"