Follow these simple steps to install MySQL on Windows.
Step 1: Download MySQL
Download MySQL from dev.mysql.com/downloads/. Follow MySQL Community Server, Windows and download the “Without installer” version.
Step 2: Extract the files
We will install MySQL to C:\mysql, so extract the ZIP to your C: drive and rename the folder …
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, …
Follow these simple steps to install Apache2 on Windows.
Step 1: Download Apache2
Download Apache2 for Windows from apache website. I Recommend you to use the unofficial Windows binary from Apache Lounge. This version has performance and stability improvements over the official Apache distribution, although I am yet to notice …
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 …