WordPress

From KevinWiki

(Difference between revisions)
Jump to: navigation, search
m (New page: Category:Weblog_Software == WordPress == WordPress is Weblog Software written using PHP. It uses MySQL database for ...)
Line 1: Line 1:
[[Category:Weblog_Software]]
[[Category:Weblog_Software]]
== WordPress ==
== WordPress ==
-
WordPress is [[wikipedia:Weblog_software|Weblog Software]] written using [[wikipedia:PHP|PHP]]. It uses [[wikipedia:MySQL|MySQL]] database for storing data.
+
[http://wordpress.org WordPress] is [[wikipedia:Weblog_software|Weblog Software]] written using [[wikipedia:PHP|PHP]]. It uses [[wikipedia:MySQL|MySQL]] database for storing data.
== Installation ==
== Installation ==

Revision as of 10:15, 3 October 2008

Contents

WordPress

WordPress is Weblog Software written using PHP. It uses MySQL database for storing data.

Installation

This instruction is for Ubuntu Linux 8.04 (possibly other versions).

Prerequisite

It requires installing Apache, PHP and MySQL (APM). Thus these must be installed before installing WordPress. The installation instruction can be found from APM.

Database Setup

CREATE DATABASE databasename;
 
GRANT ALL PRIVILEGES ON databasename.* TO 'username'@'hostname' IDENTIFIED BY 'password';
 
FLUSH PRIVILEGES;
Personal tools