News

Loading...

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的请自觉一下。

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

『MH修改版』『附详细安装指导』Linkgame的Home主页+Oproo的内页整合版for5.5

『MH修改版』『附详细安装指导』Linkgame的Home主页+Oproo的内页整合版for5.5

由于上次发布的版本问题比较多,很多人不会安装,所以发布这个我自己用的修改版,修订了原版中存在的错误,并附上详细安装指导。

再次申明,不懂JS调用,或者一点不懂HTML,就不要用这个模版了,我没有那么多时间来教这些基础的东西的。
JS调用的指导官网里就有,很简单,自己学习一下吧。

因为我自己的论坛还很小,没有什么内容,所以去掉了一些对我无用的东西,请酌情使用。

演示地址:http://www.milanhome.cn/bbs

技术支持:http://www.milanhome.cn/bbs/viewthread.php?tid=1570&extra=page%3D1

需要原始版的请在这里下载:http://www.discuz.net/thread-588272-1-2.html

安装步骤:
1、在后台导入discuz_style_oproo.txt中的风格代码
images和templates放在你的论坛根目录下

2、将index.php和index_back.php复制到论坛根目录下

discuz.htm的自定义修改方法:

一、今日导读左侧幻灯片:
  在flash幻灯片JS语句中,替换成自己的图片地址,网页地址和图片标题

二、今日导读右侧新闻:
  上部三条新闻自行输入超链接
  下部九条新闻使用JS调用(原版使用的是直接输入网址,此处帖子经常变化,频繁输入网址太麻烦了,所以我设置成最热门帖子列表的JS调用)


三、公告下部图文框
  图文框内的文字和图片自行替换成自己的

四、最新话题和最新精华
  使用JS调用即可

五、推荐主题
  和第三条一样是自行替换图片和文字,以及链接

六、各版块内容展示
  右侧版块列表原来是使用JS调用,我更换为CSS了,自行替换网址即可
  下部的最新帖子列表是JS调用,自行添加


七、社区之星
  找到社区之星的相关代码,替换掉图片和文字就可以了
  下面的Top系列用JS调用就可以了

头部导航栏在header.htm里修改超链接就可以了

所有版权归原作者所有

[ 本帖最后由 风轻剑客孤 于 2007-4-13 17:08 编辑 ]



查看积分策略说明
附件
2007-4-13 14:15
下载次数: 1063
Linkgame+Oproo整合安装包.part1.rar (292.97 KB)
2007-4-13 14:15
下载次数: 977
Linkgame+Oproo整合安装包.part2.rar (292.97 KB)
2007-4-13 14:15
下载次数: 991
Linkgame+Oproo整合安装包.part3.rar (292.97 KB)
2007-4-13 14:15
下载次数: 938
Linkgame+Oproo整合安装包.part4.rar (145.24 KB)

风格制作入门视频及pdf教程

风格制作入门视频及pdf教程


视频格式: exe
视频大小: 14.9 MB
下载地址: http://download.discuz.net/teach/video/style_design.zip

电信下载: http://download2.discuz.net/teach/video/style_design.zip
pdf教程作者:Dfox

本教程压缩包内包含风格制作入门视频教程及其说明文档,风格制作实例ps文件,风格制作pdf教程,总共四个文件,希望能对初学风格制作的朋友有所帮助。

注:如果还有有问题请咨询Dfox

make money by agloco


Viewbar™ 是一个小小的工具栏,当您上网的时候它就位于屏幕或浏览器窗口的底部。用户上网时,Viewbar™ 软件就是AGLOCO为用户赚钱的工具。

Viewbar™ 时刻关注着您上网的兴趣和爱好,根据这些信息,我们会在恰当的时候把最有价值的消息发送给您。因为保护个人隐私政策是AGLOCO的核心原则,所以Viewbar™ 会将您的信息转换为密码,并传递到我们的安全服务器,以此来保护您的隐私。
有 人会问:“Viewbar™是一种木马软件吗?”这个问题的答案很简单:Viewbar™与木马完全不同。木马软件是在您完全不知情的情况下偷偷进入您的 电脑,并不断的攫取您的个人信息,而且木马软件大多不能被完全清除。Viewbar™不同于木马软件,它是在经过您的同意之后才被安装的,它保护您的隐 私,并且您只需单击一下就能将它关闭。
以下就是AGLOCO Viewbar™(当前的只是限制使用版):

