﻿<?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; error</title>
	<atom:link href="http://www.yaoyingying.com/tag/error/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yaoyingying.com</link>
	<description>Everything you have seen here has been an illusion!</description>
	<lastBuildDate>Mon, 26 Jul 2010 05:17:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>php session tmp 路径错误</title>
		<link>http://www.yaoyingying.com/2009/07/20/php-warning-session_start-function-session-start-open/</link>
		<comments>http://www.yaoyingying.com/2009/07/20/php-warning-session_start-function-session-start-open/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 10:51:15 +0000</pubDate>
		<dc:creator>姚 迎迎</dc:creator>
				<category><![CDATA[代码人生]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[session]]></category>

		<guid isPermaLink="false">http://www.yaoyingying.com/?p=476</guid>
		<description><![CDATA[PHP出现 Warning: session_start() [function.session-start]: open Warning: session_start() [function.session-start]: open(/tmp\sess_84cb589ea249708b09c3d5e6836fdd0d, O_RDWR) failed: No such file or directory (2) in E:\web\htdocs\111.php on line 9 这个是session的tmp路径没有设置的缘故 你在php.ini(通常在C:\windows\ 目录下)的session.save_path设置一个路径就可以了，并且这个路径是有效的。比如：c:\winnt\temp]]></description>
		<wfw:commentRss>http://www.yaoyingying.com/2009/07/20/php-warning-session_start-function-session-start-open/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PhpMyAdmin 错误 &#8220;Cannot load mysql extension. Please check your PHP configuration&#8221;</title>
		<link>http://www.yaoyingying.com/2009/07/17/cannot-load-mysql-extension-please-check-your-php-configuration/</link>
		<comments>http://www.yaoyingying.com/2009/07/17/cannot-load-mysql-extension-please-check-your-php-configuration/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 10:55:17 +0000</pubDate>
		<dc:creator>姚 迎迎</dc:creator>
				<category><![CDATA[代码人生]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://www.yaoyingying.com/?p=470</guid>
		<description><![CDATA[Cannot load mysql extension. Please check your PHP configuration. ;extension=php_mysql.dll   ==&#62;&#62; extension=php_mysql.dll ;extension=php_mysqli.dll  ==&#62;&#62; extension=php_mysqli.dll extension_dir  &#8220;&#8221;               ==&#62;&#62; extension_dir = &#8220;C:\Program Files\PHP&#8221; Content of config.inc.php is: &#60;? $cfg['Servers'][1]['host'] = &#8216;localhost&#8217;; $cfg['Servers'][1]['extension'] = &#8216;mysql&#8217;; $cfg['Servers'][1]['connect_type'] = &#8216;tcp&#8217;; $cfg['Servers'][1]['compress'] = false; $cfg['Servers'][1]['auth_type'] = &#8216;config&#8217;; $cfg['Servers'][1]['user'] = &#8216;root&#8217;; $cfg['Servers'][1]['password'] = &#8216;aaaa&#8217;; ?&#62;]]></description>
		<wfw:commentRss>http://www.yaoyingying.com/2009/07/17/cannot-load-mysql-extension-please-check-your-php-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Fatal error: Maximum execution time&#8221;</title>
		<link>http://www.yaoyingying.com/2009/07/08/fatal-error-maximum-execution-time/</link>
		<comments>http://www.yaoyingying.com/2009/07/08/fatal-error-maximum-execution-time/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 09:42:33 +0000</pubDate>
		<dc:creator>姚 迎迎</dc:creator>
				<category><![CDATA[代码人生]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[Fatal error]]></category>
		<category><![CDATA[lamp]]></category>
		<category><![CDATA[Maximum execution time]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[set_time_limit]]></category>

		<guid isPermaLink="false">http://www.yaoyingying.com/?p=452</guid>
		<description><![CDATA[&#8220;Fatal error: Maximum execution time of 60 seconds exceeded in &#8230;&#8221; 这种错误大多出现在一些执行时间比较久的程序，例如循环、读取、上传等等（瞎写凑字数）。 大多原因在于 PHP 环境的PHP.ini 里的 max_execution_time 的设置，30，60，90&#8230;.,但是有时候我们需要更长的时间，几小时，几十小时，总不可能都在这儿修改，况且大多空间是不让你改的。 这样最简便的方法就是在程序头加上这样一句： set_time_limit(0); 不限制执行时间，OK，问题就算解决了！]]></description>
		<wfw:commentRss>http://www.yaoyingying.com/2009/07/08/fatal-error-maximum-execution-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fatal error: Call to undefined function: stripos()</title>
		<link>http://www.yaoyingying.com/2009/05/04/undefined-function-stripos/</link>
		<comments>http://www.yaoyingying.com/2009/05/04/undefined-function-stripos/#comments</comments>
		<pubDate>Tue, 05 May 2009 02:23:38 +0000</pubDate>
		<dc:creator>姚 迎迎</dc:creator>
				<category><![CDATA[代码人生]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[stripos]]></category>

		<guid isPermaLink="false">http://www.yaoyingying.com/?p=274</guid>
		<description><![CDATA[为什么会有这样的错误 &#8220;Fatal error: Call to undefined function: stripos()&#8221;？ 查看了下手册： stripos (PHP 5) stripos &#8212; Find position of first occurrence of a case-insensitive string 原来他是个PHP5作用的函数，但是网路上还是有很多服务空间是用的 php 4.3, 那么可以用下面的方法解决这个问题： if&#40;!function_exists&#40;'stripos'&#41;&#41; &#123; function stripos&#40;$haystack, $needle, $offset = 0&#41; &#123; return strpos&#40;strtolower&#40;$haystack&#41;, strtolower&#40;$needle&#41;, $offset&#41;; &#125; &#125;]]></description>
		<wfw:commentRss>http://www.yaoyingying.com/2009/05/04/undefined-function-stripos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php代码出现错误分析详解</title>
		<link>http://www.yaoyingying.com/2009/05/04/php%e4%bb%a3%e7%a0%81%e5%87%ba%e7%8e%b0%e9%94%99%e8%af%af%e5%88%86%e6%9e%90%e8%af%a6%e8%a7%a3/</link>
		<comments>http://www.yaoyingying.com/2009/05/04/php%e4%bb%a3%e7%a0%81%e5%87%ba%e7%8e%b0%e9%94%99%e8%af%af%e5%88%86%e6%9e%90%e8%af%a6%e8%a7%a3/#comments</comments>
		<pubDate>Mon, 04 May 2009 16:31:33 +0000</pubDate>
		<dc:creator>姚 迎迎</dc:creator>
				<category><![CDATA[代码人生]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[错误]]></category>

		<guid isPermaLink="false">http://www.yaoyingying.com/?p=272</guid>
		<description><![CDATA[由于最近总是接触到php，经常会出现一些错误，特把php的常见的错误代码收集了下，希望对大家有帮助。 错误类型： 一、未使用二进制上传 代码: Fatal error: This encoded file is corrupted. Please refer to http://www.zend.com/support/support_faq.php?id=loader_file_corrupt for further help in /webhome/****.com/web/www/index.php on line 0 二、数据表中缺少字段 代码: An error was encountered Boka SiteEngine 数据库错误 错误信息1054: Unknown column &#8216;tuijian&#8217; in &#8216;where clause&#8217; 出现错误的查询信息是 SELECT * FROM boka_product WHERE tuijian=1 AND classid IN (&#8217;1&#8242;,&#8217;0&#8242;)ORDER BY id DESC LIMIT 4 [...]]]></description>
		<wfw:commentRss>http://www.yaoyingying.com/2009/05/04/php%e4%bb%a3%e7%a0%81%e5%87%ba%e7%8e%b0%e9%94%99%e8%af%af%e5%88%86%e6%9e%90%e8%af%a6%e8%a7%a3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
