News

Loading...
显示自四月 2007以来最新的 5 个帖子(共 48 个)。显示以前的帖子
显示自四月 2007以来最新的 5 个帖子(共 48 个)。显示以前的帖子

2007年4月29日 星期日

Atomic RAR Password Recovery v1.20 汉化版

密码恢复工具,用于解密 RAR 压缩包的密码,支持暴力破解和字典破解(原版未集成密码字典,汉化版集成了两个密码字典在程序的安装目录)特色功能是破解过程中无需源 RAR 文件,所有所需的信息已收集并存储至工程文件(.RPC)中。但是字典文件是必须放置于原处的,因为工程文件记忆了字典的路径和文件名。此软件不存在时间 限制,功能上仅是未注册版本不能同时使用两个字典文件或同时对两个RAR压缩包进行密码破解处理。
[网通]河南网通下载
[电信]四川美橙互联
[电信]杭州瑞迪科技
[电信]广东群英网络
[电信]广西创科下载
[电信]华捷网吧专家
[电信]四川华夏名网
[电信]泉州酷龙科技
[电信]重庆蓝焰网络
[电信]福建泉州下载
[电信]浙江宁波下载
[电信]上海亿速网络
[网通]北方数据中心
[电信]广西英拓网络
[电信]湖北华明网络
[网通]河南景安数据

[插件] · 陪你背单词(发音+自选词库+自定义库) 09/27更新

http://www.discuz.net/thread-168340-1-6.html
下载附件6覆盖!下载地址


查看积分策略说明
附件
2005-9-23 10:04
1.gif (18.82 KB)

点击在新窗口查看全图 CTRL+鼠标滚轮放大或缩小
2005-9-23 10:04
2.gif (4.96 KB)

2005-9-23 10:04
3.gif (4.21 KB)

2005-9-23 10:04
4.gif (4.6 KB)

2005-9-23 10:04
下载次数: 314
words.rar (273.08 KB)
2005-9-27 18:11
下载次数: 443
wordclass.rar (534 Bytes)



DZ5.5 游客只能读取贴子的部分内容

DZ5.5 游客只能读取贴子的部分内容

viewthread.php 中查找
$post['ratings'] = karmaimg($post['rate'], $post['ratetimes']);

1. 如果只切字符不过滤的,后面插入下面代码
if(!$discuz_user && $post['count'] == 0 && strlen($post['message']) > 1000){
$post['message'] = cutstr($post['message'], 1000);
$post['message'] = $post['message']."[quote][b][color=black]您的等级为游客,目前仅能浏览此贴的部分内容,请[url= http://www.discuz.net/logging.php?action=login]登录[/url][/color][/b] [/quote]";
$post['bbcodeoff'] = 0;
}
2. 如果要切字符后过滤一些代码的,在后面插入下面代码
if(!$discuz_user && $post['count'] == 0 && strlen($post['message']) > 1000){
$find = array(
"/\[hide=?\d*\](.+?)\[\/hide\]/is",
"/\[quote](.*)\[\/quote]/siU",
"/\[table=?.*\]/iU",
"/\[\/table\]/i",
"/\[tr=?.*\]/iU",
"/\[\/tr\]/i",
"/\[td=?.*\]/iU",
"/\[\/td\]/i",
"/\[color=?.*\]/iU",
"/\[\/color\]/i",
"/\[url=?.*\]/iU",
"/\[\/url\]/i",
"/\[b\]/iU",
"/\[\/b\]/i",
"/\[u\]/iU",
"/\[\/u\]/i",
"/\[i\]/iU",
"/\[\/i\]/i",
"/\[font=?.*\]/iU",
"/\[\/font\]/i",
"/\[size=?.*\]/iU",
"/\[\/size\]/i",
"/\[align=?.*\]/iU",
"/\[\/align\]/i",
"/\[list\]/iU",
"/\[\/list\]/i",
"/\[indent\]/iU",
"/\[\/indent\]/i",
"/\[email=?.*\]/iU",
"/\[\/email\]/i",
"/\[code\]/iU",
"/\[\/code\]/i",
"/\[free\]/iU",
"/\[\/free\]/i",
"/\[swf=?.*\]/iU",
"/\[\/swf\]/i",
"/\[payto=?.*\]/iU",
"/\[\/payto\]/i",
"/\[float=?.*\]/iU",
"/\[\/float\]/i",
"/\[img]/iU",
"/\[\/img\]/i",
"/\[attach\](\d+)\[\/attach\]/i"
);

$replace = array('');
$post['message'] = cutstr($post['message'], 1000);
$post['message'] = preg_replace($find,$replace,$post['message']);
$find = "/http:\/\/[a-z0-9\/\-_+=.~!%@?#%&;:$\\()|]+?\.(jpg|gif|png|bmp)/is";
$replace = "[img]\\0[/img]";
$post['message'] = preg_replace($find,$replace,$post['message']);
$post['message'] = $post['message']."[quote][b][color=black]您的等级为游客,目前仅能浏览此贴的部分内容,请[url= http://www.discuz.net/logging.php?action=login]登录[/url][/color][/b] [/quote]";
$post['bbcodeoff'] = 0;
}
说明:
上面2段代码自己选择一个用。

