no still not working.
in easyphp configuration there was an option to start apache and mysql as services which i ticked in.
I then got the following error message instead of nothing which I was getting before:
Apache:Can't install service: The system cannot find the file specified.....
This then runs off the screen so i cant see the end of the line and don't seem to be able to find the message in any of the log files.
Any ideas?
Main Topics
Browse All Topics





by: fiboPosted on 2007-09-10 at 02:06:46ID: 19859623
I had a similar fight and decided successfully to run on port :8080. Also went to Vista's firewall to allow esayphp.exe, apache.exe and mysql.
I am running easyphp.exe as administrator: not sure if this is really needed, but part of my desperate attempts to make it work.
To launch Apache with port :8080, here are some changes to httpd.conf (access it from easyphp's configuration menu for apache)
-----------------------
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the <VirtualHost>
# directive.
#
#Listen 3000
#Listen 12.34.56.78:80
Listen 127.0.0.1:8080
-------------------------
# Port: The port to which the standalone server listens. Certain firewall
# products must be configured before Apache can listen to a specific port.
# Other running httpd servers will also interfere with this port. Disable
# all firewall, security, and other services if you encounter problems.
# To help diagnose problems use the Windows NT command NETSTAT -a
#
Port 8080
-------------------------
Of course, you are aware that this is a development, not production system, because it is not inherently secure over the Internet.