我开始玩Zend FrameWork,但我遇到了麻烦。我尝试按照超级指南From Zero To Zend Framework in 10 minutes,但它没有任何结果。
我也得到了那个好消息
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
... waiting apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
两次。
虽然我设法修复了that,但这就是我本地服务器的样子。
这就是我/etc/hosts
的样子。
127.0.0.1 localhost
127.0.0.1 prueba.local
127.0.1.1 dradis
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
而且,根据1,我的vhost配置应该如何。这是/sites-avaliable
,但符号链接到/sites-enabled
。
prueba.local
:
<VirtualHost *:80>
ServerName prueba.local
DocumentRoot /home/seba/solartekka/test/prueba/public
</VirtualHost>
/home/seba/solartekka/test/prueba
是我拥有项目的地方。
我已经完成了两天的战斗,我的精神被打破了。有没有人知道可能发生的事情?
我试图尽可能多地提供相关信息,但如果您需要更多信息,我很乐意提供。
谢谢!
答案 0 :(得分:1)
你应该查看apache logs消息文件,它们会给你一个提示:
tail /var/log/apache2/error.log
Zend库缺少频繁出现的问题。
尝试将此代码添加到您的vhost文件中:
<Directory "/home/seba/solartekka/test/prueba/public/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
Allow From all
</Directory>
不要忘记重启apache。
答案 1 :(得分:1)
有时候,我遇到了许可问题。作为测试,请尝试设置chmod 0777 public/index.php
。
此外,您可以尝试直接浏览http://prueba.local/index.php
。