Chinaunix首页 | 论坛 | 博客
  • 博客访问: 427703
  • 博文数量: 112
  • 博客积分: 4451
  • 博客等级: 上校
  • 技术积分: 1063
  • 用 户 组: 普通用户
  • 注册时间: 2009-02-23 10:19
个人简介

更多精品http://shop65927331.taobao.com

文章分类

全部博文(112)

文章存档

2011年(19)

2010年(54)

2009年(39)

分类: 系统运维

2011-02-16 11:52:23

WordPress 介绍
WordPress 创建于 2003 年,最初只是用来提高日常写作排版的工具,用户数扳着手指头和脚趾头就能数得做来。从那时起,它逐渐发展成为世界上使用最多的自助博客工具,用在数以十万计的网站中,每天都有数以千万的用户在使用。

在这里,你所看到的每件事,从文档到代码,都是由这个社区创建并为这个社区服务。WordPress是一个开源项目。这意味着有数百人为其工作(要远远超过大部分的商业平台。)同时也意味着你可以免费使用,不管你的博客是猫的家园还是福特汽车展示,都不需要支付任何人使用许可费。

关于 WordPress 官方站点
WordPress 的官方站点是 wordpress.org;你可以在那里下载 WordPress 官方发布版(官方提供英文版,中文版可在本站下载)。要自己安装 WordPress,你需要有一个满足最低要求的主机,和几分钟的时间。你可以通过定制 WordPress 来满足任何需求。WordPress 官方还通过 wordpress.com 提供的免费博客服务(此服务国内用户不可用),可以让你轻松开始使用基于 WordPress 的博客服务,但是与自己架设博客相比,免费服务多一些限制,少一些弹性。

安装

I tested it on my VM. All of the steps need about 1 hour.

Installation requirment:

    PHP version 4.3 or greater
    MySQL version 4.1.2 or greater

PHP exists, and Mysql need to install on burkehvacr.com.

Install steps:
1)Download and extract:

    
wget 
tar -xzvf latest.tar.gz

2)Create the Database and a User
mysql -u root -p
mysql>CREATE DATABASE wordpress_db;
mysql> GRANT ALL PRIVILEGES ON wordpress_db.* TO "wordpress_user"@"localhost" IDENTIFIED BY "wordpress_password";
mysql> flush privileges;

3)Set up wp-config.php
define('DB_NAME', 'wordpress_db');
define('DB_USER', 'wordpress_user');
define('DB_PASSWORD', 'wordpress_password');
define('DB_HOST', 'localhost');

4)Upload the files
mv wordpress /web/path/blog
chown -R apache.apache /web/path/blog

5)Run the Install Script in Web page
http://your.domain/blog/wp-admin/install.php

6)Install plugin:
In the admin Web page,select Plugins in the left, and then click "Add New" button,search your plugins, then select Install in the result page.
 
中文WiKi:
%E7%9A%84%E5%AE%89%E8%A3%85%E8%BF%87%E7%A8%8B
阅读(987) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~