免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1035 | 回复: 0
打印 上一主题 下一主题

个人博客WordPress 的安装 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-19 14:02 |只看该作者 |倒序浏览

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 http://wordpress.org/latest.tar.gz
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:
http://codex.wordpress.org.cn/WordPress%E7%9A%84%E5%AE%89%E8%A3%85%E8%BF%87%E7%A8%8B
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP