<?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>C0D1NG L4M4´s BLOG WORLD</title>
	<atom:link href="http://blog.macsbone.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.macsbone.de</link>
	<description>Another blog in the net</description>
	<lastBuildDate>Tue, 08 Feb 2011 11:02:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>Magento Adminpasswort zurücksetzen</title>
		<link>http://blog.macsbone.de/2011/02/magento-adminpasswort-zurucksetzen/</link>
		<comments>http://blog.macsbone.de/2011/02/magento-adminpasswort-zurucksetzen/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 11:02:50 +0000</pubDate>
		<dc:creator>c0d1ngl4m4</dc:creator>
				<category><![CDATA[Codeschnipsel]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Admin]]></category>
		<category><![CDATA[Adminpasswort]]></category>
		<category><![CDATA[Passwort]]></category>

		<guid isPermaLink="false">http://blog.macsbone.de/?p=189</guid>
		<description><![CDATA[Es sollte nicht vorkommen aber wir sind ja alle nur Menschen und können mal ein Passwort vergessen. Solange man noch Zugriff auf die Datenbank hat, kann man mit dieser kleinen SQL Anweisung das Passwort zurücksetzen. ?View Code SQL1 UPDATE admin_user SET password = md5&#40;'neues passwort'&#41; WHERE username = 'name_des_adminusers']]></description>
			<content:encoded><![CDATA[<p>Es sollte nicht vorkommen aber wir sind ja alle nur Menschen und können mal ein Passwort vergessen.</p>
<p>Solange man noch Zugriff auf die Datenbank hat, kann man mit dieser kleinen SQL Anweisung das Passwort zurücksetzen.</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p189code2'); return false;">View Code</a> SQL</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1892"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p189code2"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">UPDATE</span> admin_user <span style="color: #993333; font-weight: bold;">SET</span> password <span style="color: #66cc66;">=</span> md5<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'neues passwort'</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">WHERE</span> username <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">'name_des_adminusers'</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.macsbone.de/2011/02/magento-adminpasswort-zurucksetzen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Konfigurationswerte auslesen</title>
		<link>http://blog.macsbone.de/2011/02/magento-konfigurationswerte-auslesen/</link>
		<comments>http://blog.macsbone.de/2011/02/magento-konfigurationswerte-auslesen/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 10:58:56 +0000</pubDate>
		<dc:creator>c0d1ngl4m4</dc:creator>
				<category><![CDATA[Codeschnipsel]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Konfigurationswerte]]></category>

		<guid isPermaLink="false">http://blog.macsbone.de/?p=187</guid>
		<description><![CDATA[In Magento werden die Konfigurationswerte an mehreren Stelen gespeichert. In der Datenbank liegen sie in der Tabelle core_config_data. Ansonsten findet man sie in der config.xml. Zum Auslesen der Daten aus einer Anwendung reicht folgende Anweisung : ?View Code PHP1 Mage::getStoreConfig('web/unsecure/base_url'); Hier wird zum Beispiel die BaseURL für ungesicherter aufrufe ausgelesen.]]></description>
			<content:encoded><![CDATA[<p>In Magento werden die Konfigurationswerte an mehreren Stelen gespeichert.<br />
In der Datenbank liegen sie in der Tabelle <em>core_config_data</em>.<br />
Ansonsten findet man sie in der <em>config.xml</em>.</p>
<p>Zum Auslesen der Daten aus einer Anwendung reicht folgende Anweisung :</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p187code4'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1874"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p187code4"><pre class="php" style="font-family:monospace;">       Mage::getStoreConfig('web/unsecure/base_url');</pre></td></tr></table></div>

<p>Hier wird zum Beispiel die BaseURL für ungesicherter aufrufe ausgelesen. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macsbone.de/2011/02/magento-konfigurationswerte-auslesen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ermitteln der Backend URL</title>
		<link>http://blog.macsbone.de/2011/02/ermitteln-der-backend-url/</link>
		<comments>http://blog.macsbone.de/2011/02/ermitteln-der-backend-url/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 23:02:34 +0000</pubDate>
		<dc:creator>c0d1ngl4m4</dc:creator>
				<category><![CDATA[Codeschnipsel]]></category>
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://blog.macsbone.de/?p=183</guid>
		<description><![CDATA[Ein simples Script zum ermitteln der Backend URL. ?View Code PHP1 2 &#160; $url = Mage::getUrl('adminhtml');]]></description>
			<content:encoded><![CDATA[<p>Ein simples Script zum ermitteln der Backend URL.</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p183code6'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1836"><td class="line_numbers"><pre>1
2
</pre></td><td class="code" id="p183code6"><pre class="php" style="font-family:monospace;">&nbsp;
   $url = Mage::getUrl('adminhtml');</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.macsbone.de/2011/02/ermitteln-der-backend-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alternative zu getAllIds()</title>
		<link>http://blog.macsbone.de/2011/02/alternative-zu-getallids/</link>
		<comments>http://blog.macsbone.de/2011/02/alternative-zu-getallids/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 13:14:55 +0000</pubDate>
		<dc:creator>c0d1ngl4m4</dc:creator>
				<category><![CDATA[Codeschnipsel]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Collection]]></category>

		<guid isPermaLink="false">http://blog.macsbone.de/?p=171</guid>
		<description><![CDATA[Oft kommt es im Daily Business vor, das man sich durch alle Produkte wühlen muss. Wer Magento kennt wird Wissen, das es schnell langsam wird. Es gibt eine Alternative die die Ausführungszeit ca um den Faktor 10 beschleunigt. ?View Code PHP1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 [...]]]></description>
			<content:encoded><![CDATA[<p>Oft kommt es im Daily Business vor, das man sich durch alle Produkte wühlen muss.<br />
Wer Magento kennt wird Wissen, das es schnell langsam wird. </p>
<p>Es gibt eine Alternative die die Ausführungszeit ca um den Faktor 10 beschleunigt.</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p171code8'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1718"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
</pre></td><td class="code" id="p171code8"><pre class="php" style="font-family:monospace;">$i = 0;
	$products = Mage::getModel('catalog/product')-&gt;getCollection();
&nbsp;
	$productCount = $products-&gt;getSize();
&nbsp;
	while ($i*500 &lt; $productCount)
	{
		$products-&gt;clear();
		$products-&gt;addAttributeToFilter('type_id', Mage_Catalog_Model_Product_Type::TYPE_SIMPLE);
		$products-&gt;addAttributeToSelect(array('name','sku'));
		$products-&gt;setCurPage($i+1);
		$products-&gt;setPageSize(500);
&nbsp;
		foreach ($products as $product)
		{
			[ ... ]
		}
		$i++;
	}</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.macsbone.de/2011/02/alternative-zu-getallids/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2010-04-11</title>
		<link>http://blog.macsbone.de/2010/04/twitter-weekly-updates-for-2010-04-11/</link>
		<comments>http://blog.macsbone.de/2010/04/twitter-weekly-updates-for-2010-04-11/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 13:33:00 +0000</pubDate>
		<dc:creator>c0d1ngl4m4</dc:creator>
		
		<guid isPermaLink="false">http://blog.macsbone.de/2010/04/twitter-weekly-updates-for-2010-04-11/</guid>
		<description><![CDATA[I uploaded a YouTube video &#8212; explosion0001_0250.avi http://youtu.be/41sOfy09J70?a # Powered by Twitter Tools]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>I uploaded a YouTube video &#8212; explosion0001_0250.avi <a href="http://youtu.be/41sOfy09J70?a" rel="nofollow">http://youtu.be/41sOfy09J70?a</a> <a href="http://twitter.com/c0d1ngl4m4/statuses/11837213547" class="aktt_tweet_time">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macsbone.de/2010/04/twitter-weekly-updates-for-2010-04-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I uploaded a YouTube video &#8212; &#8230;</title>
		<link>http://blog.macsbone.de/2010/04/i-uploaded-a-youtube-video/</link>
		<comments>http://blog.macsbone.de/2010/04/i-uploaded-a-youtube-video/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 18:32:41 +0000</pubDate>
		<dc:creator>c0d1ngl4m4</dc:creator>
		
		<guid isPermaLink="false">http://blog.macsbone.de/2010/04/i-uploaded-a-youtube-video/</guid>
		<description><![CDATA[I uploaded a YouTube video &#8212; explosion0001_0250.avi http://youtu.be/41sOfy09J70?a]]></description>
			<content:encoded><![CDATA[<p>I uploaded a YouTube video &#8212; explosion0001_0250.avi <a href="http://youtu.be/41sOfy09J70?a" rel="nofollow">http://youtu.be/41sOfy09J70?a</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macsbone.de/2010/04/i-uploaded-a-youtube-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ein guter Samstag zum arbeiten&#8230;</title>
		<link>http://blog.macsbone.de/2010/02/ein-guter-samstag-zum-arbeiten/</link>
		<comments>http://blog.macsbone.de/2010/02/ein-guter-samstag-zum-arbeiten/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 15:23:44 +0000</pubDate>
		<dc:creator>c0d1ngl4m4</dc:creator>
		
		<guid isPermaLink="false">http://blog.macsbone.de/2010/02/ein-guter-samstag-zum-arbeiten/</guid>
		<description><![CDATA[Ein guter Samstag zum arbeiten! # http://myloc.me/3MFFX]]></description>
			<content:encoded><![CDATA[<p>Ein guter Samstag zum arbeiten! # <a href="http://myloc.me/3MFFX" rel="nofollow">http://myloc.me/3MFFX</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macsbone.de/2010/02/ein-guter-samstag-zum-arbeiten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kommsu rein kannsu raustun</title>
		<link>http://blog.macsbone.de/2010/01/kommsu-rein-kannsu-raustun/</link>
		<comments>http://blog.macsbone.de/2010/01/kommsu-rein-kannsu-raustun/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 16:27:33 +0000</pubDate>
		<dc:creator>c0d1ngl4m4</dc:creator>
		
		<guid isPermaLink="false">http://blog.macsbone.de/2010/01/kommsu-rein-kannsu-raustun/</guid>
		<description><![CDATA[Kommsu rein kannsu raustun]]></description>
			<content:encoded><![CDATA[<p>Kommsu rein kannsu raustun</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macsbone.de/2010/01/kommsu-rein-kannsu-raustun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RT @visions_alex: Magento Reac&#8230;</title>
		<link>http://blog.macsbone.de/2010/01/rt-visions_alex-magento-reac/</link>
		<comments>http://blog.macsbone.de/2010/01/rt-visions_alex-magento-reac/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 19:32:16 +0000</pubDate>
		<dc:creator>c0d1ngl4m4</dc:creator>
		
		<guid isPermaLink="false">http://blog.macsbone.de/2010/01/rt-visions_alex-magento-reac/</guid>
		<description><![CDATA[RT @visions_alex: Magento Reaches 1.5 Million+ Downloads http://is.gd/75Qep (via @magento) http://myloc.me/3emdD]]></description>
			<content:encoded><![CDATA[<p>RT @visions_alex: Magento Reaches 1.5 Million+ Downloads <a href="http://is.gd/75Qep" rel="nofollow">http://is.gd/75Qep</a> (via @<a href="http://twitter.com/magento" class="aktt_username">magento</a>) <a href="http://myloc.me/3emdD" rel="nofollow">http://myloc.me/3emdD</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macsbone.de/2010/01/rt-visions_alex-magento-reac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2010-01-24</title>
		<link>http://blog.macsbone.de/2010/01/twitter-weekly-updates-for-2010-01-24/</link>
		<comments>http://blog.macsbone.de/2010/01/twitter-weekly-updates-for-2010-01-24/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 13:33:00 +0000</pubDate>
		<dc:creator>c0d1ngl4m4</dc:creator>
		
		<guid isPermaLink="false">http://blog.macsbone.de/2010/01/twitter-weekly-updates-for-2010-01-24/</guid>
		<description><![CDATA[RT @73inches: Zitat: Die Telefonnummer ist mit hohen sozialen Kosten verbunden. Ich frage Frauen oft nach der Nummer und habe kaum erfolg. # RT @shaack: Schaue mir grade http://unity3d.com an. Sieht interessant aus. #3d #crossplatform #development das teil Rockt!! # Powered by Twitter Tools]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>RT @73inches: Zitat: Die Telefonnummer ist mit hohen sozialen Kosten verbunden. Ich frage Frauen oft nach der Nummer und habe kaum erfolg. <a href="http://twitter.com/c0d1ngl4m4/statuses/8117054673" class="aktt_tweet_time">#</a></li>
<li>RT @shaack: Schaue mir grade <a href="http://unity3d.com" rel="nofollow">http://unity3d.com</a> an. Sieht interessant aus. #<a href="http://search.twitter.com/search?q=%233d" class="aktt_hashtag">3d</a> #<a href="http://search.twitter.com/search?q=%23crossplatform" class="aktt_hashtag">crossplatform</a> #<a href="http://search.twitter.com/search?q=%23development" class="aktt_hashtag">development</a> das teil Rockt!! <a href="http://twitter.com/c0d1ngl4m4/statuses/8117076666" class="aktt_tweet_time">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macsbone.de/2010/01/twitter-weekly-updates-for-2010-01-24/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

