Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: dover (---.lightspeed.tukrga.sbcglobal.net)
Date: April 29, 2015 07:08PM

I have done everything on [forum.wampserver.com] and [forum.wampserver.com]. Still there is nothing listed under "Your Virtual Hosts" only under "Your Projects". Help!

1 - Windows version 8.1... 64 bit
2 - Version WampServer 2.5...64 bit
3 - Apache Version 2.4.9
4 - PHP Version 5.5.12
5 - MySQL Version 5.6.17
6 - What color is the WampServer icon (in the notification area of the taskbar) green

7-

127.0.0.1 localhost
127.0.0.1 boonelogging

::1 localhost
::1 boonelogging



8 - Do you have access to localhost (Homepage WampServer)?...yes

9 - Do you have access to phpMyAdmin? yes

10 - If you refer to an error message, please include the EXACT wording of the error in your post...NA

11 - If you use an Antivirus and / or Firewall, please include the names of these...Windows firewall/Norton Anitvirus

12 - What is the full path to the installation of WampServer ...C:\wamp

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: RiggsFolly (---.as43234.net)
Date: April 29, 2015 08:44PM

Please show your httpd-vhosts.conf file

Also can you check that you did these steps mentioned in the document you say you read

- Make a backup of the \wamp\wampmanager.tpl file, just in case you make a mistake, its a very important file.
- Edit the \wamp\wampmanager.tpl
- Find this parameter ';WAMPPROJECTSUBMENU', its in the '[Menu.Left]' section.
- Add this new parameter ';WAMPVHOSTSUBMENU' either before or after the ';WAMPPROJECTSUBMENU' parameter.
- Save the file.
- Now left click the wampmanager icon, and select 'Refresh'. If this does not add the menu, 'exit' and restart wampmanager.

---------------------------------------------------------------------------------------------
(Windows 10 Pro 64bit) (Wampserver 3.3.4 64bit) Aestan Tray Menu 3.2.5.4
<Apache versions MULTIPE> <PHP versions MULTIPLE> <MySQL Versions MULTIPLE>
<MariaDB versions MULTIPLE> <phpMyAdmin versions MULTIPLE> <MySQL Workbench 8.0.23>

Read The Manuals Apache -- MySQL -- PHP -- phpMyAdmin
Get your Apache/MySQL/mariaDB/PHP ADDONs here from the WAMPServer alternate Repo
-X-X-X- Backup your databases regularly Here is How dont regret it later! Yes even when developing -X-X-X-

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: dover (---.lightspeed.tukrga.sbcglobal.net)
Date: April 29, 2015 09:37PM

Have done it. I have the "Your Virtual Hosts' heading but nothing listed under it.

[Menu.Left]
;WAMPMENULEFTSTART
Type: separator; Caption: "Powered by Alter Way"
Type: item; Caption: "${w_localhost}"; Action: run; FileName: "${c_navigator}"; Parameters: "[localhost];; Glyph: 5
;WAMPPROJECTSUBMENU ;WAMPVHOSTSUBMENU

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: RiggsFolly (---.as43234.net)
Date: April 29, 2015 11:48PM

Try putting in on a seperate line.

---------------------------------------------------------------------------------------------
(Windows 10 Pro 64bit) (Wampserver 3.3.4 64bit) Aestan Tray Menu 3.2.5.4
<Apache versions MULTIPE> <PHP versions MULTIPLE> <MySQL Versions MULTIPLE>
<MariaDB versions MULTIPLE> <phpMyAdmin versions MULTIPLE> <MySQL Workbench 8.0.23>

Read The Manuals Apache -- MySQL -- PHP -- phpMyAdmin
Get your Apache/MySQL/mariaDB/PHP ADDONs here from the WAMPServer alternate Repo
-X-X-X- Backup your databases regularly Here is How dont regret it later! Yes even when developing -X-X-X-

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: dover (---.lightspeed.tukrga.sbcglobal.net)
Date: April 30, 2015 01:03AM

still nothing

[Menu.Left]
;WAMPMENULEFTSTART
Type: separator; Caption: "Powered by Alter Way"
Type: item; Caption: "${w_localhost}"; Action: run; FileName: "${c_navigator}"; Parameters: "[localhost];; Glyph: 5
;WAMPPROJECTSUBMENU
;WAMPVHOSTSUBMENU

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: RiggsFolly (---.as43234.net)
Date: April 30, 2015 10:03AM

