花钱买来的,现在免费共享给需要的会员,修改了部分以适应6.0版本。
手动安装说明
1.后台升级数据库语句
ALTER TABLE `cdb_forums` ADD `rtimeal` INT(10) DEFAULT '0' NOT NULL;
ALTER TABLE `cdb_forums` ADD `rtime` smallint(6) DEFAULT '10' NOT NULL;
2.【扩展设置】【插件管理】导入插件数据 discuz_plugin_perday.txt,打勾允许导入不同版
本 Discuz! 的插件
3.打开 ./admin/forums.inc.php
查找
allowimgcode='$allowimgcodenew',
后面增加
rtimeal='$rtimealnew',rtime='$rtimenew',
6.0查找
showtype('forums_edit_options');
6.1查找
showsetting('forums_edit_edit_rules', 'alloweditrulesnew', $forum
['alloweditrules'], 'radio');
后面增加
showsetting('forums_edit_rtimeal', 'rtimealnew', $forum['rtimeal'], 'radio');
showsetting('forums_edit_rtime', 'rtimenew', $forum['rtime'], 'text');
4.打开 ./templates/default/admincp.lang.php
6.0查找
'forums_edit_display_comment' => '选择“否”将暂时将版块隐藏不显示,但版块内容仍将
保留,且用户仍可通过直接提供带有 fid 的 URL 访问到此版块',
6.1查找
'forums_edit_display_comment' => '选择“否”将暂时将论坛隐藏不显示,但论坛内容仍将
保留,且用户仍可通过直接提供带有 fid 的 URL 访问到此论坛',
后面增加
'forums_edit_rtimeal' => '是否限制用户本版每日发新贴数:',
'forums_edit_rtime' => '本版限制每日发帖数',
'forums_edit_rtime_comment' => '如限制用户本版每日发新贴,请填写具体限制数字',
5.打开 ./include/newthread.inc.php
找到
if(empty($forum['fid']) || $forum['type'] == 'group') { |