如果还要过滤其他 BBCODE ,在代码2的$find数组"/\[attach\](\d+)\[\/attach\]/i"前面按格式自己插入。如果不想过滤一些代码,可以自己删掉 $find数组中的一些代码。关于图片,如果你运气好,图片链接没在1000字符那里被切断,会正常显示。

1楼的帖子,字数大于1000才会被屏蔽,不限制文字长度删除掉代码 && strlen($post['message']) > 1000,不想限制楼层删除掉代码 && $post['count'] == 0 更改 && $post['count'] == 后面的值,可对其他楼层的进行设置,值0为1楼,值1位2楼,以此类推。

注:代码内的登录链接自己修改成自己的。

演示地址 http://www.spkcn.net/forums/viewthread.php?tid=533 想看的就点,不想看的别点。

这段代码无效?用过的都知道,会无效?真是好笑.....

DZ官方插件【快拍】立即实现手机与论坛的互动

DZ官方插件【快拍】立即实现手机与论坛的互动

插件名称:快  拍 官方网站
开发作者:迅彩科技 
什么是快拍:
  “快拍”就是解决有线互联网和无线互联网之间快速沟通、完全互动的软件系统。对于站长论坛而言,安装一个Discuz的快拍官方插件,就立即能实现论 坛接收用户的上传文件。对用户而言,安装一个快拍手机客户端,就能够在使用手机拍照的功能时,直接将照片、视频传送到网站,无需电脑等辅助设备。
  伴随无线互联网的快速发展,手机上网用户业已有超过PC上网用户之势。传统互联网所呈现的多种形态,都逐渐被广大网民所认同,从早期的WEB1.0到 现在的WEB2.0,蓬勃发展的社区、blog、视频分享等。但是在有线和无线之间一直存在沟通的不畅,手机所具备的便利拍照功能、随时上网功能都是传统 网络平台所欠缺的,但又不能很好的融合。快拍的出现就很好的解决了这一点。

快拍的核心意义:
  用户手机拍摄照片、视频,一触即发,发送到指定网站,无需登录任何页面、网站;
  用户手机上的任意文件,一触即发,发送到指定网站;
  用户可以随时在手机获得信息反馈;网站方也可以随时免费PUSH信息给用户。

与快拍合作:
  快拍具有其开放性的体系结构,使它与广泛的网络社区、门户、博客、视频、相册和其它网上资源相融合成为可能, 合作伙伴能够以最简单、低廉的方式获得服务,从而为用户创造一种无与伦比的使用感受!欢迎广大站长朋友们下载安装使用!

