A web application is hosted in a local computer on WampServer 1.7.3. How can access the database from another computer via LAN.
How to Access database via WampServer 1.7.3 from another Computer in A LAN?
975 Views Asked by Jithin Kuriakose At
1
There are 1 best solutions below
Related Questions in PHP
- php Variable name must change in for loop
- register_shutdown_function is not getting called
- Query returning zero rows despite entries existing
- Retrieving *number* pages by page id
- Automatically closing tags in form input?
- How to resize images with PHP PARSE SDK
- how to send email from localhost using codeigniter?
- Mariadb max Error while sending QUERY packet PID
- Multiusers login redirect different page in php
- Imaginary folder when I use "DirectoryIterator" in PHP?
- CodeIgniter + XDebug: debug only working in the main controller, index() function
- PHP script timeout when I use sleep()
- posting javascript populated form to another php page
- AJAX PHP - Reload div after submit
- PHP : How can I check Array in array?
Related Questions in NETWORKING
- kernel module does not print packet info
- Packet drops in multicast when multiple instance of listner are running
- Timing packets on a traffic server
- How to use Espresso Idling Resource for network calls
- Dummynet does not match on flows
- Sending a notification from OS X to iOS
- Swift ios viewDidLoad or viewDidAppear
- Update player list on all clients on new connection
- Issues regarding multiplayer networking: input
- nmap does not show all open ports
- Getting and Sending Data between a Server and Client
- Read file from local PC from network deployed app to InputStream
- Does iOS block a URL if we couldn't connect to the URL for 'n' times?
- Is Socket.Available guaranteed to throw a SocketException on disconnect?
- android out of cell service
Related Questions in WAMPSERVER
- php form does not insert into database
- Wamp: The configuration file contains a syntax error on line 24
- How to access WAMP Server form everywhere?
- Fatal error: Call to undefined function json_encode()
- ajax request not working in localhost wampserver
- Running php file asks for download instead of executing in apache 2.5?
- Check constraint with MySQL
- localhost is not working in wamp server
- Wamp is on but showing 404 Not Found not able to access any project
- Setting gettext to work with wamp
- Change browser/system default localhost port (80) to custom
- MySQL server has gone away in wampserver
- Using a cookie as a variable in a Switch statement in PHP
- WAMP crashed after computer shutted down
- How to access localhost from different network computer using wamp?
Related Questions in LAN
- VirtualBox machine - Set to access LAN only
- using Visual Basic 2013 and simple tcp client/server to implement lan game
- Failed to authenticate with proxy - Android Emulator
- How to know fast if another computer is accesible in AS3 (Adobe Air)
- Can I connect to websocket through network IP Address?
- TCP Messenger (LAN) Application
- Is it possible to get information as byte (or text( variable in the WiFi?
- Accessing lamp container over lan using Kitematic
- LAN/offline alternatives to PubNub?
- Making an already used URL go to a lan website
- How to configure phabricator with a bare domain url?
- How do you publish an ASP.net MVC application from Visual Studio 2013 to your local network?
- How to use server IP as proxy
- Run application on desktop and display to Smart Tv(s) over LAN
- Change WAMP server url on LAN
Related Questions in WAMP-PROTOCOL
- Possible to transmit files using Crossbar.io and WAMP?
- CFNetwork SSLHandshake failed (-9807) in swamp connection
- Autobahn | Python: Subscription no longer triggering handler when SubscriptionOptions are provided
- many callees with the same set of functions in crossbar.io
- HTTP 502 bad gateway c# with wamp on poloniex
- PubSub: Recommended way to save messages using Autobahn Python/WAMP
- Failed to receive push notification when application is running on the background or unused in a long time
- WAMP Crossbar.io client and server
- Running Flask and Autobahn WAMP Server on the same port
- WampSharp authentication
- Using Lets Encrypt SSL certificates with crossbar WAMP router (0.13)
- Unable to connect to WAMP router on the client side of my application
- WAMP support for ws4py / CherryPy
- WAMP Protocol - Scaling out routers on multiple machines
- How to Access database via WampServer 1.7.3 from another Computer in A LAN?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Step 1
First you need to set up the WAMP service on your server and on the required services. And make sure that your WAMP server is online and it’s running on your browser using http://localhot:8081/ (I have given a fixed port number 8081 to my WAMP server). For more information please refer to the WAMP setup instruction at this URL:http://www.bulletprooftemplates.com/how-to-install-wamp-20.
To run the WAMP Apache server on your specified port, do the following. Go in the\wamp\bin\apache\Apache2.2.11\conf\httpd.conf file and search for “#Listen” and then change the port from 80 to 8081 and in that case, your URL will behttp://localhost:8081/. Like below:
Hide Copy Code
Listen 12.34.56.78:80 Listen 192.168.1.154:8081
Step 2
Now make the WMAP Server accessible in the LAN or WAN, you have to get\wamp\bin\apache\Apache2.2.11\conf\httpd.conf and open it and find the following code:
Hide Copy Code
AllowOverride None Options None Order allow,deny Deny from all
And change the above code to:
Hide Copy Code
AllowOverride None Options None Order allow,deny Allow from all
Step 3
Now you have to bind the server static IP to the port number (remember we gave done this in the start) so for this you have be on the same file and change “Listen 8081” to “Listen [IP Address of Server]:8081”. It will look like “Listen 192.168.1.154:8081”.
Hide Copy Code
Listen 192.168.1.154:8081
Step 4
Great! The next step is to open port (8081) of the server such that everyone can access your server. This depends on which OS you are using. Like if you are using Windows Vista, then follow the below steps.
Open Control Panel >> System and Security >> Windows Firewall then click on “Advance Setting” and then select“Inbound Rules” from the left panel and then click on “Add Rule…”. Select “PORT” as an option from the list and then in the next screen select “TCP” protocol and enter port number “8081” under “Specific local port” then click on the”Next” button and select “Allow the Connection” and then give the general name and description to this port and click Done.
Now you are done with PORT opening as well.
Next is “Restart All Services” of WAMP and access your machine in LAN or WAN.