Install Drupal

I use Fedora Core 5

httpd-2.2.2-1.2、php-5.1.6-1.2、mysql-5.0.22-1.FC5.1、

phpmyadmin-2.9.02 and so on.

and so on.

Step 1:

We want to download drupal package to your website directory from the

official website or download directly from the link Drupal-4.7.3

or you can command

#wget http://ftp.osuosl.org/pub/drupal/files/projects/drupal-4.7.3.tar.gz

Step 2:

Extract the package by your extracted tool.

Use linux , maybe you can command

#tar zxvf drupal-4.7.3.tar.gz

#mv drupal-4.7.3 drupal /* rename the directory. */

Step 3:

Let's create a datebase drupal first.

You can use the mysql manage tool phpmyadmin to easy create a datebase

and then import database.4.1.mysql (where is in the drupal/datebase/

directory ) to the drupal (the datebase).

Step 4:

Use your editor to alter the settings.php where is in the drupal/sites/default/

Find this row:

$db_url = "mysql://username:password@localhost/database"

Change username, password,localhost and database to be new.

for example:

$db_url = "mysql://acmevil:********@mysql.taes.tp.edu.tw/drupal"

and then find this row

$base_url = ' ';

Input your complete url of website , remember don't add "/" in the end of

url.

For my example:

$base_url = 'http://acmevil.taes.tp.edu.tw';

Save it.

P.S I discover that $base_url= ' '; can be empty, but I don't know

whether it has influence or not.

Step 5:

Go to your URL of Drupal and create a account immediately. Because the

first account is the website's admimistrator.

Enjoy! ^^

1.首先,我們要先去下載drupal安裝包,可以從Drupal官方網站下載,或者直接點選下載

Drupal-4.7.3,中文版可從Drupal Taiwan | 繁體中文支援站 下載。下載到您網站的

根目錄

2.解壓縮:用您習慣的解壓縮工具來解壓縮,譬如:

#tar zxvf drupal-4.7.3.tar.gz

#mv drupal-4.7.3 drupal //把drupal-4.7.3改成drupal

3.進入您的資料庫,新增一個資料庫(我是用phpmyadmin 來控制mysql),為drupal。

然後從在drupal/datebase的目錄裡有三個.sql檔案,我們將要匯入一個至剛剛所新

增的資料庫(drupal)裡,如果您的使用mysql且在4.1版之後的請匯入

database.4.1.mysql。 請根據您的資料庫版本來選擇匯入的sql檔案。

4.至drupal/sites/default/這一目錄裡修改settings.php這一個檔案。

找到這一行

$db_url = "mysql://username:password@localhost/database"

修改 username(資料庫使用者名稱)、 password(資料庫使者密碼)、

localhost(MySQL主機位置)、database(給drupal使用的資料庫名稱)

再找到以下這一行

$base_url = ' ';

填入drupal網站的完整網址,記得最後面不要加反斜線/。

例如: $base_url = 'http://acmevil.taes.tp.edu.tw';

存檔

P.S我發現上面這一行似乎不填也可以,留空。不過我不知道會不會有影響?

5.現在可以進入您的Drupal網站了。切記!第一個註冊的就是網站管理員喔!

現在就可以好好享受囉! ^^
0 Responses