想要了解更多相关信息,请将鼠标放置在Viewbar™的相关区域,查看提示。

请 注意:AGLOCO Viewbar™现在仍处于限制试用版测试阶段,并没有提供下载。我们希望几周后,Viewbar™能供用户下载。我们会按照会员注册的先后顺序,将 Viewbar™提供给所有会员。在测试阶段,所有的试验人员都不会因为使用Viewbar™而得到报酬。从现在起,我们要求您努力构建社区,因为社区越 大,您和AGLOCO能获得的利润也越多。

Viewbar™还有许多附加的功能:
  • 搜索引擎(有了它,我们可以从搜索引擎公司那里为您获得报酬)
  • 上下文广告(有了它,我们可以从广告公司那里为您获得报酬
  • 反欺诈软件和一些其他软件(有了它们,我们可以从软件公司那里为您获得报酬)
以下截图显示了在桌面上的Viewbar™:


AGLOCO Viewbar™

2007年4月27日 星期五

hostaim.com700mb/15gb BW

  • 7000 Mb Free WEB Hosting
  • 15 GB Bandwith
  • Free Domain Hosting
  • Free Subdomain Hosting
  • Free DNS Server
  • Free FTP Account
  • PHP Supported
  • MySQL Supported
  • Web File Manager
  • Instant Account Setup
  • Easy to use Control Panel
  • Stable Hosting Platform
  • Powerful Servers
  • Reliable Data Centers
  • Super Fast Network
  • 99.9% Uptime
  • The Best Solution for blogs, forums, home pages and game sites
http://www.hostaim.com/register.jsp

2007年4月26日 星期四

网站推广七大法宝

网站推广七大法宝
主页建设完毕,网站推广工作便应开始了。如果不进行主页宣传,是不会有人找到你的主页的,那你辛辛苦苦建设网站又是为了什么呢?以下是我总结的网站推广七大法宝:
1.直接向亲友推荐

  这是一种最直接、最普通的宣传手段。主页做好了,让亲朋们共同分享这是自然少不了的。不过,亲朋再多,数量也有限,而且靠人工一个个去通知是一种效率非常低的宣传手段。如果你希望主页向全社会公开,就必须同时采用其他方式进行宣传。
2.在搜索引擎登记
  搜索引擎网民们查找所需信息最重要的来源之一,yahoo的成功便雄辩的说明了这一点。正因为如此,搜索引擎也是网站所有者推广宣传的最佳阵营。在搜索引擎登记有三种办法:
1.主动到搜索引擎网站上登记
  在许多搜索引擎网站上你都可以找到“登记网站”字样,点击该链接即可添加您的网站记录。不过提醒您注意,有的搜索引擎网站首页并无“登记网站”链接,而是到了分类目录下面才有的。绝大多数搜索引擎都可采用此方式进行登记,比如雅虎中文、悠游等。

2.让搜索引擎自动搜索登记
  天网、altavista等搜索引擎是采用派出“机器人”自动搜寻网站信息并登记入库的方法。机器人辨识网站的重要依据便是如下这样两条语句:

3.采用批量提交软件或网站服务
  有的软件可以帮助你向上百个搜索引擎同时提交网站记录,进行登记注册,大大简化了登记手续。同时,某些网站也提供有类似的批量提交服务。这种方法的缺 点是,这种方式总让然感到不是太放心,不知道自己的网站是否真的被提交成功了,因为只有部分搜索引擎网站会向提交者反馈成功登记信息。
  可批量提交网站记录的软件有addweb和search98x等。addweb pro可自动提交你的网站到上百个查询引擎,主要特色包括:多站点简介,自动频繁引擎数据更新,多站点提交允许你一次提交多个网站,查询引擎检查,pa gebuilder 产生更好的查询效果,html、txt 和 e-mail报告,proxy支持。其2.5版可从此下载,软件主页http: //www.cyberspacehq.com/addweb/home.htm。searchx98则是一个国产软件,不仅能在国外网站上注册,还可向 中文的gb码、big5码搜索引擎登记注册。其1.03版按此下载,软件主页http://www.netease.com/~jimchen。
3.在新闻组和bbs上作宣传
  新闻组在全球有成千上万的用户,在这里发布网站宣传资料是一种最为高效便捷的方式。bbs同样也是大家交流信息的重要场所,不过管理较新闻组严格,所 以在bbs上作宣传一定要注意选择最为适合的信区进行散发,有的bbs还禁止一行多发(一封信同时发到多个信区)。bbs分两种,传统的cfido型 bbs,如武汉劲捷,一般对本地影响力较大,不适合作全国、乃至全球宣传。一般internet用户可选择cterm软件登录internet bbs进行宣传。cterm(clever terminal)是一个专门用于中文bbs站点的telnet软件,支持彩色显示、上下滚屏、闪烁和下划线、自动登录、屏幕缓冲区拷贝。针对国内常见 bbs的特点增加了许多特殊功能。其99年一月版可从此下载。cterm软件内置了许多bbs站网址,如“白云黄鹤”(202.112.20.132)、 “水木清华”(202.112.58.200)、“网易”(202.96.152.195)等。
4.参加广告联盟
  许多网站提供免费广告互换服务。也就是说要求你在网页中添加一段指定代码用于显示其他网站广告,与此同时,其他网站商业会出现你的广告条,达到互相宣传的目的。实例详解
5.参加网站排行榜
  参加网站排行榜可有助于你了解自己网站的实力,一旦取得好的名次,更可“耀武扬威”。一些比较优秀的排行榜网站甚至可以帮助你详细统计网站访问流量,包括每日、每时访问流量。国内最权威的排行榜包括中文热讯、网易、信宝等。
6.在报刊杂志上发表文章
  如果你的文笔不错,可以尝试撰写一些网络相关文章投到报社去,文章中可以建议大家去拜访你的个人主页。一旦文章发表,就会有许多读者慕名而来。如果你 不计较稿费,向internet电子杂志(一般免费发行,无稿费)投稿其实效率会更高,因为大家在阅读电子杂志时只需点一下鼠标就可访问到你的网站了。 internet百宝箱电子报竭诚欢迎各位投稿,电子报网址:http://inetbox.soim.net,投稿信箱: inetbox@kali.com.cn ,订阅信箱:inetbox-subscribe@egroups.com 退订信箱:inetbox-unsubscribe@egroups.com。
7.创建网站maillist

  通过创建自己网站的maillist,你可以让用户们主动参与讨论、反映问题,增加了交互性,这对用户是很有吸引力的。maillist不仅可以使你 稳定主页访问量,还可以增加网站的知名度。创办maillist其实也很简单,国外的egroups和国内的通易都提供有很完善的服务,订户可以通过 web或e-mail方式自由的订阅、取消订阅和阅读maillist内容。

【神话论坛bbs.btmyth.com】采集规则分享

【神话论坛bbs.btmyth.com】采集规则分享

设置贴子文章采集来源论坛网站名称 001BT神话论坛 东方丽人
贴子列表首页 http://bbs.btmyth.com/forum-61-1.html
贴子列表第二页 http://bbs.btmyth.com/forum-61-2.html
贴子列表第三页 http://bbs.btmyth.com/forum-61-3.html
贴子列表中的贴子共同的网址特征,用于鉴别是有是有效的贴子 -1-1.html
标题截取截取开始 标题:
标题截取截取结束 d333d
内容截取截取开始 短消息*d000d1
内容截取截取结束 top.gif*d000d-1*sigline.gif*[ 本帖最
回贴部分截取开始 短消息
回贴部分截取结束 引用 报告*d000d-1*gline.gif[/img]
贴子采集方式 3

D9999D采集的贴子内容替换(用于消隐原网站信息)
[img]http://bbs.btmyth.com/images/common/
[img]http://bbs.btmyth.com/images/common/si
[广告] bt神话友情提示:未安装杀毒软件的网友请免费下载金山毒霸2007

2007年4月19日 星期四

Links to Selected Web Development Tools for Your Downloading Pleasure

Links to Selected Web Development Tools for Your Downloading Pleasure

The New and Cool
HTML Editors
Graphics Utilities
FrontPage Plugins
Web Design Tools
Site Management Tools
Multimedia Goodies

Please suggest tools for us to list on this page or tell us about corrections we need to make.
New and Cool

* Photoshop 5.5 (our full review) - Latest version of the classic graphics program. It's a challenge for beginners, but once you've got your head around it you can do anything you like to an image.
* Dreamweaver 3 (our full review) - Latest version of the most popular professional editor. Download a 30 day trial or go for some of Macromedia's recommended plug-ins.
* 1st Page 2000 - A free HTML editor including many JavaScript and Perl scripts. The interface is similar to HomeSite.
* Adobe Golive - An excellent professional editor for Macs. There's a Windows version too.
* Media Cleaner - If you want to mess about converting and compressing movies, you'll find it hard to beat Media Cleaner Pro. It accepts most formats and works on many platforms. It's probably the Web movie industry standard software. There are lots of other downloadable goodies on the Terran site too.
* RealSystem G2 Beta Server - Streaming media from the experts. The RealSystem G2 Full Beta Server, which the company describes as open-standard, is available for evaluation.
* Shoutcast server - Broadcast streaming MP3s from your server to Winamp users around the world. Runs on Windows, Unix, Linux and other platforms.
* Flash 4 - If Macromedia gets its way, future developers won't even bother to learn HTML, because Web sites will be Flash from top to bottom. It's the Web animation standard. Here's your chance to get Flashed-up on a 30 day free trial.
* Livestage - Makes the most of the QuickTime format. Other movie formats can be incorporated within a QuickTime video.
* MovieWorks - Create QuickTime movies on a Mac. Trial software on 30 day approval.
* Analog logfile analyser - Around 25% of the world's logfiles are analysed using Analog. It's not as sophisticated as some of the other logfile programs out there, but it compensates in one very special way - it's free.
* Canoma - Take your regular photos of a building and glue them to a wireframe model. Hey Presto! A 3D graphic. The user interface is a joy.
* FreeHand - Illustration program famed and revered for its WYSIWYG output. Now in version 8. The trial is 30 day and fully functional.
* Image Optimizer - Excellent file size reduction system allows some parts of a graphic to be heavily compressed while other parts retain their detail.
* Illustrator - Major-league illustration software from Adobe. Unfortunately the tryout version doesn抰 allow saves, exports or printouts.
* Topstyle - A popular CSS editor for simple creation of cross-browser style sheets.
* Actinic Catalog - Well-known eCommerce software with over 1300 licensees - and that抯 just in the UK!
* WebSpeed Optimizer - A great little utility that throttles back the data transfer within your computer. Just set the controls for 56kbps and watch your site download from your hard drive to your screen at the same speed most of your visitors will receive it.
* Drumbeat 2000 - Macromedia ASP software for sophisticated database management. The eCommerce edition goes all the way to the shopfront. A JSP (JavaServer Pages) edition is also available.
* Homesite - Homesite wins coveted Web Developer's Journal Product of the Year, 1998 award with a total of five propheads. Read the review or download the trial version. You can also get the 4.5 beta here.
* Style Master 1.2 - Style Master is just the thing for anyone unfamiliar with the syntax and rules of CSS and for anyone wanting to get CSS to really rock and roll.
* WS_FTP Pro - New and Improved FTP Client. This is the one we've been waiting for!
* Transit Central and HTML Transit - Template-based automated Web publishing.
* CheckOut - Shopping cart with Java, enhanced CGI and simple browser modes, plus a variety of other eCommerce tools.
* Spirit - "Spirit can build almost any kind of GUI and deal with interactions. You can build components, vector graphics, spinners, databases, etc."
* Writing Proposals that Work - Combines instructions on Web proposal writing along with a template that the writer can use to develop the actual proposal.
* Ozzino Studio - "Let your web pages come alive with exciting animated interactive java applets. Easy to use interface and no programming required.Tons of functionality:- instant animated 3D objects from static images; rotating applets in same location; add interactivity to animated objects and animated gifs; spectacular drop-down menu bars; and much more."
* Texter - Create dazzling text animation Java applets in seconds with Ozzino's award winning Texter. Easy to use interface and no programming required.
* Calendars for the Web - "The software creates HTML Table and/or Image Map calendars. I've downloaded many competing calendar programs and I think this software is much, much better."
* Advanced Template Package - If you do CGI programming in Perl, then this is something you may have been waiting for -- using templates in Perl scripts.
* Web Hotspots 4.0 - Imagemap editors for static and animated imagemaps.
* Webber - A little known editor called Webber. It is simple to use, validates, and has an excellent help system. It is not a WYSISYG but you can type or import your text, mark and code that way.
* ECware Pro Version 4.0 - Comprehensive eCommerce solution (registration required for download).
* MODPlug Software - A different sort of program for background music and jukeboxes on Web pages.
* Paint Shop Pro - Version 6.01 of this great value for money graphics program.
* Hit List 4.0 - Features point and click DataLink for web mining.

If you're interested in free Web tools, it's likely you'll find the rest of our site interesting too. Here's a small sample of our latest features on Web techniques and Internet business:

Developer's View: Roland Lim
Roland runs Cyberengines in Singapore. The country has high broadband availability and other interesting stuff like HDTV. The big surprise is that few people take up these options.

The Case for Object Detection
David Blakey makes the case for a pure kind of JavaScript object detection, aimed at checking the browser can cope with code that follows, but without making assumptions about its type.

Using Scripting.FileSystemObject
The FileSystemObject is a component often used to access the server's file system. But be wary of the security implications for your Web site.

Paying The Search Engines
Many of the top search engines now accept payment for improved listings or fast appraisal of your site for inclusion in their directories. Here are six options.

Internet Predictions For 2001
Now that January is over and most industry pundits have made their predictions for 2001, Andrew Starling is able to steal their ideas and present them as his own.

Misuse of Administrative Logins
How many times have you set up a connection to an SQL server database with username sa and a blank password? Or to Oracle using the username system and password manager? Go to jail immediately and do not pass GO!

Developer's View: Joe Duncan and Bruce Trevarthen
Joe and Bruce specialise in back-end work, including legacy solutions. Here they give their views on company information systems, primary data sources, and how this kind of stuff translates on to the Web.

Anatomy of a JavaScript Picture Puzzle
This simple JavaScript picture puzzle uses DHTML techniques to show individual sections of a single picture, so it doesn't need multiple graphics files for the various slices. Here's how.

Why The Web Still Isn't Ready For Consumers
Despite early projections, consumers have not been overwhelming e-retailers with business. Why? And is there anything positive we can do to improve the situation?

mmsystem006 problems with Windows drivers? We have the answer!
Don't miss our other Web tool pages:
The New and Cool

HTML Editors

Graphics Utilities

FrontPage Plugins

Web Design Tools

Site Management Tools

Multimedia Goodies


BE SURE TO REGISTER!!

Not only does this encourage developers to keep creating nice software for you to use, it is usually well worth the price, giving you access to additional features, upgrades and such. The Web Developer's Journal just provides links to these download sites. We're not responsible for the programs in any way. If you know of other Web development tools that we should include, please let us know.

How to get a free domain name from ezyrewards

How to get a free domain name from ezyrewards

ok, I will give you the straight facts and nothing else, this is a step by step tutorial to getting you a free domain name from ezyrewards. Also i forgot to mention that there is no catch at all.
What you get out of this free domain from ezyrewards

* Free domain name (top level domain name)
* Free for 1 full year, after the 1 year you can choose to either:
o Not renew your domain name
o Renew your domain name free, or pay for renew
* Full DNS(domain name server) control
* Also with every domain: FREE Control Panel, FREE Registrant Modification, FREE Domain Locking

Step 1 - To getting your free domain name

Goto http://ezyrewards.com, and register. Don't worry this site is completly secure and they will not send you unwanted email.

free domain - Ezyrewards account creation

Now create the account >>

free domain - Ezyrewards login

Once you have submitted your details, ezyrewards will email you with a link to activate your account, click the link and then login if not already. Then move onto step 2.
Step 2 - To getting your free domain name

If you are not already logged into ezyrewards.com, login. Now goto the side menu and click on "Offers".

free domain - Ezyrewards points << This is what it will look like when you are logged in

free domain - Ezyrewards offers

You will see a list of "offers" on the page, work your way through them. The offers are surveys, registration and some are as simple as searching a term on a search engine. This has got to be the easiest way to get a domain. Once you have worked your way through all the offers move onto step 3.
Step 3 - To getting your free domain name

Before moving onto this step you must of completed most of the offers. If you have, goto the "Claim Reward" section on your side menu.

free domain - Ezyrewards Claim Reward

Now pick the reward you want, in this case it is domain name. Currently (1st of dec 06) there are two rewards that offer a domain, they are:

1. .info domain name for 300 points
2. OR a domain for 1000 points. Avalible extensions are: .com .net .org .biz .us .name


So now all you have to do is sign up at Optinom domains. Goto step 4.

Note: The best thing about getting this domain. It is hosted with Optinom domains, so what i'm saying is ezyrewards credits your Optinom domain account (so it is the same as you buying it from Optinom but you get it for free).

Now move onto step 4 :).
Step 4 - To getting your free domain name

Signing up for Optinom domains is simple as signing up for Ezyrewards.

Goto the "claim Reward" section >>

free domain - Ezyrewards Claim Reward

Now click the link under the domain reward you want, it will say:
"Please create an Optinom customer account before ordering."

free domain - Ezyrewards login for optinom

Now click the link to create a new account at Optinom (as with Ezyrewards, Optinom is succure also).

free domain - Optinom domains account creation

Now fill in your details then create your account.
Step 5 - Getting your credit

Ok all you have to do now is login to Optinom domains >>

free domain - Optinom domains login

Once logged in, hover your mouse over the "Settings" tab and then goto "Primary Profile" >>

free domain - Optinom domains login

rest of the tutorial will be finished very soon :)