Ok, in that case you had better show your httpd-vhost.conf file as well.

---------------------------------------------------------------------------------------------
(Windows 10 Pro 64bit) (Wampserver 3.3.4 64bit) Aestan Tray Menu 3.2.5.4
<Apache versions MULTIPE> <PHP versions MULTIPLE> <MySQL Versions MULTIPLE>
<MariaDB versions MULTIPLE> <phpMyAdmin versions MULTIPLE> <MySQL Workbench 8.0.23>

Read The Manuals Apache -- MySQL -- PHP -- phpMyAdmin
Get your Apache/MySQL/mariaDB/PHP ADDONs here from the WAMPServer alternate Repo
-X-X-X- Backup your databases regularly Here is How dont regret it later! Yes even when developing -X-X-X-

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: dover (---.lightspeed.tukrga.sbcglobal.net)
Date: April 30, 2015 03:43PM

Thanks RiggsFolly for all your time on this...you're are a patient person!! I'm getting nervous now, I just know that after all this back and forth, you will find some dumb thing that I have overlooked, haha!!! But my happiness to have this solved so I can move on will far outweigh my embarrassment!!!

# Virtual Hosts
#
# Required modules: mod_log_config

# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:[httpd.apache.org];
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
<VirtualHost *:80>
DocumentRoot "c:/wamp/www"
ServerName localhost
ServerAlias localhost
<Directory "c:/wamp/www">
AllowOverride All
Require local
</Directory>
</VirtualHost>

<VirtualHost *:80>
DocumentRoot "c:/wamp/www/boonelogging"
ServerName boonelogging
ServerAlias boonelogging
<Directory "c:/wamp/www/boonelogging">
AllowOverride All
Require local
</Directory>
</VirtualHost>

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: RiggsFolly (---.as43234.net)
Date: April 30, 2015 04:10PM

Tell me,

1. do you see a Your Projects menu when you left click on the W icon?
2. or are you looking for a MyProjects list on the homepage?

---------------------------------------------------------------------------------------------
(Windows 10 Pro 64bit) (Wampserver 3.3.4 64bit) Aestan Tray Menu 3.2.5.4
<Apache versions MULTIPE> <PHP versions MULTIPLE> <MySQL Versions MULTIPLE>
<MariaDB versions MULTIPLE> <phpMyAdmin versions MULTIPLE> <MySQL Workbench 8.0.23>

Read The Manuals Apache -- MySQL -- PHP -- phpMyAdmin
Get your Apache/MySQL/mariaDB/PHP ADDONs here from the WAMPServer alternate Repo
-X-X-X- Backup your databases regularly Here is How dont regret it later! Yes even when developing -X-X-X-

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: dover (---.lightspeed.tukrga.sbcglobal.net)
Date: April 30, 2015 04:46PM

1.When I left click on W icon I see both My Projects and My Virtual Hosts with the sites listed out beside each of them when I hover.

2.Yes,I was looking on the homepage for Your Virtual Hosts. On the homepage, I have Your Projects with all my sites listed. I also have Your Virtual Hosts with nothing under it.

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: dover (---.lightspeed.tukrga.sbcglobal.net)
Date: April 30, 2015 08:12PM

Also, if I try to open a site from the My Projects through the W icon I get the message "This Webpage is not available" but I can open the Boonelogging webpage from that menu. However, on the homepage, I can open all the sites under Your Projects.

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: dover (---.lightspeed.tukrga.sbcglobal.net)
Date: May 05, 2015 03:30AM

Any further thoughts on my issue?

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: RiggsFolly (---.as43234.net)
Date: May 05, 2015 01:14PM

It sounds like you have not put the domain names into hosts file!

---------------------------------------------------------------------------------------------
(Windows 10 Pro 64bit) (Wampserver 3.3.4 64bit) Aestan Tray Menu 3.2.5.4
<Apache versions MULTIPE> <PHP versions MULTIPLE> <MySQL Versions MULTIPLE>
<MariaDB versions MULTIPLE> <phpMyAdmin versions MULTIPLE> <MySQL Workbench 8.0.23>

