IT Hardwares

eg: UK or Brides UK or Classical Art or Buy Music or Spirituality
 
eg: UK or Brides UK or Classical Art or Buy Music or Spirituality
 
Business & Money
Technology
Women
Health
Education
Family
Travel
Cars
Entertainment
SD Editorials
Online Guide and article directory site.
Foodeditorials.com
Over 15,000 recipes & editorials on food.
Lyricadvisor.com
Get 100,000 Lyric & Albums.
  • Business & Money
    • A Guide to Business
    • Guide to Finance
    • Ideas for Marketing
    • Legal Guide
    • Guide to Insurance
    • Lettre De Motivation
    • Guide to the Stock Market
    • Human Resource Career
    • Sales Marketing
    • Forex & Trading
    • Advertising & Marketing
    • Startup Guide
  • Technology
    • Guide to Technology
    • Cell Phones
    • Computer Software
    • IT Hardwares
    • Internet
    • Online Security
    • Cameras
    • Search Engine Optimization
    • Science & Technology
  • Women
    • Guide to Women
    • Relationship Advice
    • Marriage
    • Jewelry
    • Pregnancy
    • Fashion Style
    • Divorce Guide
    • Wedding Guide
    • Dating Guide
    • Natural Beauty
  • Health
    • Guide to Health
    • Guide to Medical
    • Plastic Surgery
    • Weight Loss
    • Sports
    • Body Wellness
    • Cancer Treatment
    • Common Illness
    • Health & Lifestyle
  • Education
    • Military Service
    • Politics and Policy
    • Arts & Humanities
    • Education and Teaching
    • Learn Languages
    • Colleges & Universities
  • Family
    • Quality Home Improvement
    • Hobbies and Interests
    • Family Guide to
    • Pet Guide
    • Loans Guide
    • Credit Cards
    • Gardening Guide
    • Home Security
    • Real Estate
    • Home Decor
    • Gift & Present
  • Travel
    • The Travel Guide
    • Adventure Travel
    • Cruise Ships
    • Beach Holiday
    • Travel Accommodation
    • Holiday Destinations
  • Cars
    • Information on Cars
    • Traffic Violations
    • Auto Insurance
    • Trailers
    • Sport Cars
    • The Bikes
  • Entertainment
    • Entertainment Guide
    • World Music
    • Photo & Video
    • Television & Games

How To Install Wordpress

    View: 
You have chosen your domain name and your hosting company (and they may well be one and the same). The next part of your journey in “getting started with your blog” is to install Wordpress. It may be that you have decided to have your blog hosted on a “blogging platform”, like Blogger.com or Wordpress.com. If you are happy to go down that road, great. I have a blog on both these platforms and they serve their purpose well. But for the majority of users involved in web marketing, or trying to get an online presence for their business – whatever it is – you will be installing Wordpress on your own domain.



To be sure, much of the difficulty of installing Wordpress has been eliminated by the Fantastico installer – a utility that is available on most hosting accounts. With Fantastico, all you need to do is answer a few prompts such as what directory to install Wordpress in, and boom! – you're done. Although I heartily recommend using it, and you may want to get on with your web marketing, I think a user should go through the manual install process at least once, to get familiar with how Wordpress operates behind the scenes. Let us look at the process of installing Wordpress manually:

1. Open www.wordpress.org in a browser. From there, click on the blue bar that says “download Wordpress x.xx” – it will show the latest version. Right now, it is 2.7.1. (You may have to click on a second link to get it). Save this to your desktop or somewhere else convenient, and extract all files from the zip archive into a folder called “wp”.