ProxyGrab 是一款方便易用的代理搜索工具

ProxyGrab 是一款方便易用的代理搜索工具,可以搜索某些提供代理服务 器地址的网站,并把搜索得到的列表保存为文本文件。另外,可以通过外 部 IP 地址数据检查搜索到的代理服务器所属的国家。

≡≡≡≡≡≡≡≡≡≡≡≡≡『汉化说明』≡≡≡≡≡≡≡≡≡≡≡≡≡
1.这是汉化完全版,安装即可使用。
2.添加了外部 IP 文件,可以通过安装程序选择安装!
3.程序安装目录下的 urls_for_parse.txt 为程序所提供的外部代理服务
器网站地址,你可以直接添加该文件到程序中进行搜索!
4.外部 IP 数据库文件日期:2006 年 1 月 1 日
5.如果遇到问题,请与我联系!
6.外部 IP 数据库文件下载地址:
http://www.maxmind.com/download/geoip/database/GeoIP.dat.gz
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡

proxyfire 烈火代理工具箱2

proxyfire 烈火代理工具箱

最新版本: v1.17 bata1
proxyfire.v1.17bata3 - 中英文版 - 下载(2007-4-6 发布)
更多版本下载

视频教程:
proxyfire使用操作视频教程

1.17新版更新(2007.04.06):
1,Added: 中英文界面任意切换,中文版和英文版合并为一个版本
2,Added: 计划任务,可设置定点运行或者周期运行任务
3,Added: 扫描IP段优化生成,可以从已有代理列表生成扫描IP段
4,Changed: 重写SYN扫描程序pscan.exe代替过去的s.exe,带宽充足的条件下速度可提高四倍
5,Deleted: 删除TCP扫描功能,因为TCP扫描速度太慢,感觉比较鸡肋
6,Changed: 代理搜索模块添加MSN搜索支持
7,Changed: 更换内存管理模块

