<?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>Sander&#039;s Blog</title>
	<atom:link href="http://sander.jessar.nl/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://sander.jessar.nl</link>
	<description>Everything whats on my mind</description>
	<lastBuildDate>Sat, 07 Jan 2012 20:42:23 +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>Prestashop change the text in the tabs of the backend.</title>
		<link>http://sander.jessar.nl/?p=89</link>
		<comments>http://sander.jessar.nl/?p=89#comments</comments>
		<pubDate>Sat, 07 Jan 2012 20:38:53 +0000</pubDate>
		<dc:creator>adminSander</dc:creator>
				<category><![CDATA[Prestashop]]></category>
		<category><![CDATA[Prestashop language tabs]]></category>

		<guid isPermaLink="false">http://sander.jessar.nl/?p=89</guid>
		<description><![CDATA[In previous releases of Prestashop you could change the text in the tabs  of the back end under tools-&#62;tabs. In the current version you can find this option under the employees preference and then the tabs tab. Nice feature so every employee can have its own customized menu&#8217;s.]]></description>
			<content:encoded><![CDATA[<p>In previous releases of Prestashop you could change the text in the tabs  of the back end under tools-&gt;tabs.<br />
In the current version you can find this option under the employees preference and then the tabs tab.<br />
Nice feature so every employee can have its own customized menu&#8217;s.</p>
]]></content:encoded>
			<wfw:commentRss>http://sander.jessar.nl/?feed=rss2&#038;p=89</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PECL on Opensuse, memcache extension, zip extension</title>
		<link>http://sander.jessar.nl/?p=84</link>
		<comments>http://sander.jessar.nl/?p=84#comments</comments>
		<pubDate>Fri, 06 Jan 2012 20:39:45 +0000</pubDate>
		<dc:creator>adminSander</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[memcache]]></category>
		<category><![CDATA[opensuse]]></category>
		<category><![CDATA[pecl]]></category>

		<guid isPermaLink="false">http://sander.jessar.nl/?p=84</guid>
		<description><![CDATA[HOWTO: PECL on Opensuse Installing PECL on Openuse and installing PECL packages afterwards is now pretty easy for me, because of my HOWTO here. From ground up, I&#8217;m a Opensuse newbie because it&#8217;s not my preferred distro. Therefore I wrote down this for documentation purposes. It&#8217;s based on Opensuse 11.1 I found on a virtual [...]]]></description>
			<content:encoded><![CDATA[<h2>HOWTO: PECL on Opensuse</h2>
<p>Installing PECL on Openuse and installing PECL packages afterwards is now pretty easy for me, because of my HOWTO here. From ground up, I&#8217;m a Opensuse newbie because it&#8217;s not my preferred distro. Therefore I wrote down this for documentation purposes. It&#8217;s based on Opensuse 11.1 I found on a virtual server located at a hoster named Strato (Germany/Berlin).</p>
<p>If you wonder where PECL is located, it ships with the php5-devel package. In any case, to get it installed so enabling you to install PECL Extension on a vanilla opensuse 11.1, I did the following:</p>
<p><a id="Installing_and_Setting_up_PECL" name="Installing_and_Setting_up_PECL"></a></p>
<h3>Installing and Setting up PECL</h3>
<pre>~# yast -i gcc autoconf php5 php5-pear php5-devel</pre>
<p>That command just installs needed packages. At least those were the modules I needed with my setup but I think it&#8217;s pretty complete:</p>
<ol>
<li><em>gcc</em> - the compiler, needed to compile sourcecode</li>
<li><em>autoconf</em> - needed to build modules, that&#8217;s a step previous to compile</li>
<li><em>php5</em> - the php5 package</li>
<li><em>php5-pear</em> - the php5 pear repository. pear is related to pecl therefore grab it, it does not hurt.</li>
<li><em>php5-devel</em> - headers, PECL and all the stuff you need to compile extentsions source</li>
</ol>
<p>Afterwards pecl should be available which can be easily tested:</p>
<pre>~# pecl version</pre>
<p>Since channels update quite often, run</p>
<pre>~# pecl channel-update pecl.php.net</pre>
<p>After this, your PECL setup should be done.</p>
<p><a id="Installing_a_PECL_extension" name="Installing_a_PECL_extension"></a></p>
<h3>Installing a PECL extension</h3>
<p>&nbsp;</p>
<p><strong>Zip extension</strong></p>
<p>Now it&#8217;s up to you to install the PECL extensions you would like to have. You do this with the normal PECL install command. Next is an example to install the zip extension:</p>
<pre>~# pecl install zip</pre>
<p>This might take some time depending on how much power your box has. If it fails, read the output to identify if something is missing or what is going wrong.</p>
<p>Afterwards you have to take care that the extension is loaded. This needs a configuration of the php.ini file(s) by adding the line</p>
<pre>extension=zip.so</pre>
<p>to it. you can do this by adding a file named <em>zip.ini</em> to the configuration directory <em>/etc/php5/conf.d</em> . The directory for the actual extension is <em>/usr/lib/php5/extensions</em>.</p>
<p>Afterwards you have to make shure that the PHP interpreter is reflecting the changes. For FCGI just locate the process and send a SIGTERM to it. If you like it comfortable consider to use htop for it:</p>
<pre>~# yast -i htop
~# htop</pre>
<p>This should make it easy for you to determine the right process.</p>
<p>&nbsp;</p>
<p><strong>Memcache extension</strong></p>
<pre>~# pecl install memcache</pre>
<p>This might take some time depending on how much power your box has. If it fails, read the output to identify if something is missing or what is going wrong.</p>
<p>Afterwards you have to take care that the extension is loaded. This needs a configuration of the php.ini file(s) by adding the line</p>
<pre>extension=memcache.so</pre>
<p>to it. you can do this by adding a file named memcache<em>.ini</em> to the configuration directory <em>/etc/php5/conf.d</em> . The directory for the actual extension is <em>/usr/lib/php5/extensions</em>.</p>
<p>Afterwards you have to make shure that the PHP interpreter is reflecting the changes. For FCGI just locate the process and send a SIGTERM to it. If you like it comfortable consider to use htop for it:</p>
<p>Testing</p>
<p>Afterwards using the <em>phpinfo();</em> function requested from the webside should provide you the info about loaded extensions as well as loaded ini files.</p>
<p>&nbsp;</p>
<p><a id="Notes" name="Notes"></a></p>
<h3>Notes</h3>
<ol>
<li><a title="http://forums.opensuse.org/install-boot-login/419303-pecl-fails-install.html" href="http://forums.opensuse.org/install-boot-login/419303-pecl-fails-install.html">A User reported in November 2008</a> that PECL needs GeoIP (for the popular PECL GeoIP Package), so you might want to install <em>libGeoIP-devel</em> as well.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://sander.jessar.nl/?feed=rss2&#038;p=84</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable mod_rewrite on SuSE Linux</title>
		<link>http://sander.jessar.nl/?p=81</link>
		<comments>http://sander.jessar.nl/?p=81#comments</comments>
		<pubDate>Thu, 05 Jan 2012 16:10:32 +0000</pubDate>
		<dc:creator>adminSander</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[suse]]></category>

		<guid isPermaLink="false">http://sander.jessar.nl/?p=81</guid>
		<description><![CDATA[Contents Description of the problem Solution – enable mod_rewrite on SuSE linux Check if mod_rewrite is installed and integrated in Apache Test .htaccess rewrite rule on SuSE linux Apache Enable custom Apache .htaccess mod_rewrite files on SuSE linux Description of the problem By default, SuSE doesn’t enable the mod_rewrite rewrite module. It’s installed, but not [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Contents</strong><br />
Description of the problem<br />
Solution – enable mod_rewrite on SuSE linux<br />
Check if mod_rewrite is installed and integrated in Apache<br />
Test .htaccess rewrite rule on SuSE linux Apache<br />
Enable custom Apache .htaccess mod_rewrite files on SuSE linux</p>
<p><strong>Description of the problem</strong></p>
<p>By default, SuSE doesn’t enable the mod_rewrite rewrite module. It’s installed, but not enabled.<br />
Follow these steps to install it.</p>
<p><strong>Solution – enable mod_rewrite on SuSE linux</strong></p>
<p>Edit the file /etc/sysconfig/apache2 as root:<br />
search for APACHE_MODULES, you should find a line like this<br />
APACHE_MODULES=&#8221;suexec access actions alias auth auth_dbm autoindex cgi dir env expires include log_config mime negotiation setenvif userdir ssl php4&#8243;<br />
Add rewrite to the content in the list between the “<br />
Save the changes and quit<br />
run SuSEconfig to update the apache configuration files<br />
run /etc/init.d/apache2 restart to restart the Apache server<br />
Now, the mod_rewrite is enabled and integrated.</p>
<p><strong>Check if mod_rewrite is installed and integrated in Apache</strong></p>
<p>You can check this e.g. with the following php file. Create a file in your document root of your webserver (default on SuSE: /srv/www/htdocs) and copy the following content into this file:<br />
<!--?php phpinfo(); ?--></p>
<p>When you view this file with your browser, search for rewrite – you should find one entry. If not – check if you did all steps 1 to 3.</p>
<p><strong>Test .htaccess rewrite rule on SuSE linux Apache</strong></p>
<p>The next step is to create an initial .htaccess rewrite rule to test if it’s working now. Create a file .htaccess in your document root (default on SuSE: /srv/www/htdocs) with the following content:<br />
Options +FollowSymlinks</p>
<p>RewriteEngine on<br />
RewriteBase /<br />
RewriteRule user/(.*)$ /user.php?user=$1</p>
<p>This is a simple rule that redirects all urls with the format user/something to the script /user.php with the something as parameter user. The IfModule prevents Apache errors when mod_rewrite should disappear.<br />
If this doesn’t work – there is another pitfall of the default SuSE Apache installation: you’re not allowed to create custom .htaccess files! So – lets enable them</p>
<p><strong>Enable custom Apache .htaccess mod_rewrite files on SuSE linux</strong></p>
<p>Edit the file /etc/apache2/default-server.conf with your prefered editor<br />
Search for AllowOverride – it should be below the line<br />
Change AllowOverride None to AllowOverride All – this will allow custom .htaccess rewrite rules<br />
Save your changes and exit<br />
run SuSEconfig to update the apache configuration files<br />
run /etc/init.d/apache2 restart to restart the Apache server<br />
That’s all, now you can test the .htaccess rewrite rule again and it will work.</p>
<p>Tags: .htaccess, apache, linux, mod_rewrite, suse</p>
]]></content:encoded>
			<wfw:commentRss>http://sander.jessar.nl/?feed=rss2&#038;p=81</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WAARSCHUWING ACQUISITIEFRAUDEURS</title>
		<link>http://sander.jessar.nl/?p=74</link>
		<comments>http://sander.jessar.nl/?p=74#comments</comments>
		<pubDate>Wed, 14 Dec 2011 13:57:35 +0000</pubDate>
		<dc:creator>adminSander</dc:creator>
				<category><![CDATA[Geen categorie]]></category>

		<guid isPermaLink="false">http://sander.jessar.nl/?p=74</guid>
		<description><![CDATA[Vandaag luisterde mijn vrouw haar telefoon af en daar stond een heel gesprek over een inkorting van een looptijd. Het geluidsfragment wat hier bijhoort kun je hier downloaden. Het is een soort van gesprek wat je ook voert als je een contract afsluit bij een energieleverancier, alleen ontbreken in dit gesprek de antwoorden van mijn [...]]]></description>
			<content:encoded><![CDATA[<p>Vandaag luisterde mijn vrouw haar telefoon af en daar stond een heel gesprek over een inkorting van een looptijd.<br />
Het geluidsfragment wat hier bijhoort kun je <a href="http://sander.jessar.nl/wp-content/uploads/voicemail-prom.mp3" title="Voicemail ingesproken door P.R.O.M.">hier downloaden</a>. Het is een soort van gesprek wat je ook voert als je een contract afsluit bij een energieleverancier, alleen ontbreken in dit gesprek de antwoorden van mijn vrouw omdat dit haar voicemail was, echter de vrouw aan de andere kant doet wel net alsof ze antwoordt krijgt.<br />
Een paar uur later ontving mijn vrouw een email met de volgende tekst:</p>
<p><em>Geachte mevrouw xxxxx,</p>
<p>Naar aanleiding van ons telefonisch onderhoud, hierbij de bevestiging inzake de looptijd inkorting, zie bijlage.<br />
Indien u een looptijd inkorting wenst, verzoeken wij u het attached document aan ons getekend te retourneren.</p>
<p>Vertrouwende u hiermee voldoende te hebben geïnformeerd.</p>
<p>Hoogachtend,</p>
<p>Roos Hofman<br />
Callcenter<br />
P.R.O.M<br />
Public Relations Online Marketing<br />
</em></p>
<p><a href='http://sander.jessar.nl/wp-content/uploads/Fraude-Brief-PROM.pdf'>Dit is het attachment wat er aan de email vastzat</a></p>
<p>Als je deze dus ondertekend en terugstuurd krijg je van hun daarna een factuur van 13&#215;69 euro = 897 euro exclusief btw.</p>
<p>Even voor de duidelijkheid wij hebben nooit maar dan ook nooit iets met hun afgesloten, ook niet gratis voor een bepaalde periode.<br />
Het advies in deze is dan ook niet terugsturen die brief, in feite is het een soort van contract wat je met hun aangaat.</p>
<p>Op deze <a href="http://www.mkb.nl/index.php?pageID=4&#038;messageID=6394" title="MKB-NEDERLAND SPANT PROCES ACQUISITIEFRAUDEURS AAN">link</a> staan meer van dit soort verhalen.</p>
]]></content:encoded>
			<wfw:commentRss>http://sander.jessar.nl/?feed=rss2&#038;p=74</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://sander.jessar.nl/wp-content/uploads/voicemail-prom.mp3" length="3936862" type="audio/mpeg" />
		</item>
		<item>
		<title>Template Prestashop</title>
		<link>http://sander.jessar.nl/?p=64</link>
		<comments>http://sander.jessar.nl/?p=64#comments</comments>
		<pubDate>Wed, 16 Nov 2011 21:50:01 +0000</pubDate>
		<dc:creator>adminSander</dc:creator>
				<category><![CDATA[Prestashop]]></category>

		<guid isPermaLink="false">http://sander.jessar.nl/?p=64</guid>
		<description><![CDATA[Handige link, Prestashop Designers Guide]]></description>
			<content:encoded><![CDATA[<p>Handige link, <a href="http://blogs.callosmart.com/2011/02/03/creating-a-prestashop-1-4-theme-from-scratch" title="Creating a Prestashop 1.4 theme from scratch" target="_blank">Prestashop Designers Guide</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sander.jessar.nl/?feed=rss2&#038;p=64</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wii Ombouwen (Softmod)</title>
		<link>http://sander.jessar.nl/?p=55</link>
		<comments>http://sander.jessar.nl/?p=55#comments</comments>
		<pubDate>Wed, 13 Apr 2011 19:34:36 +0000</pubDate>
		<dc:creator>adminSander</dc:creator>
				<category><![CDATA[Geen categorie]]></category>
		<category><![CDATA[softmod]]></category>
		<category><![CDATA[wii]]></category>

		<guid isPermaLink="false">http://sander.jessar.nl/?p=55</guid>
		<description><![CDATA[De Wii is op twee manieren om te bouwen. Je kan hem softwarematig ombouwen of hardwarematig. Het softwarematig ombouwen van de WII word ook wel ‘Softmod’ genoemd. Een softmod is helemaal gratis. Na de softmod kan je back-up spellen afspelen van een DVD of deze laden met de USB Loader van een externe harde schijf. [...]]]></description>
			<content:encoded><![CDATA[<p>De Wii is op twee manieren om te bouwen. Je kan hem softwarematig ombouwen of hardwarematig. Het softwarematig ombouwen van de WII word ook wel ‘Softmod’ genoemd. Een softmod is helemaal gratis. Na de softmod kan je back-up spellen afspelen van een DVD of deze laden met de USB Loader van een externe harde schijf. Voor meer information verwijs ik u naar deze <a href="http://downloadtutorial.nl/nintendo-wii/6-softmodden/460-wii-softmodden-voor-elke-firmware">site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sander.jessar.nl/?feed=rss2&#038;p=55</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JFolder::create: Infinite loop detected</title>
		<link>http://sander.jessar.nl/?p=52</link>
		<comments>http://sander.jessar.nl/?p=52#comments</comments>
		<pubDate>Fri, 18 Feb 2011 13:55:14 +0000</pubDate>
		<dc:creator>adminSander</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://sander.jessar.nl/?p=52</guid>
		<description><![CDATA[Check paths in configuration.php (must be full paths to tmp en logs) Check safe mode (must be off)]]></description>
			<content:encoded><![CDATA[<p>Check paths in configuration.php (must be full paths to tmp en logs)<br />
Check safe mode (must be off)</p>
]]></content:encoded>
			<wfw:commentRss>http://sander.jessar.nl/?feed=rss2&#038;p=52</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zoektocht naar een pin apparaat</title>
		<link>http://sander.jessar.nl/?p=49</link>
		<comments>http://sander.jessar.nl/?p=49#comments</comments>
		<pubDate>Thu, 17 Feb 2011 10:46:47 +0000</pubDate>
		<dc:creator>adminSander</dc:creator>
				<category><![CDATA[Geen categorie]]></category>

		<guid isPermaLink="false">http://sander.jessar.nl/?p=49</guid>
		<description><![CDATA[De zoektocht naar een pin apparaat voor het atelier van mijn vrouw is beëindigd. Er waren verschillende opties namelijk: Huren, kopen of een tweedehands apparaat. Huren Gezien de verwachte pintransacties (lees laag) en het relatief hoge huurtarief voor een pinautomaat viel deze optie gelijk al af. Tweedehands apparaat Het aanbod van tweedehands apparaten is redelijk [...]]]></description>
			<content:encoded><![CDATA[<p>De zoektocht naar een pin apparaat voor het <a href="http://www.jessar.nl">atelier van mijn vrouw</a> is beëindigd.<br />
Er waren verschillende opties namelijk: Huren, kopen of een tweedehands apparaat.</p>
<p><strong>Huren</strong><br />
Gezien de verwachte pintransacties (lees laag) en het relatief hoge huurtarief voor een pinautomaat viel deze optie gelijk al af.</p>
<p><strong>Tweedehands apparaat</strong><br />
Het aanbod van tweedehands apparaten is redelijk groot. Het probleem alleen is wat heb ik nodig? Gezien de recente ontwikkelingen wat betreft scammen en andere frauduleuze zaken is er het nieuwe pinnen.<br />
Veel apparaten welke tweedehands worden aangeboden zijn niet geschikt voor het nieuwe pinnen of kunnen wel geschikt gemaakt worden maar hebben dan nog een ouderwetse analoge verbinding nodig.<br />
Bij het nieuwe pinnen is het zo dat sterk aangeraden wordt om over te stappen op het pinnen over IP of te wel het internet.<br />
In het verleden wat het zo dat je hier een speciale gecertificeerde lijn voor nodig had, echter Currence heeft dit recent vrij gegeven zodat pinnen over een niet gecertificeerde internet verbinding ook mogelijk is.<br />
De prijs van tweede hands pin apparaten varieert maar een nog geschikt apparaat voor het nieuwe pinnen begint zo om en na bij de 250 euro. Andere apparaten die goedkoper zijn, zijn veelal niet geschikt en zullen hooguit nog dit jaar werken.</p>
<p><strong>Kopen</strong><br />
Kopen is in ons geval de beste optie. De aanschaf is redelijk prijzig (+/- 750 euro) maar daar heb je dan ook een apparaat voor dat geschikt is voor de toekomst en ook nog een goede restwaarde heeft.<br />
Wij hebben nu dit apparaat gekocht bij <a href="http://www.ccv.eu/web/NL-nl.htm">CCV</a>.<br />
Het grote voordeel is dat deze zo op het internet aangesloten kan worden en met bijbehorend contract van CCV verzorgen zij voor alles wat er verder mee te maken heeft. Geen geregel met de bank oid.<br />
Per maand betaal je dan een klein bedrag (< 2 euro) en een vergoeding per pin transactie (< 6 cent).<br />
Verder kun je nog een service contract afsluiten zodat je bij storing op dezelfde dag nog geholpen wordt.</p>
]]></content:encoded>
			<wfw:commentRss>http://sander.jessar.nl/?feed=rss2&#038;p=49</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla Template designer</title>
		<link>http://sander.jessar.nl/?p=47</link>
		<comments>http://sander.jessar.nl/?p=47#comments</comments>
		<pubDate>Thu, 17 Feb 2011 10:26:45 +0000</pubDate>
		<dc:creator>adminSander</dc:creator>
				<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://sander.jessar.nl/?p=47</guid>
		<description><![CDATA[If you are looking for a tool to build a template for Joomla, WordPress or drupal don&#8217;t look further. There is a piece of software on the market that is called Artisteer.]]></description>
			<content:encoded><![CDATA[<p>If you are looking for a tool to build a template for Joomla, WordPress or drupal don&#8217;t look further.<br />
There is a piece of software on the market that is called <a href="http://www.artisteer.com">Artisteer</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sander.jessar.nl/?feed=rss2&#038;p=47</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 AdSense Plugins for WordPress</title>
		<link>http://sander.jessar.nl/?p=38</link>
		<comments>http://sander.jessar.nl/?p=38#comments</comments>
		<pubDate>Thu, 17 Feb 2011 10:08:46 +0000</pubDate>
		<dc:creator>adminSander</dc:creator>
				<category><![CDATA[Geen categorie]]></category>

		<guid isPermaLink="false">http://sander.jessar.nl/?p=38</guid>
		<description><![CDATA[Having an easy way to insert any and all AdSense code to work with your site is important. Looking into the following plugins can ensure that you get your AdSense code working correctly on your site. Advertising Manager – Useful plugin for rotating your Google AdSense advertisements with other supported ad networks as well as [...]]]></description>
			<content:encoded><![CDATA[<p>Having an easy way to insert any and all AdSense code to work with your site is important. Looking into the following plugins can ensure that you get your AdSense code working correctly on your site.</p>
<p><a href="http://wordpress.org/extend/plugins/advertising-manager/">Advertising Manager</a> – Useful plugin for rotating your Google AdSense advertisements with other supported ad networks as well as unsupported ad networks as well.</p>
<p><a href="http://wordpress.org/extend/plugins/adsense-revenue-sharing/">Adsense Revenue Sharing 1.2</a> – A very simple to use plugin which allows you to insert your AdSense ads into any post. The plugin also allows you to share between co-authors as well.</p>
<p><a href="http://wordpress.org/extend/plugins/all-in-one-adsense-and-ypn/">All in One Adsense and YPN</a> – Automatically inserts your Adsense ads as well as Yahoo Publisher Network ads into your posts.</p>
<p><a href="http://wordpress.org/extend/plugins/adsense-under-image/">Adsense Under Image</a> – This plugin detects the first image in your post and inserts the Adsense code automatically. If no image is detected, the plugin will not put in the Adsense code.</p>
<p><a href="httphttp://wordpress.org/extend/plugins/askapache-firefox-adsense/">AskApache Firefox Adsense</a> – Makes Adsense ads only appear for visitors who are using Microsoft Windows as well as Internet Explorer, excluding those using Firefox.</p>
<p><a href="http://wordpress.org/extend/plugins/adsense-attachment-plugin/">Adsense Attachement Page</a> – Adds attachements to your post which can be expanded, while providing exposure for your Adsense ads with ease.</p>
<p><a href="http://wordpress.org/extend/plugins/wordpress-plugin-for-simple-google-adsense-insertion/">WP Simple Adsense Insertion</a> – Simple to use Adsense plugin for biginners with newer WordPress websites to easily integrate Adsense ads for any website with a call function.</p>
]]></content:encoded>
			<wfw:commentRss>http://sander.jessar.nl/?feed=rss2&#038;p=38</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

