dongyi7901 2016-05-06 21:48
浏览 53
已采纳

apache无法运行任何php [关闭]

I've installed an apache server on my raspberry pi and everything seems to be running fine unless I try to serve php.

/var/www/html/index.html serves fine
/var/www/html/foo/index/index.html serves fines

But if I add index.php, let's say :

<?php echo "hello world"; ?>

I get 403 -Forbbiden by accessing /var/www/html but I can still access /var/www/html/foo/index.html (DirectoryIndex set to .php .html .htm).

And if I run $php index.php : hello world

So, it does can serves .html, it can run .php but it cannot serve .php.

How can I fix this ? I found many solutions but none worked for me.

Note : I access the sites from the LAN. Server OS (uname -a) : Linux raspbian-AH 4.1.19-v7+ #858 SMP Tue Mar 15 15:56:00 GMT 2016 armv7l GNU/Linux

As stated in the comments, we could easily deduce module is not loaded but I here it is :

pi@raspbian-AH:/etc/apache2/mods-available $ cat php5.conf 
<FilesMatch ".+\.ph(p[345]?|t|tml)$">
    SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch ".+\.phps$">
    SetHandler application/x-httpd-php-source
    # Deny access to raw php sources by default
    # To re-enable it's recommended to enable access to the files
    # only in specific virtual host or directory
    Require all denied
</FilesMatch>
# Deny access to files without filename (e.g. '.php')
<FilesMatch "^\.ph(p[345]?|t|tml|ps)$">
    Require all denied
</FilesMatch>

# Running PHP scripts in user directories is disabled by default
# 
# To re-enable PHP in user directories comment the following lines
# (from <IfModule ...> to </IfModule>.) Do NOT set it to On as it
# prevents .htaccess files from disabling it.
<IfModule mod_userdir.c>
    <Directory /home/*/public_html>
        php_admin_flag engine Off
    </Directory>
</IfModule>

and the php5.load:

pi@raspbian-AH:/etc/apache2/mods-available $ cat php5.load
LoadModule php5_module /usr/lib/apache2/modules/libphp5.so
  • 写回答

1条回答 默认 最新

  • douqian1835 2016-05-07 00:24
    关注

    Thanks to dan08, I found out my set up was messed up is some way. So rather than to pinpoint the problem I purged everything and install it anew. There wasn't anything to save anyway.

    So the solution was :

    sudo apt-get purge apache2 php5 libapache2-mod-php5
    sudo apt-get install apache2 php5 libapache2-mod-php5
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效