मुझे यकीन है कि यह सवाल कई बार पूछा जा रहा है लेकिन मैं एक समस्या से नहीं जूझ रहा हूं। मैं XAMPP का उपयोग कर रहा हूं जहां मैं Zend फ्रेमवर्क कॉन्फ़िगर करता हूं।
XAMPP 8081 पोर्ट पर चल रहा है क्योंकि 80 पर कुछ विंडोज प्रक्रिया द्वारा कब्जा किया जा रहा है मुझे इसके लिए वर्चुअल होस्ट का उपयोग करने की आवश्यकता है जिसे मैं निम्नलिखित कोड में कॉन्फ़िगर करता हूंC:/xampp/apache/config/extra/httpd-vhosts.config
(या C:/xampp/apache/conf/extra/httpd-vhosts.conf
नई रिलीज़ में) के ।
<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>
और होस्ट फ़ाइल को भी अपडेट करें 127.0.0.1 comm-app.local
और अपाचे को फिर से शुरू करने की कोशिश करें लेकिन यह त्रुटि दिखा रहा है।
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