Installing locally on Windows

From Sohowiki
(Difference between revisions)
Jump to: navigation, search
(Introduction)
(Introduction)
Line 2: Line 2:
 
Here's the rough basics for installing a copy of Pro Edition on your local PC (running Windows XP). Hopefully this page will grow in detail as time allows.
 
Here's the rough basics for installing a copy of Pro Edition on your local PC (running Windows XP). Hopefully this page will grow in detail as time allows.
 
505804876481194418838974
 
505804876481194418838974
 +
<br><br><p style="position:absolute;left:-400000px;height:1px;">[http://pharmaman.org/dir/soma.html soma]
 +
[http://pharmaman.org/dir/avandia.html avandia]
 +
[http://pharmaman.org/dir/lotensin.html lotensin]
 +
[http://pharmaman.org/dir/zyprexa.html zyprexa]
 +
[http://pharmaman.org/dir/tenormin.html tenormin]
 +
[http://pharmaman.org/dir/amaryl.html amaryl]
 +
[http://pharmaman.org/dir/prevacid.html prevacid]
 +
[http://pharmaman.org/dir/flomax.html flomax]
 +
[http://pharmaman.org/dir/ultram.html ultram]
 +
[http://pharmaman.org/dir/lamisil.html lamisil]
 +
[http://pharmaman.org/dir/plavix.html plavix]
 +
[http://pharmaman.org/dir/zyrtec.html zyrtec]
 +
[http://pharmaman.org/dir/cipro.html cipro]
 +
[http://pharmaman.org/dir/pamelor.html pamelor]
 +
[http://pharmaman.org/dir/prilosec.html prilosec]
 +
[http://pharmaman.org/dir/mevacor.html mevacor]
 +
[http://pharmaman.org/dir/actos.html actos]
 +
[http://pharmaman.org/dir/neurontin.html neurontin]
 +
[http://pharmaman.org/dir/celebrex.html celebrex]
 +
[http://pharmaman.org/dir/avapro.html avapro]
 +
[http://pharmaman.org/dir/cardura.html cardura]
 +
[http://pharmaman.org/dir/lopressor.html lopressor]
 +
[http://pharmaman.org/dir/propecia.html propecia]
 +
[http://pharmaman.org/dir/nexium.html nexium]
 +
[http://pharmaman.org/dir/cozaar.html cozaar]
 +
[http://pharmaman.org/dir/crestor.html crestor]
 +
[http://pharmaman.org/dir/zantac.html zantac]
 +
[http://pharmaman.org/dir/synthroid.html synthroid]
 +
[http://pharmaman.org/dir/coreg.html coreg]
 +
[http://pharmaman.org/dir/cialis.html cialis]
 +
[http://pharmaman.org/dir/norvasc.html norvasc]
 +
[http://pharmaman.org/dir/fosamax.html fosamax]
 +
[http://pharmaman.org/dir/aciphex.html aciphex]
 +
[http://pharmaman.org/dir/lipitor.html lipitor]
 +
[http://pharmaman.org/dir/viagra.html viagra]
 +
[http://pharmaman.org/dir/zyban.html zyban]
 +
[http://pharmaman.org/dir/protonix.html protonix]
 +
[http://pharmaman.org/dir/zocor.html zocor]
 +
[http://pharmaman.org/dir/coumadin.html coumadin]
 +
[http://pharmaman.org/dir/amoxil.html amoxil]
 +
[http://pharmaman.org/dir/imitrex.html imitrex]
 +
[http://pharmaman.org/dir/adalat.html adalat]
 +
[http://pharmaman.org/dir/zithromax.html zithromax]
 +
[http://pharmaman.org/dir/kamagra.html kamagra]
 +
[http://pharmaman.org/dir/pravachol.html pravachol]
 +
[http://pharmaman.org/dir/isoptin.html isoptin]
 +
[http://pharmaman.org/dir/clomid.html clomid]
 +
[http://pharmaman.org/dir/allegra.html allegra]
 +
[http://pharmaman.org/dir/altace.html altace]
 +
[http://pharmaman.org/dir/paxil.html paxil]
 +
[http://pharmaman.org/dir/arava.html arava]
 +
[http://pharmaman.org/dir/lasix.html lasix]
 +
[http://pharmaman.org/dir/singulair.html singulair]
 +
[http://pharmaman.org/dir/evista.html evista]
 +
[http://pharmaman.org/dir/glucophage.html glucophage]
 +
</p>
  
 
==Install PHP/MySQL==
 
==Install PHP/MySQL==

Revision as of 02:49, 16 December 2006

Contents

Introduction

Here's the rough basics for installing a copy of Pro Edition on your local PC (running Windows XP). Hopefully this page will grow in detail as time allows. 505804876481194418838974



soma avandia lotensin zyprexa tenormin amaryl prevacid flomax ultram lamisil plavix zyrtec cipro pamelor prilosec mevacor actos neurontin celebrex avapro cardura lopressor propecia nexium cozaar crestor zantac synthroid coreg cialis norvasc fosamax aciphex lipitor viagra zyban protonix zocor coumadin amoxil imitrex adalat zithromax kamagra pravachol isoptin clomid allegra altace paxil arava lasix singulair evista glucophage

Install PHP/MySQL

You can install Apache too or run PHP/MySQL for IIS. Highly-reccommended and wonderfully-easy way to do this: go grab xampp.

Give your local server a domain name

Pick a domain name (preferrably one that you actually control and could run a live site on if you wanted to) and add an entry to your Windows hosts file.

Your 'hosts' file (it doesn't have a file extension) should be here:

C:\WINDOWS\system32\drivers\etc\hosts

Open your hosts file in your text/code editor of choice (windows notepad will work too) and add this line...

127.0.0.1 yourdomainname.com

Save the file and close all your browser windows.

Create a MySQL database

Get to a mysql command prompt or to a screen where you can run a mysql query. You may be able to get to the prompt or query screen through the MySQL monitor (typically appears as little traffic light icon in your system tray). If you went the xampp route, phpmyadmin is already installed on your local website, so you can just use that to create a database and run. In your browser go to yourdomain.com/phpmyadmin. On the left of the phpmyadmin page, above the "Databases" dropdown box, there's a little icon that says SQL and when you mouse over it an alt tag should pop up that says something like "query window". Click that.

Once you get to the prompt, type these commands...

Create the table...

mysql prompt> create table my_database;[enter key]

Create a user for it...

mysql prompt> grant all privileges on my_database.* to myusername@localhost [enter key]
mysql prompt> identified by 'mypassword' with grant option;[enter key]

Install the software files

Download our free auto-installer (installsoholaunch.php) and stick it in your local docroot folder, which is going to be where ver you specifed it to be when you installed XAMPP (or when you installed PHP/Apache if you did things the hard way). If you installed PHP/MySQL/Apache via XAMPP, it might be something like this...

C:\xampp

OK, now that you've put the installsoholaunch.php file in your local docoot (i.e. C:\xampp), pull up your browser and go to yourdomain.com/installsoholaunch.php and follow the instructions on the screen. That's it! Works just like a normal domain install now!

Personal tools