ClassCMS

命令行模式

ClassCMS支持命令行模式,

执行: php index.php /

系统将返回首页内容.

执行: php index.php /1/

系统将返回对应页面的内容.

如果关闭了伪静态(命令行模式无需配置伪静态规则),则需要将请求地址加上 /index.php/ 如:

php index.php /index.php/1/

对于绑定了域名的应用或栏目.

php index.php http://classcms.com/1/
php index.php https://classcms.com/1/
php index.php //classcms.com/1/

命令行安装

4.5版本起,系统支持命令行模式安装,方便安装部署

默认安装:
php index.php install

使用mysql数据库:
php index.php install -database mysql -mysql_host 127.0.0.1 -mysql_dbname classcms -mysql_user root -mysql_password 123456

安装参数:
-database mysql或sqlite,默认为sqlite
-sqlitefile 指定sqlite数据库文件名,默认为随机文件名
-mysql_host mysql主机名,默认为127.0.0.1
-mysql_dbname 数据库名
-mysql_user mysql用户名,默认为root
-mysql_password mysql密码
-prefix 数据库表名前缀

-rewrite 是否启用伪静态,默认为1
-debug 是否开启调试模式,默认为0

-admindir 后台路径,默认为admin
-userhash 管理员账号,默认为admin
-passwd 管理员密码,默认为admin