Ich bin mir sicher, dass diese Frage oft gestellt wird, aber ich habe kein Problem. Ich verwende XAMPP, um das Zend-Framework zu konfigurieren.
XAMPP wird auf Port 8081 ausgeführt, da 80 von einem Windows-Prozess belegt ist, für den ich einen virtuellen Host verwenden muss, den ich mit folgendem Code in C:/xampp/apache/config/extra/httpd-vhosts.config
(oder C:/xampp/apache/conf/extra/httpd-vhosts.conf
in neueren Versionen) konfiguriere .
<VirtualHost *:80>
ServerName comm-app.local
DocumentRoot "C:/xampp/htdocs/CommunicationApp/public"
SetEnv APPLICATION_ENV "development"
<Directory "C:/xampp/htdocs/CommunicationApp/public"
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Aktualisieren Sie auch die Hosts-Datei mit 127.0.0.1 comm-app.local
und versuchen Sie, Apache neu zu starten, aber es wird ein Fehler angezeigt.
15:03:01 [Apache] Error: Apache shutdown unexpectedly.
15:03:01 [Apache] This may be due to a blocked port, missing dependencies,
15:03:01 [Apache] improper privileges, a crash, or a shutdown by another method.
15:03:01 [Apache] Press the Logs button to view error logs and check
15:03:01 [Apache] the Windows Event Viewer for more clues
15:03:01 [Apache] If you need more help, copy and post this
15:03:01 [Apache] entire log window on the forums