1. 安装数据库
建立数据库,导入 dbinstallall.sql
导入完成后用phpMyAdmin修改 gcdb_options 表中的admin_email,base_url的值(最重要的两个值,其他值可以在管理后台修改)
2. PHP设置
复制gc-config-sample.php并改名为 gc-config.php,打开gc-config.php,修改前4行的值
define('DB_NAME', 'graceric'); // The name of the database 数据库名称
define('DB_USER', 'username'); // Your MySQL username 数据库用户名
define('DB_PASSWORD', 'password'); // …and password 数据库密码
define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value 一般主机都默认为localhost, DH主机可能是mysql.xxx.com