摘要: windows下的配置:ThreadLimitThreadsPerChildMaxRequestsPerChild。。。学习中 阅读全文
posted @ 2013-10-20 18:01 sleepyy 阅读(226) 评论(0) 推荐(0)
摘要: http://httpd.apache.org/docs/2.2/en/mpm.htmlApache Http Server采用模块化设计保证其灵活性和可伸缩行,可运行于各种操作系统。需要的模块可在编译时包含、或在运行时配置。从Apache2.0开始,这种模块化的设计思想更是延伸到了其基础功能上;可按环境选择配置的MPM就是一例。一、MPM是什么?MPM是由Apache Server的最基础功能抽象出来的一个模块,其功能包括:(1)绑定Http服务到服务器指定的端口(2)接受requests(3)将接受到的requests调度给子进程/线程处理二、MPM必须在编译时指定,从apache.org 阅读全文
posted @ 2013-10-20 13:36 sleepyy 阅读(226) 评论(0) 推荐(0)
摘要: http://blog.sina.com.cn/s/blog_495034f10100d3e1.htmlhttp://baike.baidu.com/view/40743.htm 阅读全文
posted @ 2013-10-09 15:05 sleepyy 阅读(102) 评论(0) 推荐(0)
摘要: padding-top:.01em;或者overflow:hidden;具体原因有待指教外边距合并参考这里:http://w3school.com.cn/css/css_margin.asp 阅读全文
posted @ 2013-09-30 16:56 sleepyy 阅读(347) 评论(0) 推荐(0)
摘要: 转载的,确实能解决问题,原因不明,求指教,谢谢!本人实验,chrome下多出3px,firefox下多出5pxli或dd 浮动后增加图片时高度多出3-5px的问题dd或li或a标签内,插入图片后,下方会增加4PX高度(间距),解决方法:1.将图像定义成block (display:block)2.给dd或li固定高度,然后overflow:hidden3.设置 ul 的 font-size:0;4.设置 img 的 vertical-align: bottom;5.设置 img 的 margin-bottom: -4px;其中第4个方法一般是为了解决li里面有双浮动:111111比如这里a和s 阅读全文
posted @ 2013-09-23 16:43 sleepyy 阅读(361) 评论(0) 推荐(1)
摘要: from:http://comments.gmane.org/gmane.comp.handhelds.phonegap/52593- delete the HKEY_CLASSES_ROOT\.js key in the registry- open a terminal with admin privileges and execute:assoc .js=JSFILE 阅读全文
posted @ 2013-08-26 16:13 sleepyy 阅读(3405) 评论(1) 推荐(0)
摘要: 详细参考:http://blog.csdn.net/crazyxingjc/article/details/7756299语法:select * from table start with cond1 connect by cond2 where cond3;典型的查询方式:(1)查子节点select t.id, t.pid, t.name from t_tree t start with t.id = 100 --开始节点 connect by prior t.id = t.pid; -- id优先,向下查子节点 -- 或 connect by t.pid = prior t.... 阅读全文
posted @ 2013-05-24 14:44 sleepyy 阅读(214) 评论(0) 推荐(0)
摘要: windows查看chm使用的是系统自带的hh.exe工具,可以在cmd下调用hh.exe自带的反编译功能提取html> hh -decompile target_folder chm_path 阅读全文
posted @ 2013-05-16 11:06 sleepyy 阅读(393) 评论(0) 推荐(0)
摘要: 1 sqlplus /nolog; 2 connect / as sysdba; 3 alter user sys identified by newPassword;4 alter user system identified by newPassword; 阅读全文
posted @ 2013-05-13 08:47 sleepyy 阅读(146) 评论(0) 推荐(0)
摘要: 转自:http://network.chinabyte.com/303/12226303.shtml 一、经典的启动——“启动”文件夹 单击“开始→程序”,你会发现一个“启动”菜单,这就是最经典的Windows启动位置,右击“启动”菜单选择“打开”即可将其打开,其中的程序和快捷方式都会在系统启动时自动运行。 二、有名的启动——注册表启动项 注册表是启动程序藏身之处最多的地方,主要有以下几项: 1.Run键 Run键是病毒最青睐的自启动之所,该键位置是[HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Run]和[... 阅读全文
posted @ 2013-05-11 23:37 sleepyy 阅读(1335) 评论(0) 推荐(0)