Going online (WAMP) is not visible
Solved
Raltard
-
Cyber17 -
Cyber17 -
Good evening, I have WAMP 3.0.6 on Win 10 X64 and the option to go online/offline is not there. I had it in version 2.2.
The options I have in the three at the bottom of the dropdown list are:
Start services;
Stop services;
Restart services;
I wanted to know if this is normal? Thank you.
The options I have in the three at the bottom of the dropdown list are:
Start services;
Stop services;
Restart services;
I wanted to know if this is normal? Thank you.
4 réponses
Right-click on the icon > "Wamp Settings" > "Menu Item: Online/Offline" then the button is displayed in the menu ;-)
Raltard
Thank you, I hadn't seen the menu. I have it now.
wayne
Thank you, man.
Cyber17
Hello, I can't find the button to add to the menu in the settings.
Hello,
Several leads:
- When you launch Wamp, do it as "administrator"
- If that doesn't work... it might be related to your virtual host...
you must have an issue with your httpd-vhost.conf file.
Note: If you don't have a virtual host... you need to create one.
Wamp now "forces" (or at least strongly encourages...) you to use them.
--
Sincerely,
Jordane
Several leads:
- When you launch Wamp, do it as "administrator"
- If that doesn't work... it might be related to your virtual host...
you must have an issue with your httpd-vhost.conf file.
Note: If you don't have a virtual host... you need to create one.
Wamp now "forces" (or at least strongly encourages...) you to use them.
--
Sincerely,
Jordane
Hello, thank you for your response. As an admin, it doesn’t work. I will try to check the httpd-vhost.conf file.
Re hello, here's what my httpd-vhosts.conf file contains:
# Virtual Hosts
#
<VirtualHost *:80>
ServerName localhost
ServerAlias localhost
DocumentRoot c:/wamp/www
<Directory "c:/wamp/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
#
# Virtual Hosts
#
<VirtualHost *:80>
ServerName localhost
ServerAlias localhost
DocumentRoot c:/wamp/www
<Directory "c:/wamp/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
#
You haven't created a VIRTUAL HOST apparently... however, as already mentioned..., WAMP "forces" (or at least strongly encourages...) you to use them.
NB: To post code... you need to use THE CODE TAGS: https://codes-sources.commentcamarche.net/faq/10686-le-nouveau-codes-sources-comment-ca-marche#balises-code
NB: To post code... you need to use THE CODE TAGS: https://codes-sources.commentcamarche.net/faq/10686-le-nouveau-codes-sources-comment-ca-marche#balises-code
Re hello, I added a host, here it is:
Then I went to c:/Windows/System32/drivers/etc/ and added (as admin) my host in the file then httpd.conf and restarted the WAMP services and still no "go online" option.
<VirtualHost *:80>
DocumentRoot c:/wamp/www/test/
ServerName test
ServerAlias www.test
DocumentRoot C:/wamp/www/test
<Directory "C:/wamp/www/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Require local
</Directory>
</VirtualHost>
Then I went to c:/Windows/System32/drivers/etc/ and added (as admin) my host in the file then httpd.conf and restarted the WAMP services and still no "go online" option.