-1

I made an web application using PHP and mySQL and i used XAMPP. I am on a LAN having 6 computers connected via wireless connection. I want to host my web application from my pc so that other pc can use that application.

Can you help me what to configure how to configure in my pc so that using just a single URL other computers can use my web application.

Thanks

Shadow
  • 33,525
  • 10
  • 51
  • 64

3 Answers3

0

On other computers you can just type the local IP of the PC that hosts the website in the browser URL field.

0

check the IP of the server and type in client computer browser the ip address of the server. like http://192.168.0.1 xampp already accessible through lan

Dreathlord
  • 46
  • 5
0
  1. Check your IP Address is pinging or not from client pc. If ping is ping server IP then move to step two.

    command> ping #Server ip address

  2. Go to your XAMPP control panel find config button in the row of xampp and click to httpd.conf file

  3. Search line which look like

     <Directory "C:/xampp/htdocs">
       Options Indexes FollowSymLinks Includes ExecCGI
       AllowOverride All
       Order allow,deny
       Allow from all
     </Directory>
    
  4. Restart all services from XAMPP control panel

For more batter information please follow below links

Accessing localhost (xampp) from another computer over LAN network - how to?

Set up xampp server on office lan

Community
  • 1
  • 1
Dharmendra Singh
  • 1,186
  • 12
  • 22