<?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>Leoganda.net &#187; Error</title>
	<atom:link href="http://www.leoganda.net/tag/error/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.leoganda.net</link>
	<description></description>
	<lastBuildDate>Fri, 09 Dec 2011 04:12:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>The System Cannot Execute The Specified Program C++</title>
		<link>http://www.leoganda.net/the-system-cannot-execute-the-specified-program-c/</link>
		<comments>http://www.leoganda.net/the-system-cannot-execute-the-specified-program-c/#comments</comments>
		<pubDate>Tue, 25 May 2010 16:31:38 +0000</pubDate>
		<dc:creator>leoganda</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Error]]></category>

		<guid isPermaLink="false">http://www.leoganda.net/?p=76</guid>
		<description><![CDATA[Today I made a simple console application using Visual C++ 2008 and it was runs well on my development machine. But the problem occurred when I run the application on another machine, the error says &#8220;The system cannot execute the specified program&#8220;. I was guessing the problem occurred because of missing library or something, after [...]]]></description>
			<content:encoded><![CDATA[<p>Today I made a simple console application using Visual C++ 2008 and it was runs well on my development machine. But the problem occurred when I run the application on another machine, the error says &#8220;<strong>The system cannot execute the specified program</strong>&#8220;. I was guessing the problem occurred because of missing library or something, after short analysis both machine have the correct and the same library. So what&#8217;s going on??</p>
<p>I googled for this error and found <a href="http://blogs.msdn.com/b/nikolad/archive/2005/06/08/427101.aspx" target="_blank">this article</a>, it explains how this problem occurred on compiled C++ application. There&#8217;s two type of build on VC++ ( Debug and Release), my application was built in debug mode and <strong>we can&#8217;t re-distribute the application on debug mode</strong>. The built program in debug mode only runs on development machine, so in order to distribute my app I should build my application in &#8216;Release&#8217; mode. Time to switch from &#8216;Debug&#8217; to &#8216;Release&#8217; mode,</p>
<p>Open your <em>Visual Studio-&gt;(Open Project)-&gt;Project-&gt;(project name) properties</em></p>
<p><em>select the Build Tab, in configuration option choose &#8220;Release&#8221;.</em></p>
<p>Rebuild your project, you will find &#8220;Release&#8221; folder, your released application is in there.</p>
<h4>What people search:</h4><ul><li><a href="http://www.leoganda.net/the-system-cannot-execute-the-specified-program-c/" title="xampp The system cannot execute the specified program">xampp The system cannot execute the specified program</a></li><li><a href="http://www.leoganda.net/the-system-cannot-execute-the-specified-program-c/" title="The system cannot execute the specified program">The system cannot execute the specified program</a></li><li><a href="http://www.leoganda.net/the-system-cannot-execute-the-specified-program-c/" title="The system cannot execute the specified program xampp">The system cannot execute the specified program xampp</a></li><li><a href="http://www.leoganda.net/the-system-cannot-execute-the-specified-program-c/" title="system cannot execute the specified program">system cannot execute the specified program</a></li><li><a href="http://www.leoganda.net/the-system-cannot-execute-the-specified-program-c/" title="xampp system cannot execute the specified program">xampp system cannot execute the specified program</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.leoganda.net/the-system-cannot-execute-the-specified-program-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setup was unable to open information file setupqry.inf</title>
		<link>http://www.leoganda.net/setup-was-unable-to-open-information-file-setupqry-inf/</link>
		<comments>http://www.leoganda.net/setup-was-unable-to-open-information-file-setupqry-inf/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 04:42:27 +0000</pubDate>
		<dc:creator>leoganda</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.leoganda.net/?p=57</guid>
		<description><![CDATA[Hi there, today I was trying to install IIS on my local computer and I got an error &#8220;Setup was unable to open information file setupqry.inf Contact your system admin. The specific error code is 0&#215;2 at line 0&#8220;. This problem occured after I upgrade my Windows XP SP2 to SP3. The error showed up [...]]]></description>
			<content:encoded><![CDATA[<p>Hi there, today I was trying to install IIS on my local computer and I got an error &#8220;<strong>Setup was unable to open information file setupqry.inf Contact your system admin. The specific error code is 0&#215;2 at line 0</strong>&#8220;.</p>
<p>This problem occured after I upgrade my Windows XP SP2 to SP3.</p>
<p>The error showed up because some file are missing when system upgraded to SP3. Here&#8217;s the list of missing file.</p>
<p><code><br />
<strong>setupqry.inf<br />
optional.inf<br />
msnmsn.inf</strong></code></p>
<p><code><strong>setupqry.dll<br />
msgrocm.dll<br />
ocmsn.dll</strong></code></p>
<p>Paste those inf file to your <code>Windows\inf</code> directory and paste the dll file to <code>windows\system32\setup</code>. It&#8217;s fix my problem.</p>
<p>You can <a href="http://www.leoganda.net/wp-content/uploads/2009/12/Windows.zip">download those file here,</a> just extract it to your windows directory.</p>
<h4>What people search:</h4><ul><li><a href="http://www.leoganda.net/setup-was-unable-to-open-information-file-setupqry-inf/" title="setupqry inf">setupqry inf</a></li><li><a href="http://www.leoganda.net/setup-was-unable-to-open-information-file-setupqry-inf/" title="setup was unable to open information file setupqry inf">setup was unable to open information file setupqry inf</a></li><li><a href="http://www.leoganda.net/setup-was-unable-to-open-information-file-setupqry-inf/" title="setup was unable to open information file setupqry inf sp3">setup was unable to open information file setupqry inf sp3</a></li><li><a href="http://www.leoganda.net/setup-was-unable-to-open-information-file-setupqry-inf/" title="setup was unable to open information file fxsocm inf">setup was unable to open information file fxsocm inf</a></li><li><a href="http://www.leoganda.net/setup-was-unable-to-open-information-file-setupqry-inf/" title="setupqry inf unable open">setupqry inf unable open</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.leoganda.net/setup-was-unable-to-open-information-file-setupqry-inf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solving Zend Framework error &#8220;An Error Has Occurred A project profile was not found&#8221;</title>
		<link>http://www.leoganda.net/solving-zend-framework-error-an-error-has-occurred-a-project-profile-was-not-found/</link>
		<comments>http://www.leoganda.net/solving-zend-framework-error-an-error-has-occurred-a-project-profile-was-not-found/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 02:39:22 +0000</pubDate>
		<dc:creator>leoganda</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://www.leoganda.net/?p=47</guid>
		<description><![CDATA[Hi there, I had an error &#8220;An Error Has Occurred A project profile was not found&#8221; on Zend framework command line when I tried to generate an action for my project. I&#8217;m using Windows XP and for the web server I&#8217;m using XAMPP. The &#8220;An Error Has Occurred A project profile was not found&#8221; happened [...]]]></description>
			<content:encoded><![CDATA[<p>Hi there, I had an error &#8220;<strong>An Error Has Occurred A project profile was not found</strong>&#8221; on Zend framework command line when I tried to generate an action for my project. I&#8217;m using Windows XP and for the web server I&#8217;m using XAMPP. The &#8220;<strong>An Error Has Occurred A project profile was not found</strong>&#8221; happened because we have wrong include path in our php.ini.</p>
<p>Open your php.ini and find the include_path line, insert your zend framework library path into the line before the PEAR path.</p>
<p><code>include_path = ".;E:\xampp\htdocs\ZendFramework\library;E:\xampp\php\PEAR"</code></p>
<p>Save the file and restart your Apache. Good luck <img src='http://www.leoganda.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h4>What people search:</h4><ul><li><a href="http://www.leoganda.net/solving-zend-framework-error-an-error-has-occurred-a-project-profile-was-not-found/" title="An Error Has Occurred A project profile was not found">An Error Has Occurred A project profile was not found</a></li><li><a href="http://www.leoganda.net/solving-zend-framework-error-an-error-has-occurred-a-project-profile-was-not-found/" title="A project profile was not found">A project profile was not found</a></li><li><a href="http://www.leoganda.net/solving-zend-framework-error-an-error-has-occurred-a-project-profile-was-not-found/" title="An Error Has OccurredA project profile was not found">An Error Has OccurredA project profile was not found</a></li><li><a href="http://www.leoganda.net/solving-zend-framework-error-an-error-has-occurred-a-project-profile-was-not-found/" title="a project profile was not found zend">a project profile was not found zend</a></li><li><a href="http://www.leoganda.net/solving-zend-framework-error-an-error-has-occurred-a-project-profile-was-not-found/" title="zend A project profile was not found">zend A project profile was not found</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.leoganda.net/solving-zend-framework-error-an-error-has-occurred-a-project-profile-was-not-found/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

