1

希望有人可以帮助我,我在尝试下载 php 文件时遇到了同样的问题。

我已经尝试了所有答案,但:

ln -s /etc/apache2/mods-available/php5.conf /etc/apache2/mods-enabled/php5.conf ln -s /etc/apache2/mods-available/php5.load /etc/apache2/mods-enabled /php5.load

当我尝试它们时,我无法创建符号链接文件存在,所以我想这一切都准备好了,其他人还有更多我可以尝试的东西,我是 linux 新手,我按照本指南进行了设置:http:// www.howtoforge.com/perfect-server-ubuntu-12.04-lts-apache2-bind-dovecot-ispconfig-3

奇怪的是 joomla 和 drupal 网站可以工作,但自己的 php 脚本却没有。

我已经尝试了此页面上的所有内容: ubuntu 上的 apache2 - php 文件正在下载 ,但它们都不起作用。

当我尝试运行此命令时: sudo a2enmod php 我得到,模块 php 不存在。我想我需要运行一个命令来安装它?如果是的话,请问是什么。

谢谢大家。

继承人要求的更多信息:

不确定 isp config 将每个网站的文件夹存储在哪里,但我连接到 ftp 站点并上传到 web 文件夹中,就像我为正在工作的 drupal 和 joomla 网站所做的那样

启用的网站:

/
000-apps.vhost@
000-default@
000-ispconfig.conf@
000-ispconfig.vhost@
100-analytics.cyberglide.co.uk.vhost@
100-cyberglide.co.uk.vhost@
100-hideandcollars.co.uk.vhost@
100-jubileeleather.co.uk.vhost@
100-rookselectrical.co.uk.vhost@
100-wolds-uniforms.co.uk.vhost@

所有网站都在工作(他们正在运行 joomla 或 drupal),但 www.jubileeleather.co.uk/index.php 必须放置一个 html 文件,直到我可以对其进行排序。

php脚本:

    <?php
    //Add required class and config files below
    require ('_class/cms.php');
    require ('config/db.php');

    //Get Required Page, if its not set call it the index
   $page = (isset($_GET['page'])) ? $_GET['page'] : 'index';

   //If the page is set as index
    if($page == 'index'){
    //Include Index
    require ('public/index.php');
    }

    //Else if the page is contact
    elseif ($page == 'contact') {
    //Include Contact
    require ('public/contact.php');

    //If the page is none of the above  
    } else {
    //Include Layout
    require ('public/layout.php');
    }
    ?>

我正在通过 ssh 使用腻子,我如何将文件中的内容复制到此处发布?您还需要哪些文件?再次感谢。

这是 jubileeleather v 主机文件的内容,不确定我在这里寻找什么:

AllowOverride None Order Deny,Allow Deny from all

DocumentRoot /var/www/jubileeleather.co.uk/web

ServerName jubileeleather.co.uk
ServerAlias www.jubileeleather.co.uk
ServerAdmin webmaster@jubileeleather.co.uk

ErrorLog /var/log/ispconfig/httpd/jubileeleather.co.uk/error.log

Alias /error/ "/var/www/jubileeleather.co.uk/web/error/"
ErrorDocument 400 /error/400.html
ErrorDocument 401 /error/401.html
ErrorDocument 403 /error/403.html
ErrorDocument 404 /error/404.html
ErrorDocument 405 /error/405.html
ErrorDocument 500 /error/500.html
ErrorDocument 502 /error/502.html
ErrorDocument 503 /error/503.html

<IfModule mod_ssl.c>
</IfModule>

<Directory /var/www/jubileeleather.co.uk/web>
    Options FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>
<Directory /var/www/clients/client3/web4/web>
    Options FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>



# suexec enabled
<IfModule mod_suexec.c>
  SuexecUserGroup web4 client3
</IfModule>
# Clear PHP settings of this website
<FilesMatch "\.ph(p3?|tml)$">
    SetHandler None
</FilesMatch>
# php as fast-cgi enabled
# For config options see: http://httpd.apache.org/mod_fcgid/mod/mod_fcgid.html
<IfModule mod_fcgid.c>
    IdleTimeout 300
    ProcessLifeTime 3600
    # MaxProcessCount 1000
    DefaultMinClassProcessCount 0
    DefaultMaxClassProcessCount 100
    IPCConnectTimeout 3
    IPCCommTimeout 360
    BusyTimeout 300
</IfModule>
<Directory /var/www/jubileeleather.co.uk/web>
    AddHandler fcgid-script .php .php3 .php4 .php5
    FCGIWrapper /var/www/php-fcgi-scripts/web4/.php-fcgi-starter .php
    Options +ExecCGI
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>
<Directory /var/www/clients/client3/web4/web>
    AddHandler fcgid-script .php .php3 .php4 .php5
    FCGIWrapper /var/www/php-fcgi-scripts/web4/.php-fcgi-starter .php
    Options +ExecCGI
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>


# add support for apache mpm_itk
<IfModule mpm_itk_module>
  AssignUserId web4 client3
</IfModule>

<IfModule mod_dav_fs.c>
  # Do not execute PHP files in webdav directory
  <Directory /var/www/clients/client3/web4/webdav>
    <FilesMatch "\.ph(p3?|tml)$">
      SetHandler None
    </FilesMatch>
  </Directory>
  DavLockDB /var/www/clients/client3/web4/tmp/DavLock
  # DO NOT REMOVE THE COMMENTS!
  # IF YOU REMOVE THEM, WEBDAV WILL NOT WORK ANYMORE!
  # WEBDAV BEGIN
  # WEBDAV END
</IfModule>

4

1 回答 1

0

除了在启用了 PHP 解析的目录中拥有自己的 PHP 文件(由于我有一段时间没有使用 Apache,我不能真正说出它是如何完成的),您应该检查您的脚本是否具有正确的扩展名(应该始终.php) 和脚本开始标签<?php- 不要使用短标签<?以避免将脚本移动到实时服务器时可能出现的问题。

由于您的文件被返回以供下载,我认为您的目录中没有启用 PHP 解析的脚本。发布您的 Apache 和 PHP 配置文件可以帮助我们识别问题。

于 2012-12-12T11:44:17.350 回答