如果您在使用过程中遇到任何的问题都可以在这里回复或者是通过下面的联系方式与我们取得联系,我们将及时的解决您的问题
  1、联系人:杨骏
  2、电话:027-59715103
  3、msn:kaca100@msn.com;QQ:620003842
  4、邮箱:service@kaca100.com

马上下载安装快拍插件 快拍 _for_discuz5.x标准插件.rar (4.82 KB) 欢迎广大的站长朋友们下载安装使用

演示地址http://219.140.165.89/ [安装插件后右上角的导航变为 注册| 登录 | 会员 | 快拍 | 统计 | 帮助 ]

QUOTE:
  1、为什么要在我们的后台注册填写网站相关资料?
  我们的系统需要生成您的网站的定制版快拍,在软件中,默认网站中只有您的网站,方便您的用户。这样,就需要根据您
的实际情况来在我们的后台http://login.kaca100.com去注册ID并按照说明填写相关资料。

  2、为什么要在后台配置快拍通道验证码?
  这个通道验证码用于你在代码中验证通过快拍通道的合法性,防止别人恶意使用此通道,此验证码在后台由自己设置并与
插件代码中设置的通道验证码一致。

  已经下载安装了快拍的站长朋友们如果在安装使用过程中遇到问题,请联系我们的工作人员QQ:620003842;电话:027-
59715103
;MSN:kaca100@msn.com;邮箱:service@kaca100.com

快拍系统的网络逻辑结构
screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://www.kaca100.com/images/kaca100.jpg');}" onmousewheel="return imgzoom(this);" alt="" border="0">

通过快拍发帖到论坛的流程图

screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://www.kaca100.com/images/kaca100-1.jpg');}" onmousewheel="return imgzoom(this);" alt="" border="0"> screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://www.kaca100.com/images/002.jpg');}" onmousewheel="return imgzoom(this);" alt="" border="0">


1
)打开手机摄像头拍照 2)拍完后,自动弹出提示



screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://www.kaca100.com/images/003.jpg');}" onmousewheel="return imgzoom(this);" alt="" border="0"> screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://www.kaca100.com/images/004.jpg');}" onmousewheel="return imgzoom(this);" alt="" border="0">

3)选择需要上传的站点和栏目

screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://www.kaca100.com/images/005.jpg');}" onmousewheel="return imgzoom(this);" alt="" border="0">
4)加上文字说明(标题就是帖子的标题或者图片的标题,文字说明就是帖子内容或者是图片的描述,没有字数限制)




screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://www.kaca100.com/images/006.jpg');}" onmousewheel="return imgzoom(this);" alt="" border="0"> screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://www.kaca100.com/images/007.jpg');}" onmousewheel="return imgzoom(this);" alt="" border="0">

5)提交上传后的提示信息 6)上传成功后收到的提示,点击确认即可查看发的图片;

screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://www.kaca100.com/images/008.jpg');}" onmousewheel="return imgzoom(this);" alt="" border="0">

7)打开PC站即可看到你发的帖子。

帖子列表的MSN代码优化[申请推荐+收藏!!!]

帖子列表的MSN代码优化[申请推荐+收藏!!!]

最近发现帖子列表的MSN连接到了go.discuz.com。使添加MSN打开网页很慢。
点击在新窗口查看全图

所以本人调查了一下。做了如下修改。为了让大家更快更方便的将对方加入自己的MSN列表,而不用漫长的等待
条件:你的MSN必须打开状态,很简单。
修改一个文件就行了!没有任何风险。
不喜欢的也别骂人!也不要用。喜欢的就顶一下!我很感谢!
打开templates/风格/viewthread.htm
查找


修改为


查找


将其删除即可,保留也可。
删除include/javascript/msn.js文件,如果你想保留也可以不删除。
查看演示,说我AD的请自觉一下。

图片演示:
点击在新窗口查看全图
点击在新窗口查看全图