<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>网络规划设计师资料_网络工程师资料_系统与网络故障解决方法学习资料分享&#187; 程序设计</title>
	<atom:link href="http://www.itlogger.com/category/program/feed" rel="self" type="application/rss+xml" />
	<link>http://www.itlogger.com</link>
	<description>与你分享最新网络技术资讯与学习心得，携手向网络规划设计师级网管迈进</description>
	<lastBuildDate>Fri, 27 Jan 2012 12:01:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>sqlserver企业管理器使用sa账户未能建立与（local）连接的解决方法</title>
		<link>http://www.itlogger.com/program/1793.html</link>
		<comments>http://www.itlogger.com/program/1793.html#comments</comments>
		<pubDate>Sat, 10 Dec 2011 00:43:14 +0000</pubDate>
		<dc:creator>Network</dc:creator>
				<category><![CDATA[程序设计]]></category>
		<category><![CDATA[sqlserver]]></category>

		<guid isPermaLink="false">http://www.itlogger.com/?p=1793</guid>
		<description><![CDATA[sqlserver企业管理器使用sa账户未能建立与（local）的连接，但windows系统身份可以连上数据库，通常是因为sa密码错误导致，修改sa密码即可解决。 1、在查询分析器中执行 EXEC sp_password NULL, &#8216;新密码&#8217;, &#8216;sa&#8217; 修改sa密码。 2、在企业管理器的SQL Server 组新建SQL注册]]></description>
		<wfw:commentRss>http://www.itlogger.com/program/1793.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLSERVER 不能远程连接的完美解决方案</title>
		<link>http://www.itlogger.com/program/1792.html</link>
		<comments>http://www.itlogger.com/program/1792.html#comments</comments>
		<pubDate>Sat, 10 Dec 2011 00:34:43 +0000</pubDate>
		<dc:creator>Network</dc:creator>
				<category><![CDATA[程序设计]]></category>
		<category><![CDATA[sqlserver]]></category>

		<guid isPermaLink="false">http://www.itlogger.com/?p=1792</guid>
		<description><![CDATA[SQLserver不能远程连接，通常是因为没有升级SP4补丁（可以直接看第6部分）、或则本地连接防火墙未允许远程连接SQLserver的可能性最高。 常见的错误为： The Network Adapter could not establish the connection 1 检查SQL SERVER 是否允许远程访问. 具体步骤: 1)打开”企业管理器”,打开控制台根目录&#62;SQL Server 组&#62;数据库 2)在相应”数据库”上单击右键,选择”属性” 3)选择”连接”选项卡,检查”远程服务器连接”下,RPC服务是否选择. 2 使用telnet IP地址 1433,系统是否提示连接出错 比如 telnet 127.0.0.1 1433 如果出现黑屏，这端口正常 如系统提示出错 检查是否防火墙屏蔽了SQL SERVER 或 java IDE 的网络访问端口 如果是,关闭防火墙,重新启动SQL SERVER和java IDE,进行测试, 如果系统仍提示上述错误,尝试下列步骤 &#8230; <a href="http://www.itlogger.com/program/1792.html">继续阅读 <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.itlogger.com/program/1792.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.net使用urlmapping实现aspx映射为html的伪静态</title>
		<link>http://www.itlogger.com/program/1791.html</link>
		<comments>http://www.itlogger.com/program/1791.html#comments</comments>
		<pubDate>Sat, 03 Dec 2011 03:30:15 +0000</pubDate>
		<dc:creator>Network</dc:creator>
				<category><![CDATA[程序设计]]></category>
		<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://www.itlogger.com/?p=1791</guid>
		<description><![CDATA[ASP.net的urlmapping功能可以实现aspx映射为html的伪静态，步骤如下： 1、配置web.config文件 &#60;urlMappings enabled=”true”&#62; &#60;add url=”~/index.html” mappedUrl=”~/Default.aspx”/&#62; &#60;/urlMappings&#62; 2、IIS中配置aspx到html的映射 iis中网站&#8212;属性&#8212;主目录&#8212;配置&#8212;映射&#8212;-添加 可执行文件为默认为:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll 请做对应的处理 扩展名为:html 限制行为:GET,HEAD,POST,DEBUG 确认文件是否存在:默认为选中,请将此项不要选中（如果选中将会出现映射不成功，显示页面已删除，找不到）]]></description>
		<wfw:commentRss>http://www.itlogger.com/program/1791.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET提示 Server Error in &#8216;/&#8217; Application错误Child nodes not allowed</title>
		<link>http://www.itlogger.com/program/1789.html</link>
		<comments>http://www.itlogger.com/program/1789.html#comments</comments>
		<pubDate>Wed, 23 Nov 2011 12:35:26 +0000</pubDate>
		<dc:creator>Network</dc:creator>
				<category><![CDATA[程序设计]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://www.itlogger.com/?p=1789</guid>
		<description><![CDATA[ASP.NET本机测试正常，win2003+iis6.0+.net 2.0服务器发布时，出现如下提示： Server Error in &#8216;/&#8217; Application. Configuration Error DescrIPtion: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Child &#8230; <a href="http://www.itlogger.com/program/1789.html">继续阅读 <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.itlogger.com/program/1789.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress静态化后搜索页的分页不能正常显示的解决方法</title>
		<link>http://www.itlogger.com/program/1776.html</link>
		<comments>http://www.itlogger.com/program/1776.html#comments</comments>
		<pubDate>Wed, 09 Nov 2011 07:09:28 +0000</pubDate>
		<dc:creator>logger</dc:creator>
				<category><![CDATA[程序设计]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.itlogger.com/?p=1776</guid>
		<description><![CDATA[wordpress静态化后搜索页第一页可以显示，第二页开始就跳转到404，,分页不能正常显示的，通过修改htaccess(apache),httpd.ini(IIS)规则解决该问题 RewriteRule ^/page/([0-9]+)\?s=(.*)$ /index\.php\?s=$2&#38;paged=$1 [L]]]></description>
		<wfw:commentRss>http://www.itlogger.com/program/1776.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Navicat连接mysql数据库记录中文乱码的解决方法</title>
		<link>http://www.itlogger.com/program/1786.html</link>
		<comments>http://www.itlogger.com/program/1786.html#comments</comments>
		<pubDate>Wed, 09 Nov 2011 02:37:55 +0000</pubDate>
		<dc:creator>Network</dc:creator>
				<category><![CDATA[程序设计]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.itlogger.com/?p=1786</guid>
		<description><![CDATA[Navicat连接mysql数据库，打开表记录中文显示乱码，参考以下解决方法 点击某个连接—-属性-切换到高级选项卡&#8211;去掉勾选的“使用mysql字符集” 选项&#8211;在“编码”处选择65001(UTF-8)或10008-GB2312，再打开就能正常显示中文了。]]></description>
		<wfw:commentRss>http://www.itlogger.com/program/1786.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asp时间/日期转换格式化函数</title>
		<link>http://www.itlogger.com/program/1769.html</link>
		<comments>http://www.itlogger.com/program/1769.html#comments</comments>
		<pubDate>Wed, 05 Oct 2011 07:36:33 +0000</pubDate>
		<dc:creator>logger</dc:creator>
				<category><![CDATA[程序设计]]></category>

		<guid isPermaLink="false">http://www.itlogger.com/?p=1769</guid>
		<description><![CDATA[ASP程序在显示时间的时候，如果是短格式时间如2011/9/10显示出来的日期长度不一，影响排版视觉，通过ASP时间/日期格式化函数formatdate，可以解决这一问题。 asp时间/日期格式化函数 function formatdate(dateandtime,para) on error resume next dim y, m, d, h, mi, s, strdatetime formatdate = dateandtime if not isnumeric(para) then exit function if not isdate(dateandtime) then exit function y = cstr(year(dateandtime)) m = cstr(month(dateandtime)) if len(m) = &#8230; <a href="http://www.itlogger.com/program/1769.html">继续阅读 <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.itlogger.com/program/1769.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sql按日期/时间排序顺序不正确的解决方法</title>
		<link>http://www.itlogger.com/program/1768.html</link>
		<comments>http://www.itlogger.com/program/1768.html#comments</comments>
		<pubDate>Mon, 03 Oct 2011 11:44:57 +0000</pubDate>
		<dc:creator>logger</dc:creator>
				<category><![CDATA[程序设计]]></category>
		<category><![CDATA[排序]]></category>

		<guid isPermaLink="false">http://www.itlogger.com/?p=1768</guid>
		<description><![CDATA[access数据sql select语句读取记录按时间倒序排序，时间格式2011/10/3与2011/10/11将出现不正确排序，通过cdate函数可解决该问题 sql=”select * from news  order by  cdate(a_time) desc”]]></description>
		<wfw:commentRss>http://www.itlogger.com/program/1768.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress放在windows主机子目录的静态化httpd.ini规则写法</title>
		<link>http://www.itlogger.com/program/1766.html</link>
		<comments>http://www.itlogger.com/program/1766.html#comments</comments>
		<pubDate>Mon, 03 Oct 2011 10:48:17 +0000</pubDate>
		<dc:creator>logger</dc:creator>
				<category><![CDATA[程序设计]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.itlogger.com/?p=1766</guid>
		<description><![CDATA[wordpress程序放在windows主机的网站子目录下，IIS_rewrite伪静态/静态化文件httpd.ini规则的写法如下： [ISAPI_Rewrite] CacheClockRate 3600 RepeatLimit 32 RewriteCond Host: ^tao-what\.com$ RewriteRule (.*) http\://www\.tao-what\.com$1 [I,RP] #拒绝访问httpd.ini和httpd.parse.errors RewriteRule /httpd(?:.ini&#124;.parse.errors) / [F,I,O] #拒绝访问特定后缀名的文件 RewriteRule .*.isrwhlp / [F,I,O] # Defend your computer from some worm attacks #RewriteRule .*(?:global.asa&#124;default.ida&#124;root.exe&#124;..).* . [F,I,O] #将凡是域名二级目录为blog的（即domain.com/blog类似的）指向 blog.benhuoer.com/ #RewriteCond Host: (.+) &#8230; <a href="http://www.itlogger.com/program/1766.html">继续阅读 <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.itlogger.com/program/1766.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smarty error: unable to read resource: \”index.html\” in Smarty.class.php</title>
		<link>http://www.itlogger.com/program/1760.html</link>
		<comments>http://www.itlogger.com/program/1760.html#comments</comments>
		<pubDate>Mon, 12 Sep 2011 01:15:14 +0000</pubDate>
		<dc:creator>Network</dc:creator>
				<category><![CDATA[程序设计]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.itlogger.com/?p=1760</guid>
		<description><![CDATA[PHP使用模板引擎smarty，读取模板出错提示：Warning: Smarty error: unable to read resource: \”index.html\” in libs\\Smarty.class.php on line 1095 问题原因：模板目录设置不正确 解决方法：在出错页面调用echo $Tpl->template_dir; 查看模板对应的位置，在配置文件里修改相应模板正确位置即可。]]></description>
		<wfw:commentRss>http://www.itlogger.com/program/1760.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

