上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页

2012年3月3日

摘要: 1. 调整IIS 7应用程序池队列长度由原来的默认1000改为65535。IIS Manager > ApplicationPools > Advanced SettingsQueue Length : 655352. 调整IIS 7的appConcurrentRequestLimit设置由原来的默认5000改为100000。直接运行: C:\Windows\System32\inetsrv\appcmd.exe set config /section:serverRuntime /appConcurrentRequestLimit:100000在%systemroot%\Syst 阅读全文

posted @ 2012-03-03 10:15 黔人阿诺 阅读(1014) 评论(0) 推荐(2)

2012年2月13日

摘要: 打开“Internet 信息服务(IIS)管理器”---点击“应用程序池”---找到SW所用的应用程序池,系统默认是DefaultAppool在“应用程序池”上单击右键,点击设置应用程序池默认设置,将第三项启用32位应用程序设为“True”经测试可以支持aspjpeg2版,w3JMail4Free版,学籍系统能够正常使用。Aspupload3不能支持。 阅读全文

posted @ 2012-02-13 17:19 黔人阿诺 阅读(132) 评论(0) 推荐(0)

2012年1月17日

摘要: 在IIS上配置FastCGI托管PHP代码有许多高级设置,在也有一些设置可调整,在Windows iis中,FastCGI设置是放在 applicationHost.config 配置文件中,我在这个文件中为PHP应用程序增加了以下FastCGI设置:<fastCgi><applicationfullPath="{approot}\php\php-cgi.exe"maxInstances="4"instanceMaxRequests="10000"requestTimeout="180"activ 阅读全文

posted @ 2012-01-17 02:36 黔人阿诺 阅读(302) 评论(0) 推荐(0)

2011年12月12日

摘要: ALTER TABLE `destoon_sell_5` ADD INDEX ( `status` ) ;ALTER TABLE `destoon_sell_5` ADD INDEX ( `vip` ) ;ALTER TABLE `destoon_sell_5` ADD INDEX ( `thumb 阅读全文

posted @ 2011-12-12 14:37 黔人阿诺 阅读(595) 评论(0) 推荐(0)

2011年10月4日

摘要: <?php/****************************************************************************Pinyin.php*------------------------------*Date:Nov7,2006*UsageExample:echoPinyin('这是WEB开发网');//默认是gb编码*UsageExample:echoPinyin('这是WEB开发网',1);//第二个参数随意设置即为utf8编码*************************************** 阅读全文

posted @ 2011-10-04 00:20 黔人阿诺 阅读(450) 评论(0) 推荐(1)

2011年7月5日

摘要: RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-f应写为RewriteCond %{REQUEST_FILENAME} !-f 阅读全文

posted @ 2011-07-05 22:58 黔人阿诺 阅读(244) 评论(0) 推荐(0)

2011年5月23日

摘要: 关于Parent: child process exited with status 3221225477 -- Restarting.php5与apache2.x环境报错:[notice] Parent: child process exited with status 3221225477 — Restarting.解决办法:copied the following two files from my PHP directory to the Win32 directory and the errors stopped : php5apache.dll, libmysql.dll.中文解析 阅读全文

posted @ 2011-05-23 14:00 黔人阿诺 阅读(313) 评论(0) 推荐(0)

2011年4月15日

摘要: 解决Can't connect to MySQL server on 'localhost' (10048), 一般见于使用mysql的windows 2003服务器.错误的出现的原因:应用程序需要快速释放和创建新连接, 但是由于 TIME_WAIT 中存在的连接超过默认值,导致较低吞吐量.解决方案:和本错误密切相关的两个windows的注册表项:TcpTimedWaitDelay和MaxUserPort的值.TcpTimedWaitDelay 确定 TCP/IP 可释放已关闭连接并重用其资源前, 必须经过的时间. 关闭和释放之间的此时间间隔通称 TIME_WAIT 状 阅读全文

posted @ 2011-04-15 18:58 黔人阿诺 阅读(388) 评论(0) 推荐(0)

摘要: RewriteCond %{REQUEST_FILENAME} !-f改成下面就可以了RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-f 阅读全文

posted @ 2011-04-15 10:32 黔人阿诺 阅读(427) 评论(0) 推荐(0)

2011年4月10日

摘要: Apache中 RewriteCond语句对于我来说一直是个难点,多次试图去把它搞明白,都没有结构,这次我终于算大概知道它的意思了。RewriteCond就像我们程序中的if语句一样,表示如果符合某个或某几个条件则执行RewriteCond下面紧邻的RewriteRule语句,这就是RewriteCond最原始、基础的功能,为了方便理解,下面来看看几个例子。RewriteEngine onRewriteCond %{HTTP_USER_AGENT} ^Mozilla\/5\.0.*RewriteRule index.php index.m.phpRewriteCond %{HTTP_USER_ 阅读全文

posted @ 2011-04-10 07:36 黔人阿诺 阅读(236) 评论(0) 推荐(0)

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页