你的位置:首页 >> Archives for 11月, 2009
WinRAR 破解方法详解
热度:
WinRAR 破解方法详解
1.去http://www.winrar.com.cn/download.htm 下载正版的RAR 3.8试用版.
2.安装后.打开安装地址,默认应该是C:\Program Files\WinRAR
3.在WinRAR文件下,创建一个名为 rarreg.key 的文本文件.
4.打开文本文件.把下面这段文字复制进去(只复制文字,至于第一行的空格就免了- =…):
RAR registration data
Federal Agency for Education
1000000 PC usage license
UID=b621cca9a84bc5deffbf
6412612250ffbf533df6db2dfe8ccc3aae5362c06d54762105357d
5e3b1489e751c76bf6e0640001014be50a52303fed29664b074145
7e567d04159ad8defc3fb6edf32831fd1966f72c21c0c53c02fbbb
2f91cfca671d9c482b11b8ac3281cb21378e85606494da349941fa
e9ee328f12dc73e90b6356b921fbfb8522d6562a6a4b97e8ef6c9f
fb866be1e3826b5aa126a4d2bfe9336ad63003fc0e71c307fc2c60
64416495d4c55a0cc82d402110498da970812063934815d81470829275
这个也可以:
RAR registration data
Database Administrators
5 PC usage license
UID=54d582e921e445f1bfe8
6412212250bfe8e73e20bdb947f60ef0da9624150bcf8668412c68
84affda559742bbb686d6071302587655a7ba28d516e17834b7616
47cd79a293eb4c0e4fbf5e9f967e6ed5b28a02418d0ab2549fc4da
19e4644f2345190bf26ff7bcd0c819f12560b57cf28adc164a00c6
3174fcbb69509912e7c7c4793779b941901c6c793b7319cc395ee0
8bddb923fa08fc20019b59d0b246e0ac325d2e5854d4f97a602fc0
a4357b8f857cfb717545410ecad088fb28a2a3cf0dff2102863273
2选其一即可.保存后.WinRAR 就注册成功了O(∩_∩)O
Read More →
php语言的优缺点
热度:
PHP is simultaneously the most infuriating and joyful languages I’ve ever worked with. I say “infuriating” primarily because the function names are so inconsistant. Despite the fact that I use it almost everyday, I still have to think to myself “Is it str_pos or strpos? str_split or strsplit?” On the other hand, occasionally I’ll stumble across a gem that perfectly solves...
0 Comment
80 views
PHP读取和修改大文件的某行内容
让使用Apache的网站速度更快
Apache中禁止以目录方式访问的设置
基于nginx的PHP本地测试环境构建软件pinyshop发布
热度:
PHP+MySQL应用的范围很广,在这里我们将为大家介绍nginx,也就是PHP本地测试环境构建软件,希望对大家调试PHP有所帮助。
为了方便同学们开发PHPMySQL应用,NginxHome特发布pinyShop:快速绿色nginx+PHP+MySQL+memcache运行环境。
目前的软件版本是Nginx-0.8.19、MySQL-5.1.39、memcache1.2.1、PHP5.3.0、xdebug,nginx是一个高性能WEB服务/反向代理服务软件,被很多大型网站所采用,具有良好的性能。
相对于apache+PHP+MySQL,目前nginx+PHP+MySQL的配套运行环境比较少也比较不成熟。
由于nginx文档较少,配置方式对用户也比较陌生,所以阻挡了用户学习的脚步。
pinyShop目的在于推进nginx的应用。特色有
可定制性,保证用户通过简单的步骤即可满足各自的要求
简单即是美,BAT即可启动/关闭软件
便捷的虚拟主机,新建文件夹即是新建虚拟主机
适合调试使用,集成了xdebug,默认适合调试的PHP.ini文件
下载地址:...
Apache 的 httpd.conf 详解
Apache+php+mysql在XP下搭配详解
基于Apache的Web页面访问权限控制
Apache下伪静态html(URL Rewrite)的设置方法
热度:
一 打开 Apache 的配置文件 httpd.conf 。
二 将#LoadModule rewrite_module modules/mod_rewrite前面的#去掉
三 在 httpd.conf中添加:
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteCond %{ENV:SCRIPT_URL} (?:index|dispbbs)[-0-9]+\.html
RewriteRule ^(.*?(?:index|dispbbs))-([-0-9]+)\.html$ {GetProperty(Content)}.php?__is_apache_rewrite=1&__rewrite_arg=$2
</IfModule>
四...