在Ubuntu 13.10上安装WordPress

1.安装配置LAMP Server

  • 进入root用户模式

[highlight dark=”no”] sudo –s –H [/highlight]

  • 安装MySql 

[highlight dark=”no”]    apt-get install mysql-server mysql-client [/highlight]

  • 安装Apache

[highlight dark=”no”]apt-get install apache2 [/highlight]

  • 安装PHP支持 

[highlight dark=”no”]  apt-get install php5 libapache2-mod-php5 [/highlight]

  • 创建info.php文件,确认PHP文件能够正常解析 

[highlight dark=”no”]  vi /var/www/info.php [/highlight]

           <?php

               phpinfo();

            ?>   

[highlight dark=”no”]/etc/init.d/apache2 restart [/highlight]

http://localhost/info.php

2. 安装并配置Wordpress

  • 安装Wordpress 

[highlight dark=”no”]apt-get install wordpress [/highlight]

  • 创建web要目录与wordpress的软链接 

[highlight dark=”no”] ln –s /usr/share/wordpress  /var/www [/highlight]

  • 解压并安装wordpress数据库 

[highlight dark=”no”]gzip -d /usr/share/doc/wordpress/examples/setup-mysql.gz[/highlight]

[highlight dark=”no”]bash /usr/share/doc/wordpress/examples/setup-mysql -n wordpress localhost [/highlight]

  • 重启web服务,确认wordpress可以访问 

[highlight dark=”no”] /etc/init.d/apache2 restart[/highlight]

访问 http://localhost/wordpress可进行wordpress的设置.

3. 注意事项

  • 如果要使用WordPress的自动更新功能,必须把WordPress安装文件夹的所有权改为www-data用户 

[highlight dark=”no”]chown -R www-data /usr/share/wordpress [/highlight]

  • 若是要使用IP地址访问WordPress,必须做以下设置 

a).更改数据库中wp_options表下的siteurl内容,将其更改为宿主机的ip。如http://192.168.2.16/wordpress

b).更改数据库中wp_options表下的home内容(这个大概在第二页),同样改为http://192.168.2.16/wordpress

c).连接配置文件

[highlight dark=”no”] ln -s /etc/wordpress/config-localhost.php /etc/wordpress/config-default.php [/highlight]

  • 如果模板或插件不能上传,需要改变wordpress配置文件WP_CONTENT_DIR指向到实际目录 

[highlight dark=”no”]vi /etc/wordpress/config-localhost.php [/highlight]

define(‘WP_CONTENT_DIR’, ‘/var/www/wordpress/wp-content’);

 

0 回复

发表评论

Want to join the discussion?
Feel free to contribute!

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注