摘要:
参见我上一篇文章:http://www.cnblogs.com/nevernet/archive/2012/06/09/2543012.html问题发生在创建hyper-v虚拟网络后。解决办法:Using regedit, navigate toHKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\ParametersAnd on that key, make a new DWORD, and name it DisableTaskOffload. Set its value to 1.Reboot或者:搞定。 阅读全文
摘要:
事实上,我们都知道设置php显示错误,但是在iis7/7.5下,还需要额外的配置。首先看php的配置:代码如下:12display_errors = on;error_reporting = E_ALL & ~E_NOTICE;iis的配置, 注意你首先需要在你的网站根目录添加web.config文件:代码如下:12345678910111213141516<?xml version="1.0" encoding="UTF-8"?><!--For more information on how to configure your 阅读全文
摘要:
代码如下:<?xml version="1.0" encoding="UTF-8"?><!-- For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=169433 --><configuration> <system.web> <compilation debug="true" targetFrame 阅读全文
摘要:
two settings in web.config file:1. Add to system.web node<httpRuntime executionTimeout="18000" maxRequestLength="2097151" useFullyQualifiedRedirectUrl="false" minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100" e 阅读全文