Configure Amazon EC2 for PHP with IIS7 - php

I have a machine configured for ASP.NET 4 & IIS7.
I want to run PHP on the same machine without interrupting ASP.NET. Anyone know the steps and I will research it more.

You can install php for windows. http://php.iis.net/ Its almost the same as installing it on your local machine. It wont interrupt any existing asp.net applications unless you mess with iis and their directories/applications. Amazon should give you access to the ec2 instance to install and configure iis.
Walkthrough.

Related

how do you run a php file on a chromebook?

I've been looking on YouTube and other places, i'm not sure how, this place is filled with smart people so i thought i would ask you guys!
This blog post lists some options:
Termux lets you install a Linux environment and has a PHP distribution (but it is highly restricted and you will probably run into plenty of frustrating limits)
You can enable Developer Mode and then press Ctrl-Alt-T to open a crosh shell, from which you get type shell to get a regular shell and from there either:
Install Linux and dual-boot
Create a chroot environment to develop in
Meanwhile OS 69 introduces Linux for Chromebook which should be an easier way to get a Linux environment.
… but that said, Chromebooks are generally low-powered machines that aren't ideal hardware for doing development work. I'd look at setting up a remote server and doing my dev work over SSH.
You need to install MAMP or XAMPP on your Chromebook. MAMP or XAMPP will turn your Chromebook into a web server capable of reading PHP.
EDITED:
Since you can't run MAMP or XAMPP on your Chromebook, then you should look into using a Cloud solution such as AWS or Google Cloud.

Installing a php application in a windows server 2012, 2008 or 2003

I found too many problems in installing the application in a local network. I use wampserver as the local server(in my computer only) for my application. I want to use a windows server 2012,2008 or 2003 to install the application so that it may function in the network I created and different users can access to it. Would you please give me even the link that explains the steps clearly and in details?
You can download and install Microsoft's web platform
http://www.microsoft.com/web/downloads/platform.aspx
it will work on server with IIS and on a local desktop with IIS Express.
After you install it, you may add PHP to your server as Fast-CGI application host.

is it posible php and asp.net share the same server?

I have have installed a software that came along with an ASP.NET
hosted in UltiDev Web Server Explorer a web application manager, its
database is .mdb, and I want to add some pages to it using PHP for an
additional features. And UltiDev can run only asp.net and I have no
time for now to study ASP. is there any other web application manager
that can run php and ISS together sharing the same .mdb database? I am
not interested in IIS right now.
yes you can run PHP server on IIS but reverse is not so easy.
Goto this link and install this web platform installer. then you can access and manage your PHP files
http://php.iis.net/
you can easily manager like Apache server
You can install PHP to run alongside an IIS installation with the Microsoft WebMatrix tool.
http://www.microsoft.com/web/webmatrix/
On a sidenote, Helicon has a selection of PHP/Ruby/etc applications that can be easily deployed to an IIS installation via WebMatrix.
http://www.helicontech.com/zoo/gallery/

Install wordpress in windows server 2003 which already host asp.net website

I have a server which already host ASP.Net website. I am migrating from blogger to WordPress. So I need to install WordPress on our server. Can we host WordPress on windows server??
Yes you can install Wordpress (or any other php application) on a windows server IF php is installed on the server. There are many tutorials on google on how to install and setup PHP on IIS (the Windows web server), but Microsoft actually provides an easy PHP install from their website : Install PHP on IIS from Windows Web App Gallery
Wordpress also needs MySQL to work, so that would have to be installed on the server as well.
Your main concern here I guess is whether you have access to the server to install PHP & MySQL:
If this server is provided by a hosting service, it might not support
PHP, in which case there's nothing you can do. You'll need to check with the provider whether they support it or not, and if they can install it.
If you have complete access to the server, you just need to install PHP and MySQL (a bit of configuration will probably be needed - lots of tutorials on google to help you there); then install Wordpress normally as you would on any other kind of server.
PS: if you install PHP yourself, you should make sure to check which version of IIS you are running (IIS6 on windows 2003? IIS7+ on windows 2008?). IIS6 requires some extra configuration to make everything work, as pointed out in the article linked by Marty in his comment.
When I first started using Wordpress I used a Windows Server (granted it was shared space by a service provider) and it ran poorly. I switched to a Linux hosting account and it ran much better. Just my two cents based on my experience.

Standalone web server (PHP, MySQL) for Mac

I have to work at client's office on a Mac (I'm a PC user) and I can't install anything.
I need a local web server to develop the app. Is there anything like http://www.server2go-web.de/download/download.html but for a Mac? Just so I can download it unpack it and run to have a standalone, non installbale, local web server (Apache, PHP, MySQL).
Thanks.
It seems you're able to install xampp in a portable manner (go for the drive-less install option), just run the setup script when you've copied the installation to where you want it to be.
http://www.apachefriends.org/en/xampp.html
Have a look at this blog post about running a lamp server of USB...
and this: http://www.isaacsu.com/wilt/articles/portable-mamp-or-apache-php-webserver-on-mac-os-x

Categories