Accessing Apache web server over LAN

jammy420

Adept
I am using WAMP server to run a local database CRM software. I want to access the database running on my PC from other machines in LAN. I am able to ping each other. I am able to access my shared folder from other PC. However when I try this \\ipaddress\c$ , I am prompted for a username/ password window. Though I am entering it correctly, I am getting access is denied error. not sure what is the issue.


upload_2017-6-26_21-41-29.png



And also when I try to access the server from browser, getting no permission error like below. Any help would be appreciated

upload_2017-6-26_21-46-6.png


@vivek.krishnan - any help on this?
 
[DOUBLEPOST=1498542965][/DOUBLEPOST]
Does your username have a space?
yeah , strange people. why they included a space, I don't know... will change it[DOUBLEPOST=1498543026][/DOUBLEPOST]
C://wamp/alias/phpmyadmin.conf > edit >

At the bottom
Code:
Allow from all
Allow from all

C://wamp/alias/Webgrind.conf> edit >
Code:
Allow from all
Allow from all
Edit and save.

Restart the process.

this is my phpmyadmin.conf file, and I couldnot find Webgrind.conf file at all

<Directory "c:/wamp64/apps/phpmyadmin4.6.4/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
<ifDefine APACHE24>
Require local
</ifDefine>
<ifDefine !APACHE24>
Order Deny,Allow
deny from all
Allow from localhost ::1 127.0.0.1
Allow from all
Allow from all

</ifDefine>[DOUBLEPOST=1498545750][/DOUBLEPOST]Allow from all
Allow from all

I did the same with httpd.conf after that "http://internal_ip_of_machine/wpress " works from the same machine. but still fails from remote machines.[DOUBLEPOST=1498548272][/DOUBLEPOST]https://stackoverflow.com/questions...e-local-network-users-to-access-my-wamp-sites

for WAMP 3.0 and above , need to edit the httpd-vhosts.conf as mentioned in the link. looks good as far as connecting from remote machines. will update with queries,if i have any issues with the application access[DOUBLEPOST=1498553301][/DOUBLEPOST]the current issue I am facing is, when I access from remote machine using my IP, I am able to access the login page, but when I move to next page, the url changes to localhost and obiviously the site is lost. what is the solution
 
Last edited:
It is something to do with general settings in wordpress. fellow user from the software forum (civicrm) I use helped me . great, completed the task ! thanks everyone for your time and help
 
Back
Top