ProxyFire是一套功能强大的上网代理收集和分类工具。支持HTTP, SOCKS4, SOCKS5, Tunnel, SSL代理的验证,并能将代理分类为SOCKS代理,超级匿名代理,普通匿名,透明代理,网关代理。具有强大的论坛吸收功能,搜索引擎吸收功能,代理扫描功能,以及代理所在国家查询,代理去重复,智能去除代理水印,代理乱序等功能。
使用默认设置每日就可以获取几千新鲜代理列表。



主要功能有:

1, 代理验证和分类(Check)
高速,双地址,高效率代理验证和分类,可把代理分为超级,匿名,透明三级
允许自定义验证地址
支持HTTP,SOCKS4,SOCKS5, Tunnel, SSL类型,可显示代理速度,可按速度排序
验证完毕后生成详细"验证报告", 包括代理速度,代理国家,代理分类,便于查看验证结果和发布验证结果

2,从搜索引擎吸收代理(P-Search)
内置Google, Baidu, Yahoo!, MSN搜索引擎,并支持自定义搜索引擎
自动将吸收的结果去重复,过滤出需要的国家,然后验证

3,论坛代理吸附(P-Leecher)
兼容Forum Proxy Leecher的论坛列表格式,
支持吸附论坛附件,多线程高速吸附
自动验证,可以设定去重复,过滤出所需要的国家,然后验证

