wordpress簡單配置

2021-09-21 10:34:23 字數 1462 閱讀 4118

welcome to wordpress. this is your first post. edit or delete it, then start blogging!

1. 本來打算在centos 5.5 裡面安裝,但是php版本低,還得重新編譯,就換到centos 6.0,反正在虛擬機器裡面

需要安裝的包: httpd, mysql ,php(注意要把php-mysql安上)

開機啟動

開啟程序(注意把/etc/httpd/conf.d/welcome.conf裡面的配置注釋掉)

開啟iptables的80埠

修改/etc/sysconfig/iptables,在合適位置插入一條規則

/etc/init.d/iptables restart

2.建立mysql賬戶並且賦予許可權

直接在終端輸入mysql

create user 『username』@'localhost』 identified by 『password』;

grant all on *.* to 『username』@'localhost』 identified by 『password』;

3.建立資料庫

mysql -u username -p 然後輸入密碼

create database word_press

4.將wordpress解壓,(我重新命名為blog),上傳到/var/www/html,將wp-config-sample.php重新命名為wp-config.php,修改配置,包括資料庫使用者名稱等

// ** mysql settings – you can get this info from your web host ** // /** the name of the database for wordpress */ define(『db_name』, 『word_press』);

/** mysql database username */ define(『db_user』, 『username』);

/** mysql database password */ define(『db_password』, 『password』);

/** mysql hostname */ define(『db_host』, 『localhost』);

5.在瀏覽器上輸入伺服器位址,傻瓜式安裝

我用了zbench主題,下了乙個wp-code-highlight外掛程式,效果如下

word press 配置備忘

1 關於wordpress中永久連線的配置,如果修改預設設定的話,那麼會提示需要修改.htaccess檔案。這個檔案預設安裝是沒有的,如果需要的話,自行在blog的根目錄 不是web的根目錄 中建立,使用wordpress提供的內容即可。這個修改只對後面的事件起作用,原來記錄的時間是不會更改的。3 ...

配置LAMP實現WordPress

環境說明 在同一臺主機上實現lamp linux apache mariadb php centos 7.3 apache 2.4.6 mariadb 5.5.52 php 5.4.16 採用yum方式進行安裝httpd mariadb php php mysql,php mysql用來進行php和...

wordpress 配置坑詳解

重新整理倉庫 yum clean all 重建快取 yum makecache 安裝mysql yum install mysql 一定要先安裝mysql再安裝php 否則到時候模組找不到支援,先安裝了mysql之後,模組方便自動識別版本.否則到時候版本錯誤,有得回退半天,然後清理配置,出現莫名其妙...