<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>stuff24 blog</title>
	
	<link>http://stuff24.de/blog</link>
	<description>Geekism. Graphic Design. Web-Development.</description>
	<lastBuildDate>Thu, 16 Feb 2012 14:25:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/stuff24Blog" /><feedburner:info uri="stuff24blog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>phpBB 3: How to Disable IP Logging</title>
		<link>http://feedproxy.google.com/~r/stuff24Blog/~3/YHM8dxFvOZU/</link>
		<comments>http://stuff24.de/blog/phpbb3-how-to-disable-ip-logging/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 12:21:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[data protection]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[ip logging]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpbb]]></category>
		<category><![CDATA[phpbb3]]></category>

		<guid isPermaLink="false">http://stuff24.de/blog/?p=223</guid>
		<description><![CDATA[phpBB is an popular open-source bulletin board software written in PHP. It logs IP&#8217;s automatically and stores them in the database. It&#8217;s very important for security purposes, but if you have concerns about data privacy you can disable IP logging permanently. Please note that your apache is logging IPs also&#8230; &#160; Open includes/session.php Search $this-&#38;gt;ip [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 10px;margin-right: 13px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fphpbb3-how-to-disable-ip-logging%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fphpbb3-how-to-disable-ip-logging%2F&amp;source=grischka&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>phpBB is an popular open-source bulletin board software written in PHP. It logs IP&#8217;s automatically and stores them in the database. It&#8217;s very important for security purposes, but if you have concerns about data privacy you can disable IP logging permanently. Please note that your apache is logging IPs also&#8230;<span id="more-223"></span></p>
<p>&nbsp;</p>
<ol>
<li><strong>Open</strong><em> includes/session.php
<p></em></li>
<li><strong>Search</strong>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$this</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>ip <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REMOTE_ADDR'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> ? <span style="color: #990000;">htmlspecialchars</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REMOTE_ADDR'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span></pre></div></div>

</li>
<li><strong>Replace</strong> with:

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$this</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>ip <span style="color: #339933;">=</span> <span style="color: #0000ff;">'127.0.0.1'</span><span style="color: #339933;">;</span></pre></div></div>

</li>
</ol>
<p>Now <strong>IP logging is disabled from now on</strong>&#8230; You probably have to apply this hack everytime after you updated the phpBB software.</p>
<p>If you want to clear all logged IP&#8217;s establish a connection to your MySQL database e.g. with phpMyAdmin and execute the following commands:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">UPDATE</span> phpbb_users <span style="color: #993333; font-weight: bold;">SET</span> user_ip<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'127.0.0.1'</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> phpbb_log <span style="color: #993333; font-weight: bold;">SET</span> log_ip<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'127.0.0.1'</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> phpbb_poll_votes <span style="color: #993333; font-weight: bold;">SET</span> vote_user_ip<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'127.0.0.1'</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> phpbb_posts <span style="color: #993333; font-weight: bold;">SET</span> poster_ip<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'127.0.0.1'</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> phpbb_privmsgs <span style="color: #993333; font-weight: bold;">SET</span> author_ip<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'127.0.0.1'</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> phpbb_sessions <span style="color: #993333; font-weight: bold;">SET</span> session_ip<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'127.0.0.1'</span>;</pre></div></div>

<p>If you have phpBB installed with <em>Installatron </em>it could be that your tables start with <em>&#8220;bb_&#8221;</em> and not with <em>&#8220;phpbb_&#8221;</em>&#8230;</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://stuff24.de/blog/phpbb3-how-to-disable-ip-logging/" title="wordpress ip logging deactivate">wordpress ip logging deactivate</a></li><li><a href="http://stuff24.de/blog/phpbb3-how-to-disable-ip-logging/" title="desactiver les logs de connection phpbb_log">desactiver les logs de connection phpbb_log</a></li><li><a href="http://stuff24.de/blog/phpbb3-how-to-disable-ip-logging/" title="phpbb deactivate ip logging">phpbb deactivate ip logging</a></li><li><a href="http://stuff24.de/blog/phpbb3-how-to-disable-ip-logging/" title="phpbb update user_ip">phpbb update user_ip</a></li><li><a href="http://stuff24.de/blog/phpbb3-how-to-disable-ip-logging/" title="phpbb_users user_ip update">phpbb_users user_ip update</a></li></ul><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fstuff24.de%2Fblog%2Fphpbb3-how-to-disable-ip-logging%2F&amp;title=phpBB%203%3A%20How%20to%20Disable%20IP%20Logging" id="wpa2a_2"><img src="http://stuff24.de/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p><img src="http://feeds.feedburner.com/~r/stuff24Blog/~4/YHM8dxFvOZU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stuff24.de/blog/phpbb3-how-to-disable-ip-logging/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://stuff24.de/blog/phpbb3-how-to-disable-ip-logging/</feedburner:origLink></item>
		<item>
		<title>How to Create a (Pretty) Pinterest Facebook Tab</title>
		<link>http://feedproxy.google.com/~r/stuff24Blog/~3/m0Tx1TStHlc/</link>
		<comments>http://stuff24.de/blog/how-to-pinterest-facebook-tab-mobile/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 21:24:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook tab]]></category>
		<category><![CDATA[pinterest]]></category>
		<category><![CDATA[pinterest profile]]></category>
		<category><![CDATA[pinterest tab]]></category>

		<guid isPermaLink="false">http://stuff24.de/blog/?p=197</guid>
		<description><![CDATA[Pinterest is gaining much popularity in the past few month and is growing faster than any other standalone site ever. The connection between Pinterest and facebook is working pretty well so far, but despite the immense growth they haven&#8217;t released an official opportunity to embed your Pinterest profile as a tab on facebook yet. There [...]
Related posts:<ol>
<li><a href='http://stuff24.de/blog/monthly-active-users-facebook-fql/' rel='bookmark' title='How to get &#8216;Monthly Active Users&#8217; of your Facebook Application'>How to get &#8216;Monthly Active Users&#8217; of your Facebook Application</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 10px;margin-right: 13px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fhow-to-pinterest-facebook-tab-mobile%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fhow-to-pinterest-facebook-tab-mobile%2F&amp;source=grischka&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Pinterest is gaining much popularity in the past few month and is <a href="http://techcrunch.com/2012/02/07/pinterest-monthly-uniques/" target="_blank">growing faster than any other standalone site</a> ever.<br />
The connection between Pinterest and facebook is working pretty well so far, but despite the immense growth they haven&#8217;t released an official opportunity to embed your Pinterest profile as a tab on facebook yet. There are already <strong>some hacks out there which show how to embed your profile as a tab, but they are pretty ugly</strong> and look non-professional because the facebook canvas is narrower than the Pinterest profile. Anyhow a more professional and more appealing solution is to use the mobile version of your Pinterest profile instead of the normal version&#8230;</p>
<p>Below is a <strong>detailed step by step instruction how to add your Pinterest profile as a tab on facebook</strong>.  No coding skills required <img src='http://stuff24.de/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <span id="more-197"></span></p>
<h2>Instructions</h2>
<ol>
<li>Go to the <a href="http://apps.facebook.com/iframehost/" target="_blank">iframe tab facebook app</a> and <strong>click on the pin icon</strong>below to install a page tab.<img class="alignnone size-full wp-image-216" title="install static iframe tab pin" src="http://stuff24.de/blog/wp-content/uploads/install-static-iframe-tab-pin.png" alt="install static iframe tab pin" width="495" height="423" /></li>
<li><strong>Choose your page</strong>where you want to add the pinterest tab:<img class="alignnone size-full wp-image-218" title="add static iframe pin icon to page" src="http://stuff24.de/blog/wp-content/uploads/add-static-iframe-pin-icon-to-page.png" alt="add static iframe pin icon to page" width="445" height="125" /></li>
<li>Now go to your newly created tab and edit the settings. Therefore you have to give the app access first. <strong>Choose &#8220;URL&#8221; at &#8220;Page Source&#8221; and paste below the URL of your mobile Pinterest profile</strong> (e.g. <em>http://<strong>m.</strong>pinterest.com</em>/YOURNAME/). Don&#8217;t know your profile URL? Log into <a href="Pinterest.com" target="_blank">Pinterest.com</a> click on your profile image and you will go directly to your profile on Pinterest. Then copy the URL and add a<em> &#8220;m.&#8221;</em> (for<em> &#8220;mobile&#8221;</em>). <strong>Adjust the height</strong> and<strong> click &#8220;Hide Scrollbars&#8221;</strong><img class="alignnone size-full wp-image-219" title="iframe app pinterest url" src="http://stuff24.de/blog/wp-content/uploads/iframe-app-pinterest-url.png" alt="iframe app pinterest url" width="495" height="423" />Don&#8217;t forget to click <em>&#8220;Save Changes!&#8221;</em>&#8230;</li>
<li>Done.</li>
</ol>
<h2>The result</h2>
<p>That&#8217;s it. A pretty and clean Pinterest profile as a tab on facebook.</p>
<p><img class="alignnone size-full wp-image-220" title="pinterest facebook tab mobile" src="http://stuff24.de/blog/wp-content/uploads/pinterest-facebook-tab-mobile.png" alt="pinterest facebook tab mobile" width="629" height="637" /></p>
<p>&nbsp;</p>
<h2>More&#8230;</h2>
<p>I wrote earlier an article about creating a pinterest profile tab by creating an own facebook application. The advantage is, that you can use the original Pinterest icon and you are not related to third-party apps. Unfortunately I failed because I got &#8220;CSRF verification failed&#8221; as a response. Did anyone managed to solve this issue?</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://stuff24.de/blog/how-to-pinterest-facebook-tab-mobile/" title="pinterest csrf verification failed">pinterest csrf verification failed</a></li><li><a href="http://stuff24.de/blog/how-to-pinterest-facebook-tab-mobile/" title="pinterest facebook tab">pinterest facebook tab</a></li><li><a href="http://stuff24.de/blog/how-to-pinterest-facebook-tab-mobile/" title="pinterest facebook tab free">pinterest facebook tab free</a></li><li><a href="http://stuff24.de/blog/how-to-pinterest-facebook-tab-mobile/" title="mobile version url for pinterest">mobile version url for pinterest</a></li><li><a href="http://stuff24.de/blog/how-to-pinterest-facebook-tab-mobile/" title="create pinterest tab on facebook">create pinterest tab on facebook</a></li></ul><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fstuff24.de%2Fblog%2Fhow-to-pinterest-facebook-tab-mobile%2F&amp;title=How%20to%20Create%20a%20%28Pretty%29%20Pinterest%20Facebook%20Tab" id="wpa2a_4"><img src="http://stuff24.de/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://stuff24.de/blog/monthly-active-users-facebook-fql/' rel='bookmark' title='How to get &#8216;Monthly Active Users&#8217; of your Facebook Application'>How to get &#8216;Monthly Active Users&#8217; of your Facebook Application</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/stuff24Blog/~4/m0Tx1TStHlc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stuff24.de/blog/how-to-pinterest-facebook-tab-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stuff24.de/blog/how-to-pinterest-facebook-tab-mobile/</feedburner:origLink></item>
		<item>
		<title>Fix GAOSP Public Beta 3 “Can’t mount INTERNAL” error</title>
		<link>http://feedproxy.google.com/~r/stuff24Blog/~3/498YWcBQ_2A/</link>
		<comments>http://stuff24.de/blog/fix-gaosp-cant-mount-internal-error/#comments</comments>
		<pubDate>Wed, 04 May 2011 22:03:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Stuff]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[drakaz]]></category>
		<category><![CDATA[Froyo]]></category>
		<category><![CDATA[GAOSP Public Beta 3]]></category>
		<category><![CDATA[Samsung Galaxy i7500]]></category>

		<guid isPermaLink="false">http://stuff24.de/blog/?p=179</guid>
		<description><![CDATA[I just tried to install a fresh GAOSP Public Beta 3 (Android 2.2 Froyo) on my Samsung Galaxy i7500 and came across this error: Finding update package… Opening update package… Verifying update package… Installing update… Formating SYSTEM… Copying files… Copying files… E:Can't mount /dev/block/mmcblk0p1 (no such device) E:Can't mount INTERNAL: E:Failure at line 328: copy_dir [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 10px;margin-right: 13px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fstuff24.de%2Fblog%2Ffix-gaosp-cant-mount-internal-error%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fstuff24.de%2Fblog%2Ffix-gaosp-cant-mount-internal-error%2F&amp;source=grischka&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I just tried to install a fresh <strong><a target="_blank" href="http://code.google.com/p/gaosp/">GAOSP</a> Public Beta 3</strong> (Android 2.2 Froyo) on my <em>Samsung Galaxy i7500</em> and came across this error:</p>
<pre>Finding update package…
Opening update package…
Verifying update package…
Installing update…
Formating SYSTEM…
Copying files…
Copying files…

E:Can't mount /dev/block/mmcblk0p1 (no such device)
E:Can't mount INTERNAL:
E:Failure at line 328:
<strong>copy_dir PACKAGE:dev_data INTERNAL:
Sync data…
.Installation failed</strong></pre>
<p>After that my old ROM was broken and the installation process failed again and again.<br />
<span id="more-179"></span></p>
<h2>Solution:</h2>
<p>This error can by solved by fixing the permissions. You can simply do that using your <strong>recovery </strong>system. Boot again into recovery (press <em>Volume Down</em> + <em>Start Call</em> + <em>End Call</em>) and select <strong>Fix packages permissions</strong>.</p>
<p>See:<br />
<img src="http://stuff24.de/blog/wp-content/uploads/android-recovery-drakaz.png" alt="fix packages permissions" title="fix packages permissions" width="320" height="480" /><br />
(close to the bottom)</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://stuff24.de/blog/fix-gaosp-cant-mount-internal-error/" title="GAOSP 3">GAOSP 3</a></li><li><a href="http://stuff24.de/blog/fix-gaosp-cant-mount-internal-error/" title="fixing permissions android">fixing permissions android</a></li><li><a href="http://stuff24.de/blog/fix-gaosp-cant-mount-internal-error/" title="E:Cant mount /dev/block/mmcblk0p1">E:Cant mount /dev/block/mmcblk0p1</a></li><li><a href="http://stuff24.de/blog/fix-gaosp-cant-mount-internal-error/" title="cant mount dev block mmcblk0p1">cant mount dev block mmcblk0p1</a></li><li><a href="http://stuff24.de/blog/fix-gaosp-cant-mount-internal-error/" title="gaosp">gaosp</a></li></ul><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fstuff24.de%2Fblog%2Ffix-gaosp-cant-mount-internal-error%2F&amp;title=Fix%20GAOSP%20Public%20Beta%203%20%E2%80%9CCan%E2%80%99t%20mount%20INTERNAL%E2%80%9D%20error" id="wpa2a_6"><img src="http://stuff24.de/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p><img src="http://feeds.feedburner.com/~r/stuff24Blog/~4/498YWcBQ_2A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stuff24.de/blog/fix-gaosp-cant-mount-internal-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stuff24.de/blog/fix-gaosp-cant-mount-internal-error/</feedburner:origLink></item>
		<item>
		<title>Dr. Kim Jong-Evil</title>
		<link>http://feedproxy.google.com/~r/stuff24Blog/~3/ngYUJzt0Sbk/</link>
		<comments>http://stuff24.de/blog/dr-kim-jong-evil/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 08:55:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Stuff]]></category>
		<category><![CDATA[austin powers]]></category>
		<category><![CDATA[docotor evil]]></category>
		<category><![CDATA[dr. evil]]></category>
		<category><![CDATA[kim jong-il]]></category>
		<category><![CDATA[kim jong-ill]]></category>
		<category><![CDATA[north korea]]></category>

		<guid isPermaLink="false">http://stuff24.de/blog/?p=173</guid>
		<description><![CDATA[This is a result of a photo editing exercise which was part of my studies: &#8230;a combination of Dr. Evil (Austin Powers) and Kim Jong-Il (President of North Korea) Hope you like it! Feel free to comment&#8230; Incoming search terms:dr evilkim jong ilkim jongaustin powers kim jong ilDR KIM JONGNo related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 10px;margin-right: 13px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fdr-kim-jong-evil%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fdr-kim-jong-evil%2F&amp;source=grischka&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>This is a result of a photo editing exercise which was part of my studies:</p>
<p><a href="http://stuff24.de/blog/wp-content/uploads/dr-kim-jong-evill1.jpg"><img src="http://stuff24.de/blog/wp-content/uploads/dr-kim-jong-evill1-300x168.jpg" alt="kim jong evil (austin powers)" title="dr kim jong evill (austin powers)" width="300" height="168" class="alignnone size-medium wp-image-230" /></a></p>
<p><span id="more-173"></span><br />
&#8230;a combination of <strong>Dr. Evil</strong> (Austin Powers) and <strong>Kim Jong-Il</strong> (President of North Korea)</p>
<p>Hope you like it! Feel free to comment&#8230;</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://stuff24.de/blog/dr-kim-jong-evil/" title="dr evil">dr evil</a></li><li><a href="http://stuff24.de/blog/dr-kim-jong-evil/" title="kim jong il">kim jong il</a></li><li><a href="http://stuff24.de/blog/dr-kim-jong-evil/" title="kim jong">kim jong</a></li><li><a href="http://stuff24.de/blog/dr-kim-jong-evil/" title="austin powers kim jong il">austin powers kim jong il</a></li><li><a href="http://stuff24.de/blog/dr-kim-jong-evil/" title="DR KIM JONG">DR KIM JONG</a></li></ul><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fstuff24.de%2Fblog%2Fdr-kim-jong-evil%2F&amp;title=Dr.%20Kim%20Jong-Evil" id="wpa2a_8"><img src="http://stuff24.de/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p><img src="http://feeds.feedburner.com/~r/stuff24Blog/~4/ngYUJzt0Sbk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stuff24.de/blog/dr-kim-jong-evil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://stuff24.de/blog/dr-kim-jong-evil/</feedburner:origLink></item>
		<item>
		<title>How to get ‘Monthly Active Users’ of your Facebook Application</title>
		<link>http://feedproxy.google.com/~r/stuff24Blog/~3/07Ud_PYvUis/</link>
		<comments>http://stuff24.de/blog/monthly-active-users-facebook-fql/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 18:15:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[facebook api]]></category>
		<category><![CDATA[facebook dev]]></category>
		<category><![CDATA[facebook development]]></category>
		<category><![CDATA[facebook fql]]></category>
		<category><![CDATA[fql]]></category>
		<category><![CDATA[graph api]]></category>
		<category><![CDATA[monthly active users]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://stuff24.de/blog/?p=155</guid>
		<description><![CDATA[I&#8217;ll show you how to get the monthly active users of your Facebook application via FQL with the help of PHP&#8230; Ehh wait, what&#8217;s FQL? &#8220;Facebook Query Language, or FQL, enables you to use a SQL-style interface to query the data exposed by the Graph API. It provides for some advanced features not available in [...]
Related posts:<ol>
<li><a href='http://stuff24.de/blog/how-to-pinterest-facebook-tab-mobile/' rel='bookmark' title='How to Create a (Pretty) Pinterest Facebook Tab'>How to Create a (Pretty) Pinterest Facebook Tab</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 10px;margin-right: 13px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fmonthly-active-users-facebook-fql%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fmonthly-active-users-facebook-fql%2F&amp;source=grischka&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;ll show you how to get the monthly active users of your Facebook application via FQL with the help of PHP&#8230;</p>
<p>Ehh wait, what&#8217;s <em>FQL</em>?</p>
<blockquote><p>&#8220;Facebook Query Language, or FQL, enables you to use a SQL-style interface to query the data exposed by the Graph API. It provides for some advanced features not available in the Graph API, including batching multiple queries into a single call.&#8221;</p></blockquote>
<p>More information: <a href="http://developers.facebook.com/docs/reference/fql/" target="_blank">Facebook FQL reference</a><br />
<span id="more-155"></span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-9416877574229487";
/* 468x15, Erstellt 28.06.10 */
google_ad_slot = "9934959984";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>At first you need to download the <a href="https://github.com/facebook/php-sdk/archives/master" target="_blank">latest Facebook PHP SDK</a> and include the facebook.php into your script.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">require</span> <span style="color: #0000ff;">&quot;facebook.php&quot;</span><span style="color: #339933;">;</span></pre></div></div>

<p>We are using the <a href="http://developers.facebook.com/docs/reference/fql/application" target="_blank">application table</a> to get the information via FQL. The query is very similar to SQL and looks like this:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span> monthly_active_users <span style="color: #993333; font-weight: bold;">FROM</span> application <span style="color: #993333; font-weight: bold;">WHERE</span> app_id<span style="color: #66cc66;">=</span>000000000</pre></div></div>

<p>It also possible to grab other values like daily_active_users, weekly_active_users, daily_active_users, name, description etc. Simply edit the FQL query&#8230;</p>
<p>Before we are allowed to get values of an application we need to authenticate with facebook. Go to facebook.com/developers/ and grad your unique <em>application ID</em> and <em>application secret</em>.</p>
<p><img src="http://stuff24.de/blog/wp-content/uploads/facebook-application-secret.png" alt="facebook application secret" title="facebook-application-secret" width="469" height="336" class="alignnone size-full wp-image-162" /></p>
<p>Here is the final php script:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">// Facebook PHP-SDK</span>
<span style="color: #b1b100;">require</span> <span style="color: #0000ff;">&quot;facebook.php&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;APP_ID&quot;</span><span style="color: #339933;">,</span>      <span style="color: #0000ff;">&quot;00000000000&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;APP_SECRET&quot;</span> <span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;abc123425abc123425abc123425&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$facebook</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Facebook<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
  <span style="color: #0000ff;">&quot;appId&quot;</span>  <span style="color: #339933;">=&gt;</span> APP_ID<span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// app id</span>
  <span style="color: #0000ff;">&quot;secret&quot;</span> <span style="color: #339933;">=&gt;</span> APP_SECRET<span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// secret hash</span>
  <span style="color: #0000ff;">&quot;cookie&quot;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">,</span> <span style="color: #666666; font-style: italic;">// cookie support (optional)</span>
<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
try <span style="color: #009900;">&#123;</span>
  <span style="color: #666666; font-style: italic;">// FQL Query</span>
  <span style="color: #000088;">$fql</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$facebook</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">api</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
                        <span style="color: #0000ff;">&quot;method&quot;</span>  <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;fql.query&quot;</span><span style="color: #339933;">,</span>
                         <span style="color: #0000ff;">&quot;query&quot;</span>   <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">&quot;SELECT monthly_active_users
						FROM application 
						WHERE app_id='&quot;</span><span style="color: #339933;">.</span>APP_ID<span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;'&quot;</span>
					<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$fql</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'monthly_active_users'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span> catch <span style="color: #009900;">&#40;</span>FacebookApiException <span style="color: #000088;">$e</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #666666; font-style: italic;">// return errors</span>
  <span style="color: #b1b100;">print</span> <span style="color: #000088;">$e</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p><!--more--></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://stuff24.de/blog/monthly-active-users-facebook-fql/" title="how to get monthly active users">how to get monthly active users</a></li><li><a href="http://stuff24.de/blog/monthly-active-users-facebook-fql/" title="how to get facebook active users">how to get facebook active users</a></li><li><a href="http://stuff24.de/blog/monthly-active-users-facebook-fql/" title="Facebook application secret">Facebook application secret</a></li><li><a href="http://stuff24.de/blog/monthly-active-users-facebook-fql/" title="facebook get app users">facebook get app users</a></li><li><a href="http://stuff24.de/blog/monthly-active-users-facebook-fql/" title="facebook fql get app users">facebook fql get app users</a></li></ul><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fstuff24.de%2Fblog%2Fmonthly-active-users-facebook-fql%2F&amp;title=How%20to%20get%20%E2%80%98Monthly%20Active%20Users%E2%80%99%20of%20your%20Facebook%20Application" id="wpa2a_10"><img src="http://stuff24.de/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://stuff24.de/blog/how-to-pinterest-facebook-tab-mobile/' rel='bookmark' title='How to Create a (Pretty) Pinterest Facebook Tab'>How to Create a (Pretty) Pinterest Facebook Tab</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/stuff24Blog/~4/07Ud_PYvUis" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stuff24.de/blog/monthly-active-users-facebook-fql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://stuff24.de/blog/monthly-active-users-facebook-fql/</feedburner:origLink></item>
		<item>
		<title>10 Minimalistic Alternative Movie Posters by Grischa Stanjek</title>
		<link>http://feedproxy.google.com/~r/stuff24Blog/~3/4yBbPSqLDtI/</link>
		<comments>http://stuff24.de/blog/10-minimalistic-alternative-movie-poster/#comments</comments>
		<pubDate>Thu, 27 May 2010 19:20:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Graphic design]]></category>
		<category><![CDATA[alternative]]></category>
		<category><![CDATA[apocalypse now]]></category>
		<category><![CDATA[minimal]]></category>
		<category><![CDATA[minimalist]]></category>
		<category><![CDATA[minimalistic]]></category>
		<category><![CDATA[mulholland drive]]></category>
		<category><![CDATA[once upon a time in the west]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[requiem for a dream]]></category>
		<category><![CDATA[reservoir dogs]]></category>
		<category><![CDATA[the machinist]]></category>
		<category><![CDATA[the usual suspects]]></category>

		<guid isPermaLink="false">http://stuff24.de/blog/?p=93</guid>
		<description><![CDATA[These minimal movie posters were part of my application for my communication design studies. I tried to reduce each movie to one single object&#8230; Have fun. Feel free to comment! All posters are ©Grischa Stanjek Feel free to reblog this (with reference to this post) Thanks! Comment if you are interested in a movie poster [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 10px;margin-right: 13px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fstuff24.de%2Fblog%2F10-minimalistic-alternative-movie-poster%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fstuff24.de%2Fblog%2F10-minimalistic-alternative-movie-poster%2F&amp;source=grischka&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>These minimal movie posters were part of my application for my communication design studies. I tried to reduce each movie to one single object&#8230; Have fun. Feel free to comment!</p>
<p><img class="alignnone size-full wp-image-86" title="clockwork-orange-poster" src="http://stuff24.de/blog/wp-content/uploads/clockwork-orange-poster.jpg" alt="Clockwork Orange Movie Poster" width="424" height="600" /><span id="more-93"></span></p>
<p><a href="http://shrsl.com/?~4qd" title="Reservoir Dogs Poster"  target="_blank" name="dogs"><img class="alignnone size-full wp-image-87" title="Buy Reservoir Dogs Poster" src="http://stuff24.de/blog/wp-content/uploads/reservoir-dogs-poster.jpg" alt="Reservoir Dogs Poster" width="424" height="600" /></a></p>
<p><a href="http://shrsl.com/?~4qe" title="Once Upon a Time in the West Movie Poster" target="_blank" name="west"><img class="alignnone size-full wp-image-88" title="Buy Once Upon a Time in the West Movie Poster" src="http://stuff24.de/blog/wp-content/uploads/once-upon-a-time-in-the-west-poster.jpg" alt="Once Upon a Time in the West Poster" width="424" height="600" /></a></p>
<p><a href="http://shrsl.com/?~4qf" target="_blank" title="Un Chien Andalou Poster" name="chien"><img class="alignnone size-full wp-image-89" title="alternative movie posters" src="http://stuff24.de/blog/wp-content/uploads/un-chien-andalou-poster.jpg" alt="un chien andalou poster" width="424" height="600" /></a></p>
<p><a href="http://shrsl.com/?~4qg" target="_blank" title="Usual Suspects Poster" name="suspects"><img class="alignnone size-full wp-image-90" title="the usual suspect poster" src="http://stuff24.de/blog/wp-content/uploads/the-usual-suspect-poster.jpg" alt="the usual suspect movie poster" width="424" height="600" /></a></p>
<p><a href="http://shrsl.com/?~4qh" title="Requiem for a Dream Poster" blank="_blank" name="requiem"><img class="alignnone size-full wp-image-91" title="requiem for a dream movie poster" src="http://stuff24.de/blog/wp-content/uploads/requiem-for-a-dream-poster.jpg" alt="requiem for a dream movie poster" width="424" height="600" /></a></p>
<p><a href="http://shrsl.com/?~4qj" title="The Machinist Poster" target="_blank" name="machinist"><img class="alignnone size-full wp-image-92" title="the machinist poster" src="http://stuff24.de/blog/wp-content/uploads/the-machinist-poster.jpg" alt="the machinist movie poster" width="424" height="600" /></a></p>
<p><a href="http://shrsl.com/?~4qk" title="pi movie poster" name="pi"><img class="alignnone size-full wp-image-94" title="minimalistic movie poster" src="http://stuff24.de/blog/wp-content/uploads/pi-movie-poster.jpg" alt="pi the movie poster" width="424" height="600" /></a></p>
<p><a href="http://shrsl.com/?~4ql" target="_blank" title="Mulholland Drive Poster" name="mulholland"><img class="alignnone size-full wp-image-95" title="mulholland drive poster" src="http://stuff24.de/blog/wp-content/uploads/mulholland-drive-poster.jpg" alt="mulholland drive movie poster" width="424" height="600" /></a></p>
<p><a href="http://shrsl.com/?~4qm" title="Apocalypse Now Poster" target="_blank" name="apocalypse"><img class="alignnone size-full wp-image-96" title="apocalypse now poster" src="http://stuff24.de/blog/wp-content/uploads/apocalypse-now-poster.jpg" alt="apocalypse now poster" width="424" height="600" /><br />
</a><br />
All posters are ©Grischa Stanjek</p>
<p><strong>Feel free to reblog this</strong> (with reference to this post) <img src='http://stuff24.de/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Thanks! Comment if you are interested in a movie poster print.</p>
<h3>Update</h3>
<p>I&#8217;ve set up a small shop were you can buy prints for a reasonable price (with 30 day money back guarantee). You can buy the prints here: <a href="http://shrsl.com/?~4qn" target="_blank"  onClick="recordOutboundLink(this, 'imagekind', 'grischa.imagekind.com/MinimalistMoviePosters');return false;"><strong>Alternative Movie Poster</strong></a></p>
<p><a target="_blank" href="http://www.shareasale.com/r.cfm?b=64957&u=441580&m=10782&urllink=&afftrack="><img src="http://www.shareasale.com/image/468x60_shop_classic.jpg" alt="Buy framed art at Imagekind" border="0"></a></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://stuff24.de/blog/10-minimalistic-alternative-movie-poster/" title="alternative movie posters">alternative movie posters</a></li><li><a href="http://stuff24.de/blog/10-minimalistic-alternative-movie-poster/" title="requiem for a dream poster">requiem for a dream poster</a></li><li><a href="http://stuff24.de/blog/10-minimalistic-alternative-movie-poster/" title="reservoir dogs poster">reservoir dogs poster</a></li><li><a href="http://stuff24.de/blog/10-minimalistic-alternative-movie-poster/" title="reservoir dogs">reservoir dogs</a></li><li><a href="http://stuff24.de/blog/10-minimalistic-alternative-movie-poster/" title="minimal poster">minimal poster</a></li></ul><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fstuff24.de%2Fblog%2F10-minimalistic-alternative-movie-poster%2F&amp;title=10%20Minimalistic%20Alternative%20Movie%20Posters%20by%20Grischa%20Stanjek" id="wpa2a_12"><img src="http://stuff24.de/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p><img src="http://feeds.feedburner.com/~r/stuff24Blog/~4/4yBbPSqLDtI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stuff24.de/blog/10-minimalistic-alternative-movie-poster/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		<feedburner:origLink>http://stuff24.de/blog/10-minimalistic-alternative-movie-poster/</feedburner:origLink></item>
		<item>
		<title>How to download tracks from soundcloud.com</title>
		<link>http://feedproxy.google.com/~r/stuff24Blog/~3/NxDnIPz3OEY/</link>
		<comments>http://stuff24.de/blog/howto-download-soundcloud/#comments</comments>
		<pubDate>Wed, 26 May 2010 19:12:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Stuff]]></category>
		<category><![CDATA[grabber]]></category>
		<category><![CDATA[how to download]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jdownloader]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[soundcloud]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://stuff24.de/blog/?p=144</guid>
		<description><![CDATA[Have you ever tried to download a great track (mp3) from soundcloud.com? There are several ways to download a track from SoundCloud&#8230; I&#8217;ll show you how it works. Please check out first if there is small tiny &#8220;download&#8221; button at the top of the soundcloud player: If yes, simply click download and wait. That&#8217;s it. [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 10px;margin-right: 13px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fhowto-download-soundcloud%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fhowto-download-soundcloud%2F&amp;source=grischka&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Have you ever tried to <strong>download</strong> a great track (mp3) from <a href="http://soundcloud.com" target="_blank">soundcloud.com</a>? There are several ways to download a track from SoundCloud&#8230; I&#8217;ll show you how it works.<span id="more-144"></span></p>
<p>Please check out first if there is small tiny &#8220;download&#8221; button at the top of the soundcloud player:<br />
<img src="http://stuff24.de/blog/wp-content/uploads/soundcloud-downloader.png" alt="soundcloud download button" title="soundcloud downloader" width="471" height="147" class="alignnone size-full wp-image-148" /></p>
<p>If yes, simply click <em>download</em> and wait. That&#8217;s it. The track is now on your hard drive.</p>
<p>If there is no such &#8220;download&#8221; button, you have to use a simple tool called <em>JDownloader</em>. It&#8217;s a great download manager written in Java. You can download it here for <a href="http://www.fileserve.com/file/zW7ufVG" target="_blank" rel="nofollow">Windows</a>, <a href="http://www.fileserve.com/file/JHDs7Bh" rel="nofollow" target="_blank">Linux</a>, <a href="http://www.fileserve.com/file/59hzPcu" rel="nofollow" target="_blank">Mac</a> or at <a href="http://jdownloader.org/download/index?s=lng_en" target="_blank">jdownloader.org</a> (~ 15MB) . Choose your Operating System (OS) and click on one of the links. You probably have to wait around ten seconds before you can download the file because the files are hosted on file hosters which offer premium accounts for users who don&#8217;t want to wait.</p>
<p>NOTE: you don&#8217;t have to buy or sign up on any of these sites. Simply wait a few seconds and click on &#8220;Free Download&#8221; and download the installer without any registration process&#8230;<br />
After that, click through the installation process. If everything is installed correctly, launch the <em>JDownloader</em>. Now go tou <em>soundclod.com</em> and copy the URL of the track you want to download. If the JDownloader does not open automatically after a few seconds, open it manually and click the tab &#8220;Linkgrabber&#8221; and then &#8220;Add URL(s)&#8221;. Paste the URL and click on &#8220;Parse URL(s)&#8221;. Finally you have to click on the play Button at the top to start the download. </p>
<p>The mp3 file is now downloaded to <em>&#8220;C:/Program Files/JDownloader/downloads/&#8221;</em> (if you are using Windows).</p>
<p>Make sure that you also have installed the latest version of Java if you have problems running the JDownloader. You get the latest version on <a href="http://www.java.com/de/download/installed.jsp?detect=jre&#038;try=1" target="_blank">java.com</a>.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-9416877574229487";
/* 468x15, Erstellt 28.06.10 */
google_ad_slot = "9934959984";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>NOTE: The downloaded file is only the preview file (up to 128 kbps). It&#8217;s not the best quality available. For a better quality you have to buy the track and support the artist&#8230;</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://stuff24.de/blog/howto-download-soundcloud/" title="download from soundcloud">download from soundcloud</a></li><li><a href="http://stuff24.de/blog/howto-download-soundcloud/" title="how to download from soundcloud">how to download from soundcloud</a></li><li><a href="http://stuff24.de/blog/howto-download-soundcloud/" title="download soundcloud">download soundcloud</a></li><li><a href="http://stuff24.de/blog/howto-download-soundcloud/" title="soundcloud download">soundcloud download</a></li><li><a href="http://stuff24.de/blog/howto-download-soundcloud/" title="soundcloud downloader">soundcloud downloader</a></li></ul><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fstuff24.de%2Fblog%2Fhowto-download-soundcloud%2F&amp;title=How%20to%20download%20tracks%20from%20soundcloud.com" id="wpa2a_14"><img src="http://stuff24.de/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p><img src="http://feeds.feedburner.com/~r/stuff24Blog/~4/NxDnIPz3OEY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stuff24.de/blog/howto-download-soundcloud/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		<feedburner:origLink>http://stuff24.de/blog/howto-download-soundcloud/</feedburner:origLink></item>
		<item>
		<title>Make the Tweetmeme Retweet Button (iframe) Transparent</title>
		<link>http://feedproxy.google.com/~r/stuff24Blog/~3/ca-X942yovE/</link>
		<comments>http://stuff24.de/blog/make-tweetmeme-retweet-iframe-transparent/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 21:23:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[reweet button]]></category>
		<category><![CDATA[transparency]]></category>
		<category><![CDATA[transparent iframe]]></category>
		<category><![CDATA[tweetmeme]]></category>
		<category><![CDATA[workaround]]></category>

		<guid isPermaLink="false">http://stuff24.de/blog/?p=73</guid>
		<description><![CDATA[The Internet Explorer (IE) is acting strange when it comes to transparency, for instance transparent iframes like the retweet button from tweetmeme. I&#8217;m using the great Tweetmeme Plugin for WordPress, but the problem with the transparency appears no matter which way of implementation you are using. In IE 6, 7 and 8 it looks like [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 10px;margin-right: 13px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fmake-tweetmeme-retweet-iframe-transparent%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fmake-tweetmeme-retweet-iframe-transparent%2F&amp;source=grischka&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>The Internet Explorer (IE) is acting strange when it comes to transparency, for instance transparent iframes like the <a href="http://tweetmeme.com/about/retweet_button" target="_blank">retweet button from tweetmeme</a>. I&#8217;m using the great <a href="http://blog.tweetmeme.com/2009/02/23/wordpress-plugin/" target="_blank">Tweetmeme Plugin</a> <a href="http://wordpress.org/extend/plugins/tweetmeme/" target="_blank">for WordPress</a>, but the problem with the transparency appears no matter which way of implementation you are using.</p>
<p>In IE 6, 7 and 8 it looks like this (ugly white background):</p>
<p><img class="alignnone size-full wp-image-74" title="retweet button non transparent ie" src="http://stuff24.de/blog/wp-content/uploads/retweet-button-non-transparent-ie.png" alt="reweet button no transparency" width="50" height="61" /><span id="more-73"></span></p>
<p>But is should look like this (transparent &gt; black background):</p>
<p><img class="alignnone size-full wp-image-76" title="tweetmeme button transparent ie" src="http://stuff24.de/blog/wp-content/uploads/tweetmeme-button-transparent-ie.png" alt=" tweetmeme button with transparency" width="50" height="61" /></p>
<p>Here is the workaround: Go to &#8220;Appearance &gt; Editor &gt; Header (header.php)&#8221; and <strong>paste this snippet before the &lt;/head&gt; tag</strong> and click on &#8220;Update File&#8221; to save the changes:</p>
<blockquote>
<pre>&lt;!--[if IE]&gt;
&lt;script type="text/javascript"&gt;
onload = function()
{
	var theframes = document.getElementsByTagName('iframe');
	for(var i = 0; i &lt; theframes.length; i++)
	{
		theframes[i].setAttribute("allowTransparency","true");
	}
}
&lt;/script&gt;
&lt;![endif]--&gt;</pre>
</blockquote>
<p>Thanks to the <em>_Aerospace_Eng_</em> who posted this snippet <a href="http://www.codingforums.com/showpost.php?p=453358&amp;postcount=2" target="_blank">here</a>.</p>
<p>This will add transparency to all iframes in the Internet Explorer (IE) and removes the white section between both parts. That&#8217;s it&#8230; Did you succeeded? Let me know!</p>
<p><a href="http://www.dreamhost.com/r.cgi?1013640/hosting.html" target="_blank"><img src="http://stuff24.de/blog/wp-content/uploads/dhost468.gif" height="60" width="468" /></a></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://stuff24.de/blog/make-tweetmeme-retweet-iframe-transparent/" title="tweet button iframe">tweet button iframe</a></li><li><a href="http://stuff24.de/blog/make-tweetmeme-retweet-iframe-transparent/" title="iframe tweet button">iframe tweet button</a></li><li><a href="http://stuff24.de/blog/make-tweetmeme-retweet-iframe-transparent/" title="retweet iframe">retweet iframe</a></li><li><a href="http://stuff24.de/blog/make-tweetmeme-retweet-iframe-transparent/" title="tweet button transparent">tweet button transparent</a></li><li><a href="http://stuff24.de/blog/make-tweetmeme-retweet-iframe-transparent/" title="retweet button transparent">retweet button transparent</a></li></ul><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fstuff24.de%2Fblog%2Fmake-tweetmeme-retweet-iframe-transparent%2F&amp;title=Make%20the%20Tweetmeme%20Retweet%20Button%20%28iframe%29%20Transparent" id="wpa2a_16"><img src="http://stuff24.de/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>No related posts.</p><img src="http://feeds.feedburner.com/~r/stuff24Blog/~4/ca-X942yovE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stuff24.de/blog/make-tweetmeme-retweet-iframe-transparent/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://stuff24.de/blog/make-tweetmeme-retweet-iframe-transparent/</feedburner:origLink></item>
		<item>
		<title>WordPress: Could not create directory – Theme Install Failed</title>
		<link>http://feedproxy.google.com/~r/stuff24Blog/~3/NeQBLitB5QQ/</link>
		<comments>http://stuff24.de/blog/wordpress-could-not-create-directory-theme-install-failed/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 14:19:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[bugfix]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[php.ini]]></category>
		<category><![CDATA[safe mode]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://stuff24.de/blog/?p=62</guid>
		<description><![CDATA[This error appeared every time I wanted to install a theme automatically, even in the current version (2.9.1) of WordPress: Downloading install package from http://wordpress.org/extend/themes/download/sample-theme.zip. Unpacking the package. Installing the theme. Could not create directory. /var/www/html/web999/blog/wp-content/themes/sample-theme/ Theme Install Failed. This is caused by an error when running the php function mkdir() under safe_mode on certain [...]
Related posts:<ol>
<li><a href='http://stuff24.de/blog/wordpress-could-not-create-directory-plugin-install-failed/' rel='bookmark' title='WordPress: Could not create directory &#8211; Plugin Install Failed'>WordPress: Could not create directory &#8211; Plugin Install Failed</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 10px;margin-right: 13px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fwordpress-could-not-create-directory-theme-install-failed%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fwordpress-could-not-create-directory-theme-install-failed%2F&amp;source=grischka&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>This error appeared every time I wanted to install a theme automatically, even in the current version (2.9.1) of WordPress:</p>
<blockquote><p>Downloading install package from http://wordpress.org/extend/themes/download/sample-theme.zip.<br />
Unpacking the package.<br />
Installing the theme.<br />
Could not create directory. /var/www/html/web999/blog/wp-content/themes/sample-theme/<br />
<strong>Theme Install Failed.</strong></p></blockquote>
<p><span id="more-62"></span>This is caused by an error when running the php function <a href="http://php.net/manual/en/function.mkdir.php" target="_blank">mkdir()</a> under <a href="http://php.net/manual/en/features.safe-mode.php" target="_blank">safe_mode</a> on certain versions of PHP (I&#8217;m using PHP Version 5.2.5). The bug is <a href="http://core.trac.wordpress.org/changeset/12741" target="_blank">already tracked</a> and probably will be fixed in the next version of WordPress&#8230;</p>
<p>There are two solutions to fix this by your own</p>
<ol>
<li>Solution &#8211; <strong>Edit <em>class-wp-filesystem-direct.php</em></strong><br />
Add the marked lines in your <em>wp-admin/includes/class-wp-filesystem-direct.php</em> (Line 281):<em><br />
</em></p>
<blockquote>
<pre>function mkdir($path, $chmod = false, $chown = false, $chgrp = false) {
<strong>   // safe mode fails with a trailing slash under certain PHP versions.
   $path = untrailingslashit($path);
   if ( empty($path) )
      $path = '/';</strong>

   if ( ! $chmod )
      $chmod = FS_CHMOD_DIR;</pre>
</blockquote>
</li>
<p><strong>OR</strong></p>
<li>Solution &#8211; <strong>Turn safe_mode off</strong><br />
I do not recommend this solution! But you can use it e.g. temporarily if you want to install a few themes in a row and turn safe_mode on again afterwards. If you are using Confixx you can edit these settings easily. Otherwise you have to edit your php.ini manually. How to do this? Check that: <a href="http://www.webhostgear.com/166.html" target="_blank">Customizing PHP Safe Mode</a></li>
</ol>
<p>Now your Theme installation process should give you a response like this:</p>
<blockquote><p>Downloading install package from http://wordpress.org/extend/themes/download/theme.zip.<br />
Unpacking the package.<br />
Installing the theme.<br />
Successfully installed the theme Sample Theme.</p></blockquote>
<p><strong>Did this work for you? Tell me!</strong></p>
<p><a href="http://www.dreamhost.com/r.cgi?1013640/hosting.html" target="_blank"><img src="http://stuff24.de/blog/wp-content/uploads/dhost468.gif" height="60" width="468" /></a></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://stuff24.de/blog/wordpress-could-not-create-directory-theme-install-failed/" title="the package could not be installed pclzip_err_bad_format (-10) : unable to find end of central dir record signature">the package could not be installed pclzip_err_bad_format (-10) : unable to find end of central dir record signature</a></li><li><a href="http://stuff24.de/blog/wordpress-could-not-create-directory-theme-install-failed/" title="wordpress Theme install failed">wordpress Theme install failed</a></li><li><a href="http://stuff24.de/blog/wordpress-could-not-create-directory-theme-install-failed/" title="Could not create directory Theme install failed">Could not create directory Theme install failed</a></li><li><a href="http://stuff24.de/blog/wordpress-could-not-create-directory-theme-install-failed/" title="Unpacking the package… Could not create directory">Unpacking the package… Could not create directory</a></li><li><a href="http://stuff24.de/blog/wordpress-could-not-create-directory-theme-install-failed/" title="theme install failed">theme install failed</a></li></ul><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fstuff24.de%2Fblog%2Fwordpress-could-not-create-directory-theme-install-failed%2F&amp;title=WordPress%3A%20Could%20not%20create%20directory%20%E2%80%93%20Theme%20Install%20Failed" id="wpa2a_18"><img src="http://stuff24.de/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://stuff24.de/blog/wordpress-could-not-create-directory-plugin-install-failed/' rel='bookmark' title='WordPress: Could not create directory &#8211; Plugin Install Failed'>WordPress: Could not create directory &#8211; Plugin Install Failed</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/stuff24Blog/~4/NeQBLitB5QQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stuff24.de/blog/wordpress-could-not-create-directory-theme-install-failed/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://stuff24.de/blog/wordpress-could-not-create-directory-theme-install-failed/</feedburner:origLink></item>
		<item>
		<title>WordPress: Could not create directory – Plugin Install Failed</title>
		<link>http://feedproxy.google.com/~r/stuff24Blog/~3/0ADTiPKtpPU/</link>
		<comments>http://stuff24.de/blog/wordpress-could-not-create-directory-plugin-install-failed/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 13:43:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[php.ini]]></category>
		<category><![CDATA[plugin install]]></category>
		<category><![CDATA[safe mode]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://stuff24.de/blog/?p=50</guid>
		<description><![CDATA[This error appeared every time I wanted to install a plugin automatically, even in the current version (2.9.1) of WordPress: Downloading install package from http://downloads.wordpress.org/plugin/sample-plugin.zip. Unpacking the package. Installing the plugin. Could not create directory. /var/www/html/web999/blog/wp-content/plugins/sample-plugin/ Plugin Install Failed. This is caused by an error when running the php function mkdir() under safe_mode on certain [...]
Related posts:<ol>
<li><a href='http://stuff24.de/blog/wordpress-could-not-create-directory-theme-install-failed/' rel='bookmark' title='WordPress: Could not create directory &#8211; Theme Install Failed'>WordPress: Could not create directory &#8211; Theme Install Failed</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 10px;margin-right: 13px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fwordpress-could-not-create-directory-plugin-install-failed%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fstuff24.de%2Fblog%2Fwordpress-could-not-create-directory-plugin-install-failed%2F&amp;source=grischka&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>This error appeared every time I wanted to install a plugin automatically, even in the current version (2.9.1) of WordPress:</p>
<blockquote><p>Downloading install package from http://downloads.wordpress.org/plugin/sample-plugin.zip.<br />
Unpacking the package.<br />
Installing the plugin.<br />
Could not create directory. /var/www/html/web999/blog/wp-content/plugins/sample-plugin/<br />
<strong>Plugin Install Failed.</strong></p></blockquote>
<p><span id="more-50"></span>This is caused by an error when running the php function <a href="http://php.net/manual/en/function.mkdir.php" target="_blank">mkdir()</a> under <a href="http://php.net/manual/en/features.safe-mode.php" target="_blank">safe_mode</a> on certain versions of PHP (I&#8217;m using PHP Version 5.2.5). The bug is <a href="http://core.trac.wordpress.org/changeset/12741" target="_blank">already tracked</a> and probably will be fixed in the next version of WordPress&#8230;</p>
<p>There are two solutions to fix this by your own</p>
<ol>
<li>Solution &#8211; <strong>Edit <em>class-wp-filesystem-direct.php</em></strong><br />
Add the marked lines in your <em>wp-admin/includes/class-wp-filesystem-direct.php</em> (Line 281):<em><br />
</em></p>
<blockquote>
<pre>function mkdir($path, $chmod = false, $chown = false, $chgrp = false) {
<strong>   // safe mode fails with a trailing slash under certain PHP versions.
   $path = untrailingslashit($path);
   if ( empty($path) )
      $path = '/';</strong>

   if ( ! $chmod )
      $chmod = FS_CHMOD_DIR;</pre>
</blockquote>
</li>
<p><strong>OR</strong></p>
<li>Solution &#8211; <strong>Turn safe_mode off</strong><br />
I do not recommend this solution! But you can use it e.g. temporarily if you want to install a few plugins in a row and turn safe_mode on again afterwards. If you are using Confixx you can edit these settings easily. Otherwise you have to edit your php.ini manually. How to do this? Check that: <a href="http://www.webhostgear.com/166.html" target="_blank">Customizing PHP Safe Mode</a></li>
</ol>
<p>Now your Plugin installation process should give a response like this:</p>
<blockquote><p>Downloading install package from http://downloads.wordpress.org/plugin/sample-plugin.zip<br />
Unpacking the package.<br />
Installing the plugin.<br />
<strong>Successfully installed the plugin Sample Plugin.</strong></p></blockquote>
<p>If you still have problems with the installation of a wordpress plugin, <a href="http://handshake.co.za/2009/wordpress-problems-ive-had-to-fix/" target="_blank">read this</a>.</p>
<p><strong>Did this work for you? Tell me!</strong></p>
<p><a href="http://www.dreamhost.com/r.cgi?1013640/hosting.html" target="_blank"><img src="http://stuff24.de/blog/wp-content/uploads/dhost468.gif" height="60" width="468" /></a></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://stuff24.de/blog/wordpress-could-not-create-directory-plugin-install-failed/" title="could not create directory">could not create directory</a></li><li><a href="http://stuff24.de/blog/wordpress-could-not-create-directory-plugin-install-failed/" title="wordpress Could not create directory">wordpress Could not create directory</a></li><li><a href="http://stuff24.de/blog/wordpress-could-not-create-directory-plugin-install-failed/" title="wordpress plugin install failed">wordpress plugin install failed</a></li><li><a href="http://stuff24.de/blog/wordpress-could-not-create-directory-plugin-install-failed/" title="Plugin install failed">Plugin install failed</a></li><li><a href="http://stuff24.de/blog/wordpress-could-not-create-directory-plugin-install-failed/" title="Could not create directory /wp-content">Could not create directory /wp-content</a></li></ul><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fstuff24.de%2Fblog%2Fwordpress-could-not-create-directory-plugin-install-failed%2F&amp;title=WordPress%3A%20Could%20not%20create%20directory%20%E2%80%93%20Plugin%20Install%20Failed" id="wpa2a_20"><img src="http://stuff24.de/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><p>Related posts:<ol>
<li><a href='http://stuff24.de/blog/wordpress-could-not-create-directory-theme-install-failed/' rel='bookmark' title='WordPress: Could not create directory &#8211; Theme Install Failed'>WordPress: Could not create directory &#8211; Theme Install Failed</a></li>
</ol></p><img src="http://feeds.feedburner.com/~r/stuff24Blog/~4/0ADTiPKtpPU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://stuff24.de/blog/wordpress-could-not-create-directory-plugin-install-failed/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		<feedburner:origLink>http://stuff24.de/blog/wordpress-could-not-create-directory-plugin-install-failed/</feedburner:origLink></item>
	</channel>
</rss>