4, 代理去重复(Remove Duplicates)
高效代理去重复,处理10万条记录仅需几秒种

5, 代理IP所在国家查询(IPCountry)
使用国外最新ip-to-country地址库,根据实验与www.maxmind.com的GeoIP库
准确度一致,比国内的ip库准确很多

高效代理所在国家查询,可划分国外国内代理,处理10万条记录仅需几秒种
可自定义国家分组 每个组包含多个国家,组以;号隔开,国家以空格隔开,
分组后的结果保存在"国家名.txt"文件中

6, 网上代理列表获取(Retrieve)
可从网上论坛,代理列表等获取代理, 可自定义获取模版

7, http服务器
可自定义端口, 开启http服务器,通过web访问本地代理列表

8, 代理导出
所有代理列表F2导出,导出时可选择格式和过滤代理(根据端口)

9, 设置代理为IE浏览器代理
双击选中代理,设置该代理为IE浏览器代理,双击非代理,取消IE代理

10, 自动创建[*代理库*]
每次验证的有效代理加入到代理库(lists/lib.txt)
代理库每48小时(可自定义)更新(只保留有效)

11, 去除代理水印(trim proxies)
去重复的同时 可以从杂乱的字符中提取代理字符串

12,文本行乱序(disorder)
可以用来打乱代理顺序

