Follow these simple steps to install PHP on Windows. You must install Apache2 before installing PHP, See my other tutorial on How to Install apache on Windows
Step 1: Download PHP 5
Download the latest PHP 5 ZIP package from www.php.net/downloads.php
Step 2: Extract the files
We will install the PHP files to C:\php, …
First of all login to your VPS as root using SSH.
Now type this command and press enter.
nano -w /etc/yum.repos.d/utterramblings.repo
and then following lines into editor. Save the file and quit editor.
[utterramblings]
name=Jason’s Utter Ramblings Repo
baseurl=http://www.jasonlitka.com/media/EL$releasever/$basearch/
enabled=1
gpgcheck=1
gpgkey=http://www.jasonlitka.com/media/RPM-GPG-KEY-jlitka
For those new to linux, the nano command is for a linux editor, and once you type the …