變更drupal7用戶密碼加密方式

drupal 7 採用的是加鹽(salt)MD5碼來對用戶密碼進行加密,而不是以前drupal5和drupal6時代的簡單MD5加密方式。

這種新的加鹽(salt)MD5碼加密算法的大概情況可以參考這篇《浅谈MD5加密算法中的加盐值(SALT)》。

據說這種加密方式更安全喇~但是……

嗯,但是,在跟別的只使用MD5加密的程序共享用戶的時候問題就複雜了呢。 Read more »

Drupal 7 的安裝與中文化

Drupal 官方主頁:https://drupal.org/

Drupal 安裝環境需求:

– A web server. Apache (version 2.0 or greater) is recommended. – PHP 5.2.4 (or greater) (http://www.php.net/). – One of the following databases: – MySQL 5.0.15 (or greater) (http://www.mysql.com/). – MariaDB 5.1.44 (or greater) (http://mariadb.org/). MariaDB is a fully compatible drop-in replacement for MySQL. – Percona Server 5.1.70 (or greater) (http://www.percona.com/). Percona Server is a backwards-compatible replacement for MySQL. – PostgreSQL 8.3 (or greater) (http://www.postgresql.org/). – SQLite 3.4.2 (or greater) (http://www.sqlite.org/).

Read more »