13,高速代理扫描(P-Scan)
syn方式高速端口扫描
扫描后的结果可以随时验证和分类
附带扫描IP段优化生成功能,可从已有代理列表生成高效扫描IP段

14,计划任务
设置定点运行或者周期运行计划任务,可用于实现周期更换IE代理,定时扫描,
定时吸附,定时搜索,定时关机,定时运行任意程序等功能。

>>>>>软件历史更新记录:

4:01 2007-4-6
proxyfire.v1.17发布
1,Added: 中英文界面任意切换,中文版和英文版合并为一个版本
2,Added: 计划任务,可设置定点运行或者周期运行任务
3,Added: 扫描IP段优化生成,可以从已有代理列表生成扫描IP段
4,Changed: 重写SYN扫描程序pscan.exe代替过去的s.exe,带宽充足的条件下速度可提高四倍
5,Deleted: 删除TCP扫描功能,因为TCP扫描速度太慢,感觉比较鸡肋
6,Changed: 代理搜索模块添加MSN搜索支持
7,Changed: 更换内存管理模块

0:57 2007-3-10
1,Bugfix: 修正了ipcountry.exe中造成死循环的bug,感谢daixiy发现问题。
2,Added: tunnel, ssl代理验证支持
3,Changed:增强ipcountry国家选择功能,感谢Proxy@cnwebmasters再次提供思路
4,Added: 保存验证网址和其设置的参数功能,并添加20条分类验证地址。感谢daixiy提供创意。
5,Bugfix: 修正ipcountry最后一行结果重复的bug,感谢daixiy发现问题。
6,Added: 添加对"IP Port"型代理提取的支持。感谢daixiy提供创意。
7,Changed:扫描代理的时候,在