2. Using an FTP client, connect to your domain – the hosting company will have given you the correct username and password when you signed up. Once connected, look for the “www” folder (also named “public_html”. Open this folder on the server (in the “remote” window in your FTP client) and in the “local” window, open the “wp” folder that you extracted the Wordpress files into. Copy everything from “wp” into “www” and close your FTP client.

3. Log in to your domain's Cpanel by entering www.yourdomainname.com/cpanel. Enter your username and password and scroll down until you see “MySQL databases”. Click on this and it will prompt for the name of your database. Use something short like “wp”, because it appends your username to it. Click “create database”, go back and scroll down to “Add new user”. Choose a username for your database – you can use your cpanel username and password if you wish, or a completely different one. After creating the user account, click “go back” and scroll down to “Add user to database”. Select the username and the database as above – not that your cpanel username is now stuck on the front of it. Click “add” and “all privileges” on the next screen. Then close the window - you're done with setting up the database.

4. In your FTP client, right-click on the “wp-config-sample.php” file in the “www” folder. You need to change 3 things here – the “MySQL database name”, the “MySQL database username” and the ”MySQL database password”. Just replace what's inside the single quotes with your own details, close the file and save it as “wp-config.php”.

5. In your browser, open the address www.yourdomainname.com/wp-admin/install.php. If you get an error message here, it usually indicates that one of thenames in wp-config.php is wrong. If all is well, you will then be prompted for the blog name, and your email. Pick a name that contains all or part of your keyword, enter your email address and click on “Install Wordpress”. Take note of the admin username and password on the next screen, and log in with those details.

6. You are now in the “back office” of your blog or website. This is where you add content, set up new pages and change the appearance. To see what your site looks like, click “visit site” on the top left corner. You have done it – you have installed Wordpress!
How To Install Wordpress
INSTALL WORDPRESS IN FIVE EASY STEPS

(1) Download WordPress

The first installation step is to Download WordPress from http://wordpress.org/download/. I created a directory on my PC called "wordpress" in which to collect the files and images I will use for my WordPress installation and customization. Once the download competed, I saved the .zip file.

(2) Unzip WordPress

After saving the file, I opened it with the zip/unzip program I use, and selected all of the files. Since I will be testing and modifying Wordpress locally to begin with, I "extracted" the files to the root directory of the Apache server I use for my PC test bed.

If I were going to install WordPress "for real" on a live web site, I would have used an FTP client to upload the .zip file to the desired directory at my hosting service and unziped the file there. Firefox has a terrific and *free* FTP client, FireFTP, that can be used for the upload.

(3) Create the Database

At this point, the WordPress database needs to be created. WordPress requires a database to store the site content and other information. I use MySQL for my database server both on my PC test bed and on my live sites. I use phpMyAdmin as an interface to MySQL.

Creating the database is really simple using phpMyAdmin. I simply start phpMyAdmin, enter the database name, and hit the "Create" button. WordPress will create the tables it needs in the database.

(4) Create wp-config.php

WordPress needs to know how to access the database once it has been created. That's what the wp-config.php file is for. WordPress includes a file called "wp-config-sample.php." This file needs to be modified with the database access information and renamed to "wp-config.php."

Open the config file with any text editor. The critical entries are DB_NAME, DB_USER, DB_PASSWORD, and DB_HOST.

As an enhanced security measure, I obtained a unique SECRET_KEY and pasted this into the file. I then saved the edited file as wp-config.php. The text below shows the code I changed:

// ** MySQL settings ** //

define('DB_NAME', 'wordpress'); // The name of the database

define('DB_USER', 'rtivel'); // Your MySQL username

define('DB_PASSWORD', 'MyPassword'); // ...and password

define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value

// Change SECRET_KEY to a unique phrase. You won't have to remember it later,

// so make it long and complicated. You can visit http://api.wordpress.org/secret-key/1.0/

// to get a secret key generated for you, or just make something up.

define('SECRET_KEY', 'diq`~@|CH6)l@u>x;hA>1ew1maZ/)ToE!y%}}ZYAI!=V^L()eooB!0V+k8LJa!Eh'); // Change this to a unique phrase.

(5) Run the WordPress Installer

After completing the edit of the wp-config.php file, I started the installation script by entering this URL to my Apache server into my browser:

localhost/wordpress/wp-admin/install.php

For a live site, the URL might be something like this:

yourdomain.com/wordpress/wp-admin/install.php

The first installation screen asks for the blog name and contact email address.

The next screen announces a successful installation and provides a username and password for the administrator. Be sure to save this password!

The installation is now complete. I can now log into Wordpress and begin managing the blog, customizing the theme, or adding content.

Or, I can click the link at the top of the log-in screen and go to the blog's home page.

If you don't manually create a wp-config.php file, WordPress will prompt for the information it needs and try to complete the installation.

That's it! WordPress should now be installed.

Yours for a more successful blog,

Royce Tivel
More Articles from
How To Setup Dns
Cd To Mp3 Windows Media
Cellular Phone Gps Tracking
Cellular Phone With Digital
Cellular Phones For Sale
Cellular Phones Without Plan
Change Ip From Command Prompt
Change Is In The Air
Change Way Of Thinking
Change With The Times
Change Your Domain Name
Control Of Substances Hazardous To Health Regulations
Frey Save A Life
Half The World Is Watching
Hands Free Cellular Phones
Hosting Companies For Sale
Logiciel Gravure Cd Dvd
Negative Thoughts To Positive
No Contract Cellular Service
Part Of The Globe
Places To Go For Anniversary
» More on
Computer Hardware Guide
  • Related Articles
  • Author
  • Most Popular
•How To Install Wordpress, by Tom Mccarrick
•How To Install Wordpress Blog, by Sameep Shah
•How To Install Wordpress Plugin, by Danny Wirken
•How To Install Wordpress Plugins, by Michael Paetzold
About Author
Both Tom Mccarrick & Royce Tivel are contributors for EditorialToday. The above articles have been edited for relevancy and timeliness. All write-ups, reviews, tips and guides published by EditorialToday.com and its partners or affiliates are for informational purposes only. They should not be used for any legal or any other type of advice. We do not endorse any author, contributor, writer or article posted by our team.

Tom Mccarrick has sinced written about articles on various topics from Computers and The Internet, About My Space and Computers and The Internet. . Tom Mccarrick's top article generates over 18100 views. to your Favourites.

Royce Tivel has sinced written about articles on various topics from Internet Marketing, Computers and The Internet and Digital Camera. For an extended version of this article, complete with numerious images showing, step-by-step, the procedures described in the article, please visit
Allergy Symptoms In Toddlers
This eventually leads to better health for a longer period of time, at last!
 
A Guide to Business | Guide to Technology | Guide to Women | Guide to Health | Family Guide to | Travel & Vacations | Information on Cars

EditorialToday IT Hardwares has 2 sub sections. Such as Computer Guide and Hardware. With over 20,000 authors and writers, we are a well known online resource and editorial services site in United Kingdom, Canada & America . Here, we cover all the major topics from self help guide to A Guide to Business, Guide to Finance, Ideas for Marketing, Legal Guide, Lettre De Motivation, Guide to Insurance, Guide to Health, Guide to Medical, Military Service, Guide to Women, Pet Guide, Politics and Policy , Guide to Technology, The Travel Guide, Information on Cars, Entertainment Guide, Family Guide to, Hobbies and Interests, Quality Home Improvement, Arts & Humanities and many more.
About Editorial Today | Contact Us | Terms of Use | Submit an Article | Our Authors