<?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>42 &#187; heroku</title>
	<atom:link href="http://www.42.mach7x.com/tag/heroku/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.42.mach7x.com</link>
	<description>Thoughts and tips about programming with Ruby on Rails</description>
	<lastBuildDate>Fri, 06 Aug 2010 11:57:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>git: fatal error: `chdir&#8217; failed: permission denied.</title>
		<link>http://www.42.mach7x.com/2008/04/24/git-fatal-error-chdir-failed-permission-denied/</link>
		<comments>http://www.42.mach7x.com/2008/04/24/git-fatal-error-chdir-failed-permission-denied/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 13:20:30 +0000</pubDate>
		<dc:creator>kosmas</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[heroku]]></category>
		<category><![CDATA[Mandriva]]></category>

		<guid isPermaLink="false">http://www.42.mach7x.com/?p=30</guid>
		<description><![CDATA[Problem Trying to use the heroku gem to clone a project and do local modifications I got the following error: git: fatal error: `chdir' failed: permission denied. Solution It turns out that in Mandriva, when using: sudo urpmi git what gets installed is the &#8216;GNU Interactive Tools&#8217; that has nothing to do with the git [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong><br />
Trying to use the heroku gem to clone a project and do local modifications I got the following error:</p>
<pre class="code">git: fatal error: `chdir' failed: permission denied.</pre>
<p><strong>Solution</strong><br />
It turns out that in Mandriva, when using:</p>
<pre class="code">sudo urpmi git</pre>
<p>what gets installed is the &#8216;GNU Interactive Tools&#8217; that has nothing to do with the git version control system.<br />
So make sure you first uninstall the git installed:</p>
<pre class="code">sudo rpm -e git</pre>
<p>and then install the Git &#8211; Fast version control system, by doing:</p>
<pre class="code">sudo urpmi git-core</pre>
<p>You should then be able to clone a heroku application:</p>
<pre class="code">heroku clone myapp</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.42.mach7x.com/2008/04/24/git-fatal-error-chdir-failed-permission-denied/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ext.ux.grid has no properties error</title>
		<link>http://www.42.mach7x.com/2008/04/23/extuxgrid-has-no-properties-error/</link>
		<comments>http://www.42.mach7x.com/2008/04/23/extuxgrid-has-no-properties-error/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 15:43:23 +0000</pubDate>
		<dc:creator>kosmas</dc:creator>
				<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[ExtJS]]></category>
		<category><![CDATA[ext_scaffold]]></category>
		<category><![CDATA[heroku]]></category>

		<guid isPermaLink="false">http://www.42.mach7x.com/?p=29</guid>
		<description><![CDATA[Problem Trying to use ExtJS with RubyOnRails on Heroku, gives the following error and a blank page in Firebug. Ext.ux.grid has no properties ... Line 141 Solution In Heroku, you will probably have to manually upload the files from the ExtJS library, as well as the ext_scaffold plugin. When you do that, two files that [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong><br />
Trying to use ExtJS with RubyOnRails on Heroku, gives the following error and a blank page in Firebug.</p>
<pre class="code">Ext.ux.grid has no properties
...
Line 141</pre>
<p><strong>Solution</strong><br />
In Heroku, you will probably have to manually upload the files from the ExtJS library, as well as the ext_scaffold plugin.<br />
When you do that, two files that ext_scaffold needs, and which they should be located in ext_scaffold/assets/javascripts should be copied to public/javascripts.<br />
The files are:</p>
<pre class="code">ext_datetime.js
ext_searchfield.js</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.42.mach7x.com/2008/04/23/extuxgrid-has-no-properties-error/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
