
因历史原因PHPCMCSV9并不支持https,而且网上的修改教程都不是太完整,所以我发出我整理出来的修改教程供大家参考 https修改教程 /phpcms/modules/admin/site.php 45行,128行 /phpcms/modules/admin/templates/category_add.tpl.php /phpcms/modules/admin/templates/category_edit....

文件地址:/phpcms/modules/content/fields/title/form.inc.php 把这里的3改成5就行,也不要改的太多,太多的话keyword字段限制了40个字,接口也限制了 顺便说一下采集的内容导入后获取的关键词修改,相关文件在: /phpcms/modules/collection/spider_funs/spider_keywords.php 修改后面'number'=>3里面的3为...
phpcms/modules/member/里新建MY_index.php 内容如下: <?php defined('IN_PHPCMS') or exit('No permission resources.'); class MY_index extends index { private $times_db; public function __con...
在V9中,表单向导提交后返回的是网站首页,极为不爽,现改为返回上一页: 修改方法: 打开: phpcms\modules\formguide\index.php public function show里找到 showmessage(L('thanks'), APP_PATH); //大概在78行 改为: showmessage(L('thanks'), HTTP_REFERER); 大功告成! PS:可以稍加开发,...
linux用SSH如何修改22端口 修改配置文件 vi /etc/ssh/sshd_config 找到#Port 22一段,这里是标识默认使用22端口,修改为如下: Port 22 Port 999 去掉前面的#号。