Can we run php application in a LAN? [closed] - installation

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have to install php application in a one computer and access these application from others computer in a LAN. is it possible?

Yes. It is possible.
Install PHP and configure the PHP application on one computer on the LAN. Let's call this machine myserver.local. Then test out the application on the same workstation to make sure it's working fine. You'd probably be using a URL like this:
http://localhost/appname/index.php
Once you're sure that it works fine, then you can use the following to access the application from the other computers in the LAN:
http://myserver.local/appname/index.php
Hope this helps.

Yes you can.
If the computer you are hosting the php application is a part of the intranet then all you have to do is send the application link or the ip to others and they can access the application.

Yes you can,
You can use the server IP Address(IP of machine where server software's are installed) to access the content on remote machine.

Related

is Laravel Homestead essential? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I'd like to setup and use Laravel as a PHP framework. I faced with Homestead.
I don't know what is this.
is this essential for Laravel and the projects that i make with it ?
Sniping the answer here, just in case others have the same question:
Homestead is nothing more than a Vagrant Environment
What Vagrant does is spin up virtual servers on your local machine that you may then interact with as if they were remote servers. The idea behind this is two-fold:
Vagrant Environments can be tailored specifically to mirror - or come close to matching - the production environment on which your web application will be hosted.
Vagrant files can be version controlled so that team members working on the same project are guaranteed to be working in the same environment.
With all that said, all Homestead is is a Vagrant box that has a basic LEMP stack and a bunch of other server components configured for you out of the box that will enable you to quickly provision new sites and databases through a simple YAML configuration.
While it would certainly be easier to spin up a Laravel/Lumen installation for local development within a Homestead environment, you could really do it within any kind of virtual machine or locally installed HTTP server.
If you really wanted to, you could also used PHP's built-in server to quickly spin up a Laravel application as well by running php artisan serve in a Laravel 4 application, or php -S localhost:8000 -t public in Laravel 5.
But ultimately, no, Homestead is not a necessity. Only a nicety.

Accessing ruby application on Windows Azure Virtual Machine [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I am trying to install project management application called Redmine on Windows Azure Virtual Machine and access it from internet. Redmine is based on Ruby and is using a database so I also had to install them too. Actually I managed to install everything and when I connect to virtual machine by Remote Desktop I can access Redmine there by typing localhost/redmine in browser. The question is what should I do now to access it from outside? (for example home pc or anybody in internet). My virtual machine has got an address like myapp.cloudapp.com but there is no way I can access redmine by typing myapp.cloudapp.com/redmine or something like this.
Well, I can't exactly speak for Azure as I haven't used it, but there should be a way to forward port 80 through to your VM. You should also make sure IIS is setup to listen on 0.0.0.0:80 and not 127.0.0.1:80
Edit: Usually port forwarding is setup in the control panel for a cloud provider, so I would start by checking whatever interface Azure gives you to configure your VM.

Is it possible to have a Windows instance with remote desktop GUI [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have some experience with Amazon's linux instance. But, I need a Windows machine, and I need to manage it with GUI (something like remote desktop or so). Can any body answer me if this is possible and how ?
Yes this is definitely possible, I use it all the time. Just provision a windows instance and then once it is running, right click on it in the EC2 management interface and select "Get Administrator Password".
You will need to specify a private key at launch time, and use that to get the decrypted password.
You can then use any Remote Desktop client to access the machine using this password and the public DNS name.
Windows has Remote Desktop, which allows you to drive through GUI, or else putting on VNC and connect through there.

Who is my localhost win7 - it's a bit funny [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I got a localhost service on my machine, but I don't remember installing it lol.
And now that I am really need it, I can't figure out who is running this service... It's just a simple page of "It works!".
Been trying searching my win7 for "It works!" keyword but found nothing. And all the index.html files seems to be not it. So it's really funny now...
Anyway I can find it out?
Edit:
This is the my localhost icon , I even search it on Google images without any result...
You have Collabnet Subversion Edge installed on your machine. This brings along it's own customised setup of Apache.
Find the folder c:\inetpub\wwwroot\yourservice, if you are using the iis to host your services.

when does windows connect to the internet? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I want to create an app which sends some data on boot to a server. Should I write a service or wait till that user logs in, creating a registry key at Run. I think that windows connects to the internet after log in, but I am not sure.
Network Awareness in Windows XP
Network Awareness in Windows Vista and Windows 7
I believe the Vista/7 implementation is just using a request to a web site setup by Microsoft to determine if the web site is reachable.

Resources