Hello all,
I can access my WAMP server from another computer from LAN using my system's IP with default port 80.
However I couldn't access the projects (which I can access in local system without any problem) and phpmyadmin. I've placed my projects under traditional "C:\wamp64\www" folder. I've configured virtual hosts file too. Please find below details.
I'm using,
Windows 7, 64 bit OS
WAMP 3.0.4 64 bit
Apache 2.4.18 - PHP 5.6.19 - MySQL 5.7.11
PHP 5.6.19 for CLI (Command-Line Interface)
And the configuration files are,
windows hosts file
C:\Windows\System32\drivers\etc\hosts
# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost
127.0.0.1 localhost
127.0.0.1 moodle
127.0.0.1 osticket
127.0.0.1 moodle_original
http-vhosts.conf file: C:\wamp64\bin\apache\apache2.4.18\conf\extra\httpd-vhosts.conf
#
# Virtual Hosts
#
<VirtualHost *:80>
ServerName localhost
DocumentRoot c:/wamp64/www
<Directory "c:/wamp64/www/">
Options +Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
The below virtualhost entry has been deleted as per the suggestion of RiggsFolly in this post (http://forum.wampserver.com/read.php?2,143196). Previously I had the below virtual host entry for moodle project.
<VirtualHost *:80>
ServerName moodle
DocumentRoot c:/wamp64/www/moodle
<Directory "c:/wamp64/www/moodle">
Options +Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
phpmyadmin configuration file: C:\wamp64\alias\phpmyadmin.conf
Alias /phpmyadmin "c:/wamp64/apps/phpmyadmin4.5.5.1/"
<Directory "c:/wamp64/apps/phpmyadmin4.5.5.1/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
<ifDefine APACHE24>
Require local
</ifDefine>
<ifDefine !APACHE24>
Allow from all
# Deny from all
# Allow from localhost ::1 127.0.0.1
</ifDefine>
# To import big file you can increase values
php_admin_value upload_max_filesize 128M
php_admin_value post_max_size 128M
php_admin_value max_execution_time 360
php_admin_value max_input_time 360
</Directory>
How shall I proceed further.
Thank you.
I can access my WAMP server from another computer from LAN using my system's IP with default port 80.
However I couldn't access the projects (which I can access in local system without any problem) and phpmyadmin. I've placed my projects under traditional "C:\wamp64\www" folder. I've configured virtual hosts file too. Please find below details.
I'm using,
Windows 7, 64 bit OS
WAMP 3.0.4 64 bit
Apache 2.4.18 - PHP 5.6.19 - MySQL 5.7.11
PHP 5.6.19 for CLI (Command-Line Interface)
And the configuration files are,
windows hosts file
C:\Windows\System32\drivers\etc\hosts
# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost
127.0.0.1 localhost
127.0.0.1 moodle
127.0.0.1 osticket
127.0.0.1 moodle_original
http-vhosts.conf file: C:\wamp64\bin\apache\apache2.4.18\conf\extra\httpd-vhosts.conf
#
# Virtual Hosts
#
<VirtualHost *:80>
ServerName localhost
DocumentRoot c:/wamp64/www
<Directory "c:/wamp64/www/">
Options +Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
The below virtualhost entry has been deleted as per the suggestion of RiggsFolly in this post (http://forum.wampserver.com/read.php?2,143196). Previously I had the below virtual host entry for moodle project.
<VirtualHost *:80>
ServerName moodle
DocumentRoot c:/wamp64/www/moodle
<Directory "c:/wamp64/www/moodle">
Options +Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
phpmyadmin configuration file: C:\wamp64\alias\phpmyadmin.conf
Alias /phpmyadmin "c:/wamp64/apps/phpmyadmin4.5.5.1/"
<Directory "c:/wamp64/apps/phpmyadmin4.5.5.1/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
<ifDefine APACHE24>
Require local
</ifDefine>
<ifDefine !APACHE24>
Allow from all
# Deny from all
# Allow from localhost ::1 127.0.0.1
</ifDefine>
# To import big file you can increase values
php_admin_value upload_max_filesize 128M
php_admin_value post_max_size 128M
php_admin_value max_execution_time 360
php_admin_value max_input_time 360
</Directory>
How shall I proceed further.
Thank you.