I have followed alot of advice online and still cant seem to get my wordpress site to be accessible online.
In my httpd.conf I have set the following:
#1-
# onlineoffline tag - don't remove
Require all granted
#2-
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#
Listen 80
Then in the website conf file I have something like:
Alias /MyTestWebsite/ "C:/Users/myUser/Google Drive/Work/Me/Wordpress/"
<Directory "C:/Users/myUser/Google Drive/Work/Me/Wordpress/">
Options Indexes FollowSymLinks
AllowOverride all
Require all granted
</Directory>
When i access the site locally it works fine. When i access the site using my IP (192.168.0.2/MyTestWebsite/) on my local machine this also works fine. However when i type in the laptop 192.168.0.2/MyTestWebsite/ it just times out. If i enable port 80 on the firewall (which I dont really like doing at all) then I just get a Not Found error.
When i ping 192.168.0.2 from the laptop, it pings fine. Does anyone have any ideas here as to what else I can try here? Are there any other easier ways to set this up I have been at this for a while now!?
Thank you :)