Read The Manuals Apache -- MySQL -- PHP -- phpMyAdmin
Get your Apache/MySQL/mariaDB/PHP ADDONs here from the WAMPServer alternate Repo
-X-X-X- Backup your databases regularly Here is How dont regret it later! Yes even when developing -X-X-X-

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: dover (---.lightspeed.tukrga.sbcglobal.net)
Date: May 05, 2015 02:05PM

Well, I have only put the boonelogging domain name into hosts file but even that one does not show up on the homepage under "your virtual hosts". It does show up when I click on the W icon and hover on the "my virtual hosts".

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: dover (---.lightspeed.tukrga.sbcglobal.net)
Date: May 06, 2015 02:43PM

ok, I will give up on having my websites listed under "your virtual hosts"on homepage since they will be listed with the W icon IF YOU CONFIRM that having them listed there suffices.

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: RiggsFolly (---.as43234.net)
Date: May 06, 2015 03:14PM

To be honest, once you get used to the names you give your Virtual hosts, like me, you wont use either of the menus. You will just key the domain name into the browsers address bar.

---------------------------------------------------------------------------------------------
(Windows 10 Pro 64bit) (Wampserver 3.3.4 64bit) Aestan Tray Menu 3.2.5.4
<Apache versions MULTIPE> <PHP versions MULTIPLE> <MySQL Versions MULTIPLE>
<MariaDB versions MULTIPLE> <phpMyAdmin versions MULTIPLE> <MySQL Workbench 8.0.23>

Read The Manuals Apache -- MySQL -- PHP -- phpMyAdmin
Get your Apache/MySQL/mariaDB/PHP ADDONs here from the WAMPServer alternate Repo
-X-X-X- Backup your databases regularly Here is How dont regret it later! Yes even when developing -X-X-X-

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: dover (---.lightspeed.tukrga.sbcglobal.net)
Date: May 06, 2015 03:34PM

Thank you...I'll go with that! Do still wonder why it doesn't show up on the homepage but thank you for all your help!!

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: RiggsFolly (---.as43234.net)
Date: May 06, 2015 03:40PM

Did you ever upgrade to WAMPServer 2.5.16 I know it works on that version

[forum.wampserver.com]

This is just a unzip and copy over the top of the \wamp folder rather than an official install.

---------------------------------------------------------------------------------------------
(Windows 10 Pro 64bit) (Wampserver 3.3.4 64bit) Aestan Tray Menu 3.2.5.4
<Apache versions MULTIPE> <PHP versions MULTIPLE> <MySQL Versions MULTIPLE>
<MariaDB versions MULTIPLE> <phpMyAdmin versions MULTIPLE> <MySQL Workbench 8.0.23>

Read The Manuals Apache -- MySQL -- PHP -- phpMyAdmin
Get your Apache/MySQL/mariaDB/PHP ADDONs here from the WAMPServer alternate Repo
-X-X-X- Backup your databases regularly Here is How dont regret it later! Yes even when developing -X-X-X-

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: dover (---.lightspeed.tukrga.sbcglobal.net)
Date: May 06, 2015 08:45PM

Thanks, I will surely keep that in mind. For now, all my sites work perfectly from the W icon, I'll just stick with it as is.

BTW: I really appreciate your all your help and love WAMP! What an amazing free service!!

Options: ReplyQuote
Re: Nothing listed under"Your Virtual Hosts" after careful setup
Posted by: RiggsFolly (---.as43234.net)
Date: May 06, 2015 08:49PM

Youi are welcome.

Once you understand it, there is no substitute.

---------------------------------------------------------------------------------------------
(Windows 10 Pro 64bit) (Wampserver 3.3.4 64bit) Aestan Tray Menu 3.2.5.4
<Apache versions MULTIPE> <PHP versions MULTIPLE> <MySQL Versions MULTIPLE>
<MariaDB versions MULTIPLE> <phpMyAdmin versions MULTIPLE> <MySQL Workbench 8.0.23>

Read The Manuals Apache -- MySQL -- PHP -- phpMyAdmin
Get your Apache/MySQL/mariaDB/PHP ADDONs here from the WAMPServer alternate Repo
-X-X-X- Backup your databases regularly Here is How dont regret it later! Yes even when developing -X-X-X-

Options: ReplyQuote


Sorry, only registered users may post in this forum.