|
digitalize (m)
|
Hi, pls is it possible for one to develop an online application that will not have to be on the internet (or being hosted on a remote server over the internet), rather it will be accessible only on an Intranet? If possible, how?
I need help on this - I'm currently developing a web-based application with for a firm that don't want it hosted on the internet but they just want the application running within the firm alone (as an Intranet). How possible is this.?
Your help will be much appreciated.
|
|
|
|
|
|
segsalerty (m)
|
sure , you can , install any of these local servers on a Host computer that will serve as the server , copy all your application files in its html folder, your application can be communicated with via IP by other systems , thats the logic, am sure someone else can explain better or you can chat me segsalerty@yahoo.com if you need more explanation
|
|
|
|
|
|
goldincome (m)
|
To add to what segsalerty said. You need a server with DNS resolution. You can install XAMMP or WAMPP on it and then move your application to HTDOCS or WWW folder. Once your server is setup properly, the name of your server will call your site from every system on that network. eg. http://nameofyourserver/yourapplicationfolder. I hope that helps.
|
|
|
|
|
|
biggjoe (m)
|
nameofyourserver above as mentioned by goldincome is the Computer Name of the server.
In place of the computer name, you can also use the IP address of the server.
|
|
|
|
|
|
xanadu
|
very possible.
1. Decide what web server you will be using on the intranet: Apache, IIS, Domino etc. In many cases, this decision will affect how you develop your application, and vice-versa. install this webserver on designated server 2. Develop your application 3. Load/install this on to the web server decided upon. 4. Configure web server. The name of the site does not ONLY have to be the computer name or ip address - as @goldincome said, you can use DNS and set up an alias for the site
Let us know what web server you are looking at using, and I am sure we can contribute to helping you sort it out.
|
|
|
|
|
|
digitalize (m)
|
Thanks so much guys, the application I'm developing is with PHP, so I will be using apache (WAMP) server. Pls apart from the server do I need to configure any IP for the other systems?
|
|
|
|
|
|
xanadu
|
@digitalize, When you say 'the other systems' I guess you are speaking of the client machines? If so, if you have a DNS server on the network and the clients are on the same network and configured to use that dns server, all you will need to do is ensure the ip address - and alias, for example - are configured in DNS, and the clients should rceive that information.
What operating system is your intended application server runing?
|
|
|
|
|
|
goldincome (m)
|
The the organisation already have network in place, then no need to configure IP on other systems because it is already on the network. All you need is to put your application in the www folder of WAMPP on the server and then other systems can access it by typing the computer name of the server. ie http://servername/yourapplicationfolder. I hope that helps
|
|
|
|
|
|