Going online (WAMP) is not visible

Solved
Raltard -  
 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.

4 answers

  1. Mylano
     
    Right-click on the icon > "Wamp Settings" > "Menu Item: Online/Offline" then the button is displayed in the menu ;-)
    7
    1. Raltard
       
      Thank you, I hadn't seen the menu. I have it now.
      0
    2. wayne
       
      Thank you, man.
      0
    3. Cyber17
       
      Hello, I can't find the button to add to the menu in the settings.
      0
  2. jordane45 Posted messages 30427 Registration date   Status Moderator Last intervention   4 832
     
    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
    0
  3. Raltard
     
    Hello, thank you for your response. As an admin, it doesn’t work. I will try to check the httpd-vhost.conf file.
    0
  4. Raltard
     
    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>
    #
    0
    1. jordane45 Posted messages 30427 Registration date   Status Moderator Last intervention   4 832
       
      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
      0
      1. Raltard > jordane45 Posted messages 30427 Registration date   Status Moderator Last intervention  
         
        Re hello, I added a host, here it is:


        <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.
        2