PHP 7 和 apache 显示纯文本并且无法重新启动

PHP 7 和 apache 显示纯文本并且无法重新启动

我刚刚从 Windows 切换到 Ubuntu,并正在尝试让 php 7 和 Apache 运行。

我正在运行 php 7 和 apache 2.4.18

PHP 7.0.4-7ubuntu2.1 (cli) ( NTS )
Server version: Apache/2.4.18 (Ubuntu)

Apache localhost 显示“它起作用了!”页面,而任何其他带有 php 的页面都显示纯文本。

尝试重新启动服务(sudo service apache2 restart)后,我得到以下信息。

Job for apache2.service failed because the control process exited with error code. See "systemctl status apache2.service" and "journalctl -xe" for details.

“systemctl status apache2.service”返回,

May 31 11:11:12 mike-N53Jq apache2[4926]:  * The apache2 configtest failed.
May 31 11:11:12 mike-N53Jq apache2[4926]: Output of config test was:
May 31 11:11:12 mike-N53Jq apache2[4926]: [Tue May 31 11:11:12.775675 2016] [:crit] [pid 4936:tid 140137086609280] Apache is running a threa
May 31 11:11:12 mike-N53Jq apache2[4926]: AH00013: Pre-configuration failed
May 31 11:11:12 mike-N53Jq apache2[4926]: Action 'configtest' failed.
May 31 11:11:12 mike-N53Jq apache2[4926]: The Apache error log may have more information.
May 31 11:11:12 mike-N53Jq systemd[1]: apache2.service: Control process exited, code=exited status=1
May 31 11:11:12 mike-N53Jq systemd[1]: Failed to start LSB: Apache2 web server.
May 31 11:11:12 mike-N53Jq systemd[1]: apache2.service: Unit entered failed state.
May 31 11:11:12 mike-N53Jq systemd[1]: apache2.service: Failed with result 'exit-code'.

journalctl -xe 返回,

May 31 11:11:12 mike-N53Jq apache2[4926]: Output of config test was:
May 31 11:11:12 mike-N53Jq apache2[4926]: [Tue May 31 11:11:12.775675 2016] [:crit] [pid 4936:tid 140137086609280] Apache is running a threa
May 31 11:11:12 mike-N53Jq apache2[4926]: AH00013: Pre-configuration failed
May 31 11:11:12 mike-N53Jq apache2[4926]: Action 'configtest' failed.
May 31 11:11:12 mike-N53Jq apache2[4926]: The Apache error log may have more information.
May 31 11:11:12 mike-N53Jq systemd[1]: apache2.service: Control process exited, code=exited status=1
May 31 11:11:12 mike-N53Jq systemd[1]: Failed to start LSB: Apache2 web server.
-- Subject: Unit apache2.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit apache2.service has failed.
-- 
-- The result is failed.
May 31 11:11:12 mike-N53Jq systemd[1]: apache2.service: Unit entered failed state.
May 31 11:11:12 mike-N53Jq systemd[1]: apache2.service: Failed with result 'exit-code'.
May 31 11:11:12 mike-N53Jq sudo[4920]: pam_unix(sudo:session): session closed for user root
May 31 11:11:18 mike-N53Jq pkexec[4951]: pam_unix(polkit-1:session): session opened for user root by (uid=1000)
May 31 11:11:18 mike-N53Jq pkexec[4951]: pam_systemd(polkit-1:session): Cannot create session: Already running in a session
May 31 11:11:18 mike-N53Jq pkexec[4951]: mike: Executing command [USER=root] [TTY=unknown] [CWD=/home/mike] [COMMAND=/usr/lib/update-notifie
May 31 11:17:01 mike-N53Jq CRON[5011]: pam_unix(cron:session): session opened for user root by (uid=0)
May 31 11:17:01 mike-N53Jq CRON[5012]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
May 31 11:17:01 mike-N53Jq CRON[5011]: pam_unix(cron:session): session closed for user root

有人能建议接下来去哪里吗?这对我来说都很新鲜。

谢谢。

答案1

在终端中运行以下命令

sudo apt-get install libapache2-mod-php

答案2

sudo apt install php libapache2-mod-php
sudo apt install php7.0-mbstring
sudo a2dismod mpm_event
sudo a2enmod mpm_prefork
service apache2 restart

在那之后

gedit /etc/apache2/apache2.conf

添加以下行

包括 /etc/phpmyadmin/apache.conf

服务 apache2 重启

libapache2-mod-php 服务器端,HTML 嵌入式脚本语言(Apache 2 模块),所以我们必须添加这个

相关内容