Posted by:
toumimi
(---.222.115-78.rev.gaoland.net)
Quote
<VirtualHost *:80>
ServerName fudge.com
DocumentRoot C:/wamp/www/fudge
ErrorLog C:/wamp/www/fudge.com/logs/error.log
CustomLog C:/wamp/www/fudge.com/logs/access.log common
</VirtualHost>
ErrorLog is used to set where errors will be logged (default wamp/logs/php_errors.log).
To get an error file per website (which is a good pratice), we indicate that we want to save errors in our project folder. So, if your folder is fudge (set in DocumentRoot then, don't change the folder in other path (ErrorLog, CustomLog), and I think you have to manually create logs folder into your projects folder.
It should be :
<VirtualHost *:80>
ServerName fudge.com
DocumentRoot C:/wamp/www/fudge
ErrorLog C:/wamp/www/fudge/logs/error.log
CustomLog C:/wamp/www/fudge/logs/access.log common
</VirtualHost>
Then, if you get this error in wamp, problem is that Apache service is not started.
So, go into wamp menu -> Apache -> Service -> Start Service.
If you could not, then check apache error log, but since it would be a config error, you shouldn't see it

When Apache is started, try to open your projects from ther servername
Example : Type 'http://fudge.com/' to open 'C:/wamp/www/fudge/index.php'
Note that for each modification in http_vhosts file you MUST restart Apache service.
If you can see your index page then you can try to put wamp online.
I'm going to sleep and hope that you will success in putting wamp online

Florian
WampServer Patch (
Screenshots)
Topic EN :
www.wampserver.comTopic FR :
www.wampserver.com