整理程序: 将第一步下载到的程序解压缩:
专注于为中小企业提供网站设计制作、成都做网站服务,电脑端+手机端+微信端的三站合一,更高效的管理,为中小企业柳河免费做网站提供优质的服务。我们立足成都,凝聚了一批互联网行业人才,有力地推动了上1000家企业的稳健成长,帮助中小企业通过网站建设实现规模扩充和转变。
得到如图的程序文件:
上传wordpress程序
注意: 是将解压缩的wordpress文件夹下面的文件上传到网站根目录.
安装wordpress程序
上传程序完成后,就可以进行wordpress的安装了.这个也是本节教程的核心.
执行安装脚本:http://域名/wp-admin/install.php.
单击: 试试创建一个配置文件.
单击: 那么现在开始
点击: 填好了
单击:安装
单击 安装wordpress
这样子就完成了wordPress在虚拟主机上的安装.
操作错误导致。wordpress绑定域名正确具体步骤如下。
1、首先将自己的新域名DNS解析到自己的服务器或是空间ip上,ip绑定新域名。
2、然后进入你的网站数据库管理phpadmin,选择自己网站的数据库,打开wp_options这个表单。
3、在wp_options表单下,修改siteurl文件(序列号一般为1)为自己的网站新域名,再修改home这个文件(序列号大约在30-40不等)为自己的新域名。
4、在SQL数据库命令中,输入如下的代码(注意将域名改为自己的,前面填写老域名,后面填写新域名),点击执行即可。
5、现在网站的域名基本换过来了,但是你网站内部会有大量的内链、锚文本、图片等还是老域名的,现在需要用到如下的代码,同样在SQL数据库命令中执行即可,注意域名的更换。
配置Nginx
Nginx的配置文件是在安装目录的conf文件夹下的nginx.conf,并用Notepad++(没有安装此软件的话就使用记事本)打开它:
查找并定位到以下配置:
1
2
3
4
location / {
root html;
index index.html index.htm;
}
修改为:
1
2
3
4
location / {
root html;
index index.html index.htm index.php;
}
继续往下查找并定位到以下配置:
1
2
3
4
5
6
7
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
将#号去掉,并改为:
1
2
3
4
5
6
7
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
在Nginx的根目录下
创建php-cgi-start.vbs文件,添加以下内容:
1
createobject("wscript.shell").run "D:\WNMP\php-5.5.6-Win32-VC11-x64\php-cgi.exe -b 127.0.0.1:9000 -c D:\WNMP\php-5.5.6-Win32-VC11-x64\php.ini",0
创建nginx-start.vbs文件,添加以下内容:
1
createobject("wscript.shell").run "D:\WNMP\nginx-1.5.6\nginx.exe",0
创建service-start.bat文件用于启动web服务器,添加以下内容:
1
2
3
4
5
6
echo off;
php-cgi-start.vbs
echo php-cgi started.
Nginx-start.vbs
echo nginx started.
exit;
创建service-stop.bat文件用于关闭web服务器,添加以下内容:
1
2
3
4
5
6
echo off
echo Stopping nginx...
taskkill /F /IM nginx.exe nul
echo Stopping PHP FastCGI...
taskkill /F /IM php-cgi.exe nul
exit
以后只需用鼠标双击service-start.bat启动web服务,运行service-stop.bat关闭web服务。
配置完成后Nginx的安装根目录如下:
安装wordpress
将wordpress压缩包解压到D:\WNMP\nginx-1.5.6\html\目录下(这个目录是我们已配置的nginx默认根目录),并将文件夹重命名为wp,如下:
连接mysql数据库创建一个由wordpress专用的数据库:
C:\Windows\System32mysql -h localhost -u root -p123456
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.5.25-log MySQL Community Server (GPL)
Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql create database wordpress;
Query OK, 1 row affected (0.00 sec)
mysql create user wp_admin@localhost identified by '123456';
Query OK, 0 rows affected (0.00 sec)
mysql grant all privileges on wordpress.* to wp_admin;
Query OK, 0 rows affected (0.00 sec)
在浏览器访问:即可访问wordpress安装页面(注意:nginx已启动)
创建配置文件
现在就开始
提交
进行安装
接下去就跟普通的网上注册一样简单了。