I'm trying to set up a new Zend project using Zend Server CE under OS X 10.6
First, I have downloaded and successfully installed Zend Server CE: opening http://localhost:10081
in my browser shows the dashboard, and everything seems to be working fine.
: Ben öğretici aşağıdaki yeni bir proje yarattı daha
$ cd /usr/local/zend/apache2/htdocs
$ /usr/local/zend/share/ZendFramework/bin/zf.sh create project quickstart
Proje hataları olmadan oluşturuldu.
Sonra ekledi
<VirtualHost quickstart.local:10088>
ServerName quickstart.local
DocumentRoot /usr/local/zend/apache2/htdocs/quickstart
SetEnv APPLICATION_ENV "development"
<Directory /usr/local/zend/apache2/htdocs/quickstart>
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
/usr/local/zend/apache2/conf/extra/httpd-vhosts.conf
dosya ve 127.0.0.1 quickstart.local
Benim /etc/hosts/
dosyasına giriş.
Son olarak, Zend Server CE ile birlikte Apache yeniden başlatılır.
But now, if I open http://quickstart.local:10088/ in my browser, I see this:
yerine varsayılan dizin görünümünün ben bekliyordum.
Ne bir eksik?
Teşekkürler.