<?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>Cauwenbergh.be weblog &#187; Internet &#8211; SEO &#8211; Money</title>
	<atom:link href="http://blog.cauwenbergh.be/category/internet-seo-money/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.cauwenbergh.be</link>
	<description>When communication is needed</description>
	<lastBuildDate>Tue, 06 Jul 2010 14:58:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Mysql Master Master Replication on CentOS 5</title>
		<link>http://blog.cauwenbergh.be/linux/mysql-master-master-replication-on-centos-5.html</link>
		<comments>http://blog.cauwenbergh.be/linux/mysql-master-master-replication-on-centos-5.html#comments</comments>
		<pubDate>Tue, 22 Jun 2010 18:00:25 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Internet - SEO - Money]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=127</guid>
		<description><![CDATA[This tutorial describes how to set up a MySQL master-master replication. This is usefull is one of the servers drops down, the other can take over without any data loss, it will also be used as slave for the live one.
Step 1:
Install mysql on master 1 (slave 2) and slave 1 (master2).
#yum install mysql-server mysql
Master [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial describes how to set up a MySQL master-master replication. This is usefull is one of the servers drops down, the other can take over without any data loss, it will also be used as slave for the live one.</p>
<p><span style="text-decoration: underline;"><strong>Step 1:</strong></span><br />
Install mysql on master 1 (slave 2) and slave 1 (master2).<br />
#yum install mysql-server mysql</p>
<p>Master 1 (slave 2) ip: 10.0.0.1<br />
Slave 1 (master 2) ip: 10.0.0.2<br />
<script type="text/javascript"><!--
google_ad_client = "pub-1114332043095871";
/* 468x60, blog.cauwenbergh tussen post */
google_ad_slot = "7932083405";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<span style="text-decoration: underline;"><strong>Step 2:</strong></span><br />
On Master 1, change /etc/my.cnf as follow:</p>
<p>[mysqld]<br />
datadir=/var/lib/mysql<br />
socket=/var/lib/mysql/mysql.sock<br />
old_passwords=1<br />
user=mysql<br />
log-bin=mysql-bin<br />
server-id=1</p>
<p>[mysqld_safe]<br />
log-error=/var/log/mysqld.log<br />
pid-file=/var/run/mysqld/mysqld.pid</p>
<p><span style="text-decoration: underline;"><strong>Step 3:</strong></span><br />
Logon to mysql on master 1 (in our case the server with ip 10.0.0.1):<br />
mysql&gt; grant replication slave on *.* to &#8216;<span style="color: #339966;">repl</span>&#8216;@&#8217;%&#8217; identified by &#8216;<span style="color: #339966;">WhatYouwant</span>&#8216;;</p>
<p>After this restart the mysql on master 1</p>
<p><span style="color: #999999;"><em>We used the % but you can set here also 10.0.0.2 for a more secure server!</em></span></p>
<p><span style="text-decoration: underline;"><strong>Step 4:</strong></span><br />
On slave 1 (in our case the server with ip 10.0.0.2) edit /etc/my.cnf as follow:</p>
<p>[mysqld]<br />
datadir=/var/lib/mysql<br />
socket=/var/lib/mysql/mysql.sock<br />
user=mysql<br />
old_passwords=1<br />
server-id=2</p>
<p>[mysqld_safe]<br />
log-error=/var/log/mysqld.log<br />
pid-file=/var/run/mysqld/mysqld.pid</p>
<p><span style="text-decoration: underline;"><strong>Step 5:</strong></span><br />
Logon to mysql master 1:<br />
mysql&gt; show master status;<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| <span style="color: #ff0000;">mysql-bin.000007</span> |     <span style="color: #ff0000;">2013</span> |              |                  |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
1 row in set (0.00 sec)</p>
<p><span style="text-decoration: underline;"><strong>Step 6:</strong></span></p>
<p>Logon to mysql on slave 1 and use the infomation from step 5:<br />
mysql&gt;CHANGE MASTER TO MASTER_HOST=&#8217;10.0.0.1&#8242;, MASTER_USER=&#8217;<span style="color: #339966;">repl</span>&#8216;, MASTER_PASSWORD=&#8217;<span style="color: #339966;">WhatYouWant</span>&#8216;, MASTER_LOG_FILE=&#8217;<span style="color: #ff0000;">mysql-bin.000007</span>&#8216;, MASTER_LOG_POS=<span style="color: #ff0000;">2013</span>;<br />
mysql&gt;start slave;<br />
mysql&gt;show slave status\G</p>
<p><span style="color: #808080;">*************************** 1. row ***************************<br />
Slave_IO_State: Waiting for master to send event<br />
Master_Host: 10.0.0.1<br />
Master_User: repl<br />
Master_Port: 3306<br />
Connect_Retry: 60<br />
Master_Log_File: mysql-bin.000007<br />
Read_Master_Log_Pos: 2013<br />
Relay_Log_File: mysqld-relay-bin.000003<br />
Relay_Log_Pos: 2150<br />
Relay_Master_Log_File: mysql-bin.000007<br />
Slave_IO_Running: Yes<br />
Slave_SQL_Running: Yes<br />
Replicate_Do_DB:<br />
Replicate_Ignore_DB:<br />
Replicate_Do_Table:<br />
Replicate_Ignore_Table:<br />
Replicate_Wild_Do_Table:<br />
Replicate_Wild_Ignore_Table:<br />
Last_Errno: 0<br />
Last_Error:<br />
Skip_Counter: 0<br />
Exec_Master_Log_Pos: 2013<br />
Relay_Log_Space: 2150<br />
Until_Condition: None<br />
Until_Log_File:<br />
Until_Log_Pos: 0<br />
Master_SSL_Allowed: No<br />
Master_SSL_CA_File:<br />
Master_SSL_CA_Path:<br />
Master_SSL_Cert:<br />
Master_SSL_Cipher:<br />
Master_SSL_Key:<br />
Seconds_Behind_Master: 0<br />
1 row in set (0.00 sec)<br />
</span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-1114332043095871";
/* 468x60, blog.cauwenbergh tussen post */
google_ad_slot = "7932083405";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<span style="text-decoration: underline;"><strong>Step 7:</strong></span><br />
Now we going to make slave 1 -&gt; master 2 and master 1 -&gt; slave 2 so the master-master replication will work!<br />
On slave 1 (ip 10.0.0.2) we add a rule to /etc/my.cnf:<br />
[mysqld]<br />
datadir=/var/lib/mysql<br />
socket=/var/lib/mysql/mysql.sock<br />
user=mysql<br />
old_passwords=1<br />
server-id=2<br />
<em>log-bin</em></p>
<p>[mysqld_safe]<br />
log-error=/var/log/mysqld.log<br />
pid-file=/var/run/mysqld/mysqld.pid</p>
<p><span style="text-decoration: underline;"><strong>Step 8:</strong></span><br />
On slave 1 (ip 10.0.0.2 in our example) create the replication in mysql:<br />
mysql&gt; grant replication slave on *.* to &#8216;repl&#8217;@'%&#8217; identified by &#8216;<span style="color: #99cc00;">WhatYouWant</span>&#8216;;</p>
<p><span style="color: #999999;">You can change the % to be more safe in 10.0.0.1!</span></p>
<p>mysql&gt; show master status;<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| File              | Position | Binlog_Do_DB | Binlog_Ignore_DB |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| <span style="color: #ff00ff;">mysqld-bin.000005</span> |      <span style="color: #ff00ff;">314</span> |              |                  |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
1 row in set (0.00 sec)</p>
<p><span style="text-decoration: underline;"><strong>Step 9:</strong></span><br />
On master 1 (ip 10.0.0.1 in our example) add the user to mysql (use information from step 8):</p>
<p>mysql&gt;CHANGE MASTER TO MASTER_HOST=&#8217;10.0.0.2&#8242;, MASTER_USER=&#8217;repl&#8217;,  MASTER_PASSWORD=&#8217;<span style="color: #99cc00;">WhatYouWant</span>&#8216;, MASTER_LOG_FILE=&#8217;<span style="color: #ff00ff;">mysqld-bin.000005</span>&#8216;,  MASTER_LOG_POS=<span style="color: #ff00ff;">314</span>;</p>
<p><span style="text-decoration: underline;"><strong>Step 10:</strong></span><br />
Restart both mysql services on master 1 (slave 2) and slave 1 (master 2).</p>
<p>On master 1:<br />
mysql&gt; start slave;</p>
<p>On slave 1:<br />
mysql&gt; show master status;</p>
<p>On master 1:<br />
mysql&gt; show slave status\G<br />
<script type="text/javascript"><!--
google_ad_client = "pub-1114332043095871";
/* 468x60, blog.cauwenbergh tussen post */
google_ad_slot = "7932083405";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<pre>So now you can test on both servers if your config works! Hope you enjoy the tutorial and have a safe configuration! If you want safe hosting with this solution you can also take hosting by <a title="Netdistri bvba" href="http://netdistri.eu" target="_blank">Netdistri bvba</a>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/linux/mysql-master-master-replication-on-centos-5.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install postfix mailserver only for forwarding</title>
		<link>http://blog.cauwenbergh.be/linux/install-postfix-mailserver-only-for-forwarding.html</link>
		<comments>http://blog.cauwenbergh.be/linux/install-postfix-mailserver-only-for-forwarding.html#comments</comments>
		<pubDate>Tue, 01 Jun 2010 20:49:06 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Dutchzone]]></category>
		<category><![CDATA[Internet - SEO - Money]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Netdistri]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=124</guid>
		<description><![CDATA[For some reasons i only had to install a mailserver for forwarding mails to other mailaddresses. So on Centos here you have it:
#yum install postfix smtpd
edit /etc/postfix/main.cf
myhostname = your.domain.tld
virtual_alias_domains = redirectdomain1.tld, redirectdomain2.tld
virtual_alias_maps = hash:/etc/postfix/virtual
edit /etc/postfix/virtual
address@redirectdomain1.tld   addresto@domainto.tld
@redirectdomain2.tld  addresstocatchall@domaintoxx.tld
After this run the following commands:
# postalias /etc/aliases
# postmap /etc/postfix/access
# postmap /etc/postfix/virtual
# postmap /etc/postfix/transport
# cp /etc/aliases /etc/postfix/
# newaliases
# postfix [...]]]></description>
			<content:encoded><![CDATA[<p>For some reasons i only had to install a mailserver for forwarding mails to other mailaddresses. So on Centos here you have it:</p>
<p>#yum install postfix smtpd</p>
<p>edit /etc/postfix/main.cf</p>
<p>myhostname = your.domain.tld</p>
<p>virtual_alias_domains = redirectdomain1.tld, redirectdomain2.tld<br />
virtual_alias_maps = hash:/etc/postfix/virtual</p>
<p>edit /etc/postfix/virtual</p>
<p>address@redirectdomain1.tld   addresto@domainto.tld</p>
<p>@redirectdomain2.tld  addresstocatchall@domaintoxx.tld</p>
<p>After this run the following commands:</p>
<p># postalias /etc/aliases<br />
# postmap /etc/postfix/access<br />
# postmap /etc/postfix/virtual<br />
# postmap /etc/postfix/transport<br />
# cp /etc/aliases /etc/postfix/<br />
# newaliases<br />
# postfix reload</p>
<p>Now the server is ready to forward your mails!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/linux/install-postfix-mailserver-only-for-forwarding.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobistar Internet Everywhere after Leopard Upgrade</title>
		<link>http://blog.cauwenbergh.be/internet-seo-money/mobistar-internet-everywhere-after-leopard-upgrade.html</link>
		<comments>http://blog.cauwenbergh.be/internet-seo-money/mobistar-internet-everywhere-after-leopard-upgrade.html#comments</comments>
		<pubDate>Fri, 11 Sep 2009 16:09:07 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Internet - SEO - Money]]></category>
		<category><![CDATA[Iphone - GSM]]></category>
		<category><![CDATA[mobistar]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=63</guid>
		<description><![CDATA[Today after upgrading to Mac Snow Leopard (Mac OS 10.6) my internet everywhere usb-modem let hang the whole macbook, so i called to Mobistar support desk for Internet 0800-85953 and choose in the menu option 2 for technical information. Here they say the only solution is to reinstall my old OS, so there was no [...]]]></description>
			<content:encoded><![CDATA[<p>Today after upgrading to Mac Snow Leopard (Mac OS 10.6) my internet everywhere usb-modem let hang the whole macbook, so i called to Mobistar support desk for Internet 0800-85953 and choose in the menu option 2 for technical information. Here they say the only solution is to reinstall my old OS, so there was no easy way they say, you can only put your system back to the boxinstallation and reinstall everything, yeahhh duh, not me was my idea&#8230; He also say i don&#8217;t know when we got a sollution, and you can not change your usb-modem for an other, this is not allowed by persons in higher ranking in the company! So, i&#8217;m searching on the website of http://www.option.com for a newer driver for my Qualcomm 3G  ICON GI0225 usbmodem, after 2 minutes got the download page and downloaded the driver (<a title="qualcomm driver GI0225 Mobistar" href="http://blog.cauwenbergh.be/downloads/Option72Driverv2.15.0for.dmg.zip">http://blog.cauwenbergh.be/downloads/Option72Driverv2.15.0for.dmg.zip</a>). I removed first my Internet Everywhere from Mobistar, then installed the new driver, after that rebooted and then reinstalled Internet Everywhere, because my mac keeps the newest files everything is working now again&#8230; SO MOBISTAR LEARN HOW TO GET CUSTOMERS SATISFIED AND DON&#8217;T SEND THEM AWAY WITHOUT A SOLUTION!!!!</p>
<p><!--adsense--></p>
<p>Voor deze ene keer zal ik het ook in het nederlands posten gezien de meeste mensen het zo beter gaan vinden en omdat het over een Belgisch product gaat. Vandaag heb ik Snow Leopard op mijn Macbook Pro gezet, allemaal leuk, geen enkel probleem gehad tot ik deze namiddag lekken mijn Mobistar Internet Everywhere ging gebruiken, toen liep het systeem vast van zodra de USB-Modem in de computer ging&#8230; Dus ik bel even Mobistar op 0800-85953 (want op het gewone nummer kunnen ze een Business klant niet helpen met Internet Everywhere toestanden) nu goed ik kies daar optie 2 voor technische problemen, zo slim ben ik dus nog&#8230; Krijg ik daar een heer aan de lijn en die zegt meneer gebruikt een Mac en heeft een nieuw besturingssysteem, wel dan zit er niets anders op dan je systeem opnieuw naar het vroegere systeem te zetten, allemaal leuk maar dat is niet zo leuk om te doen, je kan eerst alles backuppen, daarna lekker alles terug installeren. Dus ik wijs hen erop dat ze hun klanten toch iets moeten kunnen bieden, onderbreekt die gast mij en zegt: meneer, we weten een oplossing maar we mogen ze van onze overste niet aanbieden, dus bedank ik mooi en dacht ik nogmaals opnieuw installeren, jakkes no way! Ik ben op het internet op zoek gegaan bij de fabrikant van mijn USB-modem (Option) Qualcomm GI0225 en vond daar toevallig wel nieuwe werkende drivers&#8230; Hoe ga je te werk, dat vond ik na een paar pogingen: 1) verwijder je bestaande Mobistar software 2) reboot je Mac 3) installeer de nieuwe driver (<a title="driver qualcomm GI0225" href="http://blog.cauwenbergh.be/downloads/Option72Driverv2.15.0for.dmg.zip">http://blog.cauwenbergh.be/downloads/Option72Driverv2.15.0for.dmg.zip</a>) 4) reboot je Mac nogmaals en dan stop je gewoon je modem van Mobistar weer in, laat de software installeren van die stick, geen probleem enkel de nieuwe bestanden blijven behouden dus overschrijven van je nieuwe driver doet hij niet! EN OPGELOST je hebt weer Internet&#8230;</p>
<p>DUS MOBISTAR WEET WEER HOE DE KLANT NIET GELUKKIG TE MAKEN EN HEM SNEL WEG TE ZENDEN IPV. DE TECHNISCHE MENSEN EEN OPLOSSING TE LATEN ZOEKEN DIE ECHT NIET MOEILIJK IS!!!! ZOU IK NU KORTING KRIJGEN VOOR DE OPLOSSING DIE IK ZELF MOEST ZOEKEN???</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/internet-seo-money/mobistar-internet-everywhere-after-leopard-upgrade.html/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Techspider.NET project</title>
		<link>http://blog.cauwenbergh.be/internet-seo-money/techspidernet-project.html</link>
		<comments>http://blog.cauwenbergh.be/internet-seo-money/techspidernet-project.html#comments</comments>
		<pubDate>Fri, 23 Nov 2007 16:34:34 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Internet - SEO - Money]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/internet-seo-money/techspidernet-project.html</guid>
		<description><![CDATA[Since today Techspider.net is active and open for public, this forum will handle about Technical skills for website related stuff, offcourse we now there are more than one of thes on the internet. But none of them was what some people expect from it so we started an excisting conecept in a different way! so [...]]]></description>
			<content:encoded><![CDATA[<p>Since today Techspider.net is active and open for public, this forum will handle about Technical skills for website related stuff, offcourse we now there are more than one of thes on the internet. But none of them was what some people expect from it so we started an excisting conecept in a different way! so if you think you need it, visit <a href="http://www.techspider.net" title="Technical internet skills" target="_blank">http://www.techspider.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/internet-seo-money/techspidernet-project.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working on Linkdirectory clickto.be/nl</title>
		<link>http://blog.cauwenbergh.be/internet-seo-money/working-on-linkdirectory-clicktobenl.html</link>
		<comments>http://blog.cauwenbergh.be/internet-seo-money/working-on-linkdirectory-clicktobenl.html#comments</comments>
		<pubDate>Tue, 30 Oct 2007 10:04:28 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Internet - SEO - Money]]></category>
		<category><![CDATA[find your website]]></category>
		<category><![CDATA[linkdirectory]]></category>
		<category><![CDATA[make money on the internet]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[webmaster]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/internet-seo-money/working-on-linkdirectory-clicktobenl.html</guid>
		<description><![CDATA[ Since about 2 months i&#8217;m working on a linkdirectory, i thought it would be easier, but each time there is something i would do better then and that takes me a couple of hours extra! So for those of you who know a good way to rate the links (websites) let me know and [...]]]></description>
			<content:encoded><![CDATA[<p> <a href="http://blog.cauwenbergh.be/wp-content/uploads/2007/10/clicktoscreen.gif" title="clickto screenshor"><img src="http://blog.cauwenbergh.be/wp-content/uploads/2007/10/clicktoscreen.thumbnail.gif" alt="clickto screenshot" align="left" height="145" width="174" /></a>Since about 2 months i&#8217;m working on a linkdirectory, i thought it would be easier, but each time there is something i would do better then and that takes me a couple of hours extra! So for those of you who know a good way to rate the links (websites) let me know and maybe you get a profit by helping me on my way.<br />
At this time i also have to make the useractivationsystem so it would be more activated, as you can see the you got the first sight at the site by this blog :p</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/internet-seo-money/working-on-linkdirectory-clicktobenl.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Doing business on the www</title>
		<link>http://blog.cauwenbergh.be/internet-seo-money/doing-business-on-the-www.html</link>
		<comments>http://blog.cauwenbergh.be/internet-seo-money/doing-business-on-the-www.html#comments</comments>
		<pubDate>Sun, 21 Oct 2007 11:57:12 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Internet - SEO - Money]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=35</guid>
		<description><![CDATA[After looking on the internet and searching for a good SEO-site none of them has the things i need, i hate to read for hours and did not get any result, so for the first time in my life i have spend some money for a complete site&#8230; http://myhomebizrocks.info/ is a website with SEO content [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.cauwenbergh.be/wp-content/uploads/2007/10/mybizrocks.gif" title="MyBizRocks.info screenshot"><img src="http://blog.cauwenbergh.be/wp-content/uploads/2007/10/mybizrocks.gif" alt="MyBizRocks.info screenshot" align="left" /></a>After looking on the internet and searching for a good SEO-site none of them has the things i need, i hate to read for hours and did not get any result, so for the first time in my life i have spend some money for a complete site&#8230; <a href="http://myhomebizrocks.info/" title="http://myhomebizrocks.info/" target="_blank">http://myhomebizrocks.info/</a> is a website with SEO content that was not difficult to understand so i think it has some potential, so guys/girls if you need SEO solutions visit <a href="http://myhomebizrocks.info/" title="SEO http://myhomebizrocks.info/" target="_blank">SEOsite</a> now.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/internet-seo-money/doing-business-on-the-www.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>why M$ can&#8217;t make things easy&#8230;</title>
		<link>http://blog.cauwenbergh.be/internet-seo-money/why-m-cant-make-things-easy.html</link>
		<comments>http://blog.cauwenbergh.be/internet-seo-money/why-m-cant-make-things-easy.html#comments</comments>
		<pubDate>Tue, 16 Oct 2007 15:18:04 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Internet - SEO - Money]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=34</guid>
		<description><![CDATA[After 2 weeks trying outlook MS has made my life not as easy as they think they do&#8230;

My imapmailbox is running fine for some months by now, but when changing my thunderbird for outlook because i need a calendar, login and recieving mail is perfect, so far so good, but after one week the system [...]]]></description>
			<content:encoded><![CDATA[<p>After 2 weeks trying outlook MS has made my life not as easy as they think they do&#8230;<br />
<!--adsense--><br />
My imapmailbox is running fine for some months by now, but when changing my thunderbird for outlook because i need a calendar, login and recieving mail is perfect, so far so good, but after one week the system could not send any mail to addresses where the domainname is not mentioned in rcphosts, this is not funny, you can not add every domain you want to send mail to i think&#8230; So i&#8217;m searching but not finding the solution (even on <a href="http://www.swsoft.com" title="SWSoft" target="_blank">swsoft.com</a> the company behind Plesk) they do not know what is happening, many posts no solution on the discussionboards, so  in my settings in outlook it says use the same login infomation as for recieving mails, after doing this manual everything went fine, thank you mister Gates i&#8217;m thinking again to switch to thunderbird or something simular that has good thing on board for mailing!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/internet-seo-money/why-m-cant-make-things-easy.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
