<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>The Error Message</title>
	<link>http://www.theerrormessage.com</link>
	<description>Here you can find how to solve, fix your error</description>
	<lastBuildDate>Sun, 18 Jul 2010 03:21:10 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0" -->

	<item>
		<title>Updating multiple fields in multiple rows with different values in a single query in MySQL using the CASE operator does not supply a correct result</title>
		<description><![CDATA[Suppose we have a table with rows representing nodes of a tree structure, each node being represented by an id, a parent id and a position between the children of its parent node: CREATE TABLE `tree`.`node` ( `idnode` TINYINT NOT NULL AUTO_INCREMENT , `idnode_parent` TINYINT NULL , `position` TINYINT NULL , PRIMARY KEY ( `idnode` [...]]]></description>
		<link>http://www.theerrormessage.com/2010/07/updating-multiple-fields-in-multiple-rows-with-different-values-in-a-single-query-in-mysql-using-the-case-operator-does-not-supply-a-correct-result/</link>
			</item>
	<item>
		<title>NTLDR is missing</title>
		<description><![CDATA[Problem: Computer with Windows XP Professional operation system froze unexpectedly. No recent hardware changes performed, no applications recently installed. I reeboted. &#8220;NTLDR is missing&#8221; error occured. I noticed that the system did not detect the hard disk drive where the operating system resided but I fixed this by reseating the IDE cables. Though the error [...]]]></description>
		<link>http://www.theerrormessage.com/2010/04/ntldr-is-missing/</link>
			</item>
	<item>
		<title>How to convert server date and time to the local date and time taking into account daylight saving time</title>
		<description><![CDATA[&#8216;Many countries, or even parts of countries, adopt daylight saving time (DST, also known as &#8220;Summer Time&#8221;) during part of the year. This typically involves advancing clocks by an hour near the start of spring and adjusting back in autumn (&#8220;spring&#8221; forward, &#8220;fall&#8221; back).&#8217; (see Wikipedia) Now I will demonstrate how we can convert a [...]]]></description>
		<link>http://www.theerrormessage.com/2009/10/convert-server-time-to-local-time-taking-into-account-daylight-saving-time/</link>
			</item>
	<item>
		<title>SoftException in Application.cpp:544: Directory &#8220;/path/dir&#8221; is writeable by group</title>
		<description><![CDATA[Full error message: SoftException in Application.cpp:544: Directory &#8220;/path/to/directory&#8221; is writeable by group The error apeared in cpanel logs at a hosting company and was related to a directory I created via ftp and where I tried to run some php script. When accessing the script from the web browser i got the error &#8220;500 Internal [...]]]></description>
		<link>http://www.theerrormessage.com/2009/10/softexception-in-application-cpp544-directory-pathdir-is-writeable-by-group/</link>
			</item>
	<item>
		<title>How to recover a hard deleted store folder in Microsoft Outlook Express 6</title>
		<description><![CDATA[It happened for several times that I accidentally hard deleted a store folder in Microsoft Outlook Express 6 when trying to delete an email in that folder (both the folder and the e-mail looked like being selected, but it seems that the focus was on the folder and not the e-mail as I expected). Seems [...]]]></description>
		<link>http://www.theerrormessage.com/2009/09/how-to-recover-a-hard-deleted-store-folder-in-microsoft-outlook/</link>
			</item>
	<item>
		<title>When submitting a PHP form, the script does not stop</title>
		<description><![CDATA[If you submit a PHP form which passes a large amount of data using the POST method, like a file upload form, it would be a good idea to increase the value of the PHP configuration variable post_max_size (you will find it in the php.ini file) if it seems like the script is running forever. [...]]]></description>
		<link>http://www.theerrormessage.com/2009/08/when-submitting-a-php-form-the-script-does-not-stop/</link>
			</item>
	<item>
		<title>Importing a MySQL data file using phpMyAdmin results in incomplete data in MySQL</title>
		<description><![CDATA[I tried moving all my databases from MySQL 4.1 to MySQL 5.1 on Windows and since I had some InnoDB tables I could not just copy the data files between MySQL Server versions (from C:\Documents and Settings\All Users\Application Data\MySQL\MySQL 4.1\data\ to  C:\Documents and Settings\All Users\Application Data\MySQL\MySQL 5.1\data\). So, after I exported the data from the [...]]]></description>
		<link>http://www.theerrormessage.com/2009/08/importing-a-mysql-data-file-using-phpmyadmin-results-in-incomplete-data-in-mysql/</link>
			</item>
	<item>
		<title>base html tag does not apply correctly to all javascript and style files</title>
		<description><![CDATA[Problem: The &#60;base href="http://example.com/path/to/res/"&#62;  did not work at all on Internet Explorer &#8211; no javascript or style files were loaded and worked partially in Mozilla Firefox &#8211; a few javascript files were not pointing to the path that should be transformed by base href attribute. Example: Array( [0] =&#62; 1 ) &#60;!DOCTYPE html PUBLIC "-//W3C//DTD [...]]]></description>
		<link>http://www.theerrormessage.com/2009/07/base-html-tag-does-not-apply-correctly-to-all-javascript-and-style-files/</link>
			</item>
	<item>
		<title>Object doesn&#8217;t support property or method. Adding options in a &lt;select&gt; from a child window on Internet Explorer</title>
		<description><![CDATA[Full error message:  Object doesn&#8217;t support property or method. I got this error message in Internet Explorer 7 every time i tried to run code similar to the next snippet: window.opener.form.select[select.length]  = new Option(text, value); The problem is that on Internet Explorer due to some mysterious security restrictions you are not allowed to add new [...]]]></description>
		<link>http://www.theerrormessage.com/2009/03/object-doesnt-support-property-or-method-adding-options-in-a-select-from-a-child-window-on-internet-explorer/</link>
			</item>
	<item>
		<title>jquery pngFix fixed</title>
		<description><![CDATA[I tried to use the pngFix from this website: http://jquery.andreaseberhard.de/pngFix/. But it didn&#8217;t work and i received an javascript error in IE6. After several minutes of debugging and tries i found out that the error is generated by old syntax in selecting elements. It used jQuery(this).find("img[@src$=.png]").each(...); instead of jQuery(this).find("img[src$=.png]").each(...); So the fix is: Remove the [...]]]></description>
		<link>http://www.theerrormessage.com/2009/03/jquery-pngfix-fixed/</link>
			</item>
</channel>
</rss>
