我嘗試在沒有 gui 的 ubuntu 伺服器上測試我的 php 安裝。因此我遵循第三條LAMP 的使用方法(!)。這包括安裝 php5 等。和
sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt
然後將 PHP 加入目錄索引。
sudo nano /etc/apache2/mods-enabled/dir.conf
所以該文件是:
<IfModule mod_dir.c>
DirectoryIndex index.php index.html index.cgi index.pl index.php index.xhtml index.htm
</IfModule>
/var/www/info.php
我有這樣的文件:
<?php
phpinfo();
?>
當我嘗試使用以下命令訪問另一台電腦上的頁面時,沒有輸出
http://hostname/info.php
index.html
給我看'有用!,但/var/log/apache2/error.log
顯示錯誤:
[..date..] [mpm_prefork:notice] [pid 13057] AH00163: Apache/2.4.6 (Ubuntu) SVN/1.7.9 PHP/5.5.3-1ubuntu2.1 mod_perl/2.0.8 Perl/v5.14.2 configured -- resuming normal operations
[..date..] [core:notice] [pid 13057] AH00094: Command line: '/usr/sbin/apache2'
[..date..] [:error] [pid 13064] [client 192.168.x.n:59821] PHP Parse error: syntax error, unexpected '<' in /var/www/info.php on line 3
[..date..] [:error] [pid 13065] [client 192.168.x.n:59822] script '/var/www/index.php' not found or unable to stat
x和n是數字,n是嘗試存取該頁面的客戶端的IP。
cat /var/www/info.php 的輸出
<?php
<h3 align="center">"Awesomeness has no charge" - Po the Panda</h3> <-- here is the error...ok, thx.
phpinfo();
?>
和
$ ls -la /var/www/info.php
-rw-r--r-- 1 root root 86 Feb 1 23:33 /var/www/info.php
答案1
錯誤在 info.php 中:
<?php
<h3 align="center">"Awesomeness has no charge" - Po the Panda</h3> <-- here is the error...ok, thx.
phpinfo();
?>
透過刪除該行
<h3 align="center">"Awesomeness has no charge" - Po the Panda</h3>
一切都如預期。 info.php 現在是(如許多文件中所示..)
<?php
phpinfo();
?>