名字没有什么特殊含义,Alex->Al->Aluminum而已
项目托管在了Google Code上
现在这个项目在difan.org.cn运行。
需要获取源代码的,请执行下列命令
svn checkout http://aluminum-blog.googlecode.com/svn/trunk/ aluminum-blog-read-only
下面说一下怎么初始化表
我懒得写install.php了
CREATE TABLE IF NOT EXISTS `Blog` (
`ID` int(4) NOT NULL auto_increment,
`Title` mediumtext collate utf8_bin NOT NULL,
`Content` longtext collate utf8_bin NOT NULL,
`Posttime` text collate utf8_bin NOT NULL,
`Visible` tinyint(1) NOT NULL,
`AccessControl` int(8) NOT NULL,
PRIMARY KEY (`ID`),
FULLTEXT KEY `Title` (`Title`,`Content`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=114 ;

CREATE TABLE IF NOT EXISTS `Users` (
`UserID` int(11) NOT NULL auto_increment,
`UserName` text collate utf8_unicode_ci NOT NULL,
`Passphrase` text collate utf8_unicode_ci NOT NULL,
`AccessControl` int(11) NOT NULL,
PRIMARY KEY (`UserID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ;
感兴趣开发的可以sms我,我会给你svn帐号。
请注意许可证是GPL v3,请仔细阅读许可证,必须在同意许可证的规定的条件下才可以合法的使用与分发。