<?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>spamcollect &#187; hosting</title>
	<atom:link href="http://www.spamcollect.com/archives/category/hosting/feed" rel="self" type="application/rss+xml" />
	<link>http://www.spamcollect.com</link>
	<description>about, all the spam in my life</description>
	<lastBuildDate>Fri, 25 Nov 2011 09:47:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>How does a Facebook server look like?</title>
		<link>http://www.spamcollect.com/archives/72</link>
		<comments>http://www.spamcollect.com/archives/72#comments</comments>
		<pubDate>Fri, 08 Apr 2011 15:28:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://www.spamcollect.com/?p=72</guid>
		<description><![CDATA[Facebook today announced an open source project called Open Compute Project. After Google showed how their servers are design, Facebook even went a step further and presented CAD files and detailed hardware information so everyone can build his own Facebook server. They removed everything that is completely useless for a server from the motherboard and [...]]]></description>
			<content:encoded><![CDATA[<p>Facebook today announced an open source project called <a href="http://opencompute.org/">Open Compute Project</a>. <br />
After Google showed how their servers are design, Facebook even went a step further and presented CAD files and detailed hardware information so everyone can build his own Facebook server. <br />
They removed everything that is completely useless for a server from the motherboard and designed an open chasie. <br />
More information about Open Compute Project can be found on <a href="http://opencompute.org/">http://opencompute.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.spamcollect.com/archives/72/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Activate PHP5 on Mac OS X Snow Leopard</title>
		<link>http://www.spamcollect.com/archives/56</link>
		<comments>http://www.spamcollect.com/archives/56#comments</comments>
		<pubDate>Mon, 16 Nov 2009 15:56:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://www.spamcollect.com/?p=56</guid>
		<description><![CDATA[I blog this, because it took me some time to figure that out and is so simple to fix. I just bought a Mac Mini Server with Mac OS X Snow Leopard Server. There is a nice interface to configure apache2, mailserver and everything else. By default there is no php5 enabled. If you look [...]]]></description>
			<content:encoded><![CDATA[<p>I blog this, because it took me some time to figure that out and is so simple to fix. </p>
<p>I just bought a Mac Mini Server with Mac OS X Snow Leopard Server. There is a nice interface to configure apache2, mailserver and everything else. By default there is no php5 enabled.<br />
If you look into the module list in the server admin interface, there is the php5_module. Just check the box, the server will perform a gracefully restart. </p>
<p>I just installed a little script with the following code in it. </p>
<p><code><? echo phpinfo(); ?></code></p>
<p>After that I opened the site in the local webbrowser. </p>
<p>The result was: </p>
<p><code><? echo phpinfo(); ?></code></p>
<p>Mhhh??? What went wrong? </p>
<p>The answer is quite simple. Mac OS X Server comes with NO php.ini and PHP comes with short_tags disabled by default. </p>
<p>So, just at a php.ini file or add <code><?php</code> to your script. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.spamcollect.com/archives/56/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>problem with permalinks in wordpress on plesk &#8211; strato virtual server</title>
		<link>http://www.spamcollect.com/archives/44</link>
		<comments>http://www.spamcollect.com/archives/44#comments</comments>
		<pubDate>Tue, 12 Aug 2008 16:30:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[hosting]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.spamcollect.com/archives/44</guid>
		<description><![CDATA[This took me a while! We installed a wordpress on the strato virtual machine and changed the permalink structure, but it didn&#8217;t work. My first thought was that there must be something wrong with mod_rewrite. Seems like apache is not reporting if a module isn&#8217;t loaded but tried to use. As Plesk is doing a [...]]]></description>
			<content:encoded><![CDATA[<p>This took me a while! <br />
We installed a wordpress on the strato virtual machine and changed the permalink structure, but it didn&#8217;t work.<br />
My first thought was that there must be something wrong with mod_rewrite. Seems like apache is not reporting if a module isn&#8217;t loaded but tried to use. <br />
As Plesk is doing a <del datetime="2008-08-12T16:15:19+00:00">good</del> job with it&#8217;s user interface, they are not using a standard apache installation with mods-enabled &#038; mods-availible. <br />
After searching for a while I found a file called /etc/sysconfig/apache2. </p>
<p>In my case it&#8217;s line 84:</p>
<p><code>APACHE_MODULES="actions alias auth_basic authn_file authz_host authz_groupfile authz_default authz_user authn_dbm autoindex cgi dir env expires include log_config mime negotiation setenvif ssl   userdir php5 perl python suexec"<br />
</code><br />
This is telling the apache which modules have to loaded, as you can see there is nothing like rewrite. <br />
Edit this line:</p>
<p><code>APACHE_MODULES="rewrite actions alias auth_basic authn_file authz_host authz_groupfile authz_default authz_user authn_dbm autoindex cgi dir env expires include log_config mime negotiation setenvif ssl   userdir php5 perl python suexec"</code></p>
<p>Restart apache with:<br />
<code>/etc/init.d/apache2 restart</code><br />
And it works. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.spamcollect.com/archives/44/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Never seen a webanalytics software like Woopra before.</title>
		<link>http://www.spamcollect.com/archives/39</link>
		<comments>http://www.spamcollect.com/archives/39#comments</comments>
		<pubDate>Tue, 20 May 2008 15:36:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.spamcollect.com/archives/39</guid>
		<description><![CDATA[First of all I have to give the guys from woopra two thumbs up. I use webanalytics software for some years now. I worked with Indextools and like nearly everyone with Google Analytics. As Indextools has been sold to Yahoo, Yahoo decided to change the business model of Indextools. Indextools was not free of charge [...]]]></description>
			<content:encoded><![CDATA[<p>First of all I have to give the guys from <a href="http://www.woopra.com">woopra</a> two thumbs up. <br />
I use <strong><a href="http://www.webanalyticsassociation.org/">webanalytics</a> software</strong> for some years now. I worked with <a href="http://www.indextools.com">Indextools</a> and like nearly everyone with Google Analytics.<br />
As Indextools has been sold to Yahoo, Yahoo decided to change the business model of Indextools. <br />
Indextools was not free of charge and hugh application for small sites. So Indextools is more a enterprise tracking system. </p>
<p>Google Analytics is free of charge. On big problem for commercial sites is that the collected data is owned by Google and the &#8220;terms and conditions&#8221; can be change quickly to use these data for their own needs. </p>
<p>Okay back to the main topic. A friend of mine told me about Woopra and I decided to sign up for the beta test. Woopra is free of charge right now. After the signup you&#8217;ll have to wait until the guys from Woopra decided to give you access. In my case, this took two weeks. <br />
After you&#8217;re enabled for Woopra, you have to install a javascript in your website. <br />
The cool thing behind Woopra is the <a href="http://java.sun.com">Java</a> application you can download from their page. Sadly you&#8217;ll need java 1.6 which kicks out nearly all the <a href="http://www.apple.com">Mac OS X</a> guys, because Java 1.6 is only availible to 64bit users, which means only Mac Pro users are supported.<br />
After installing the java application you have a wonderful, flash look-like, interface.<br />
<img src='http://www.spamcollect.com/wp-content/uploads/2008/05/bild-8.png' alt='Woopra Screenshot' /><br />
The best thing, you can see your users in real time. You can see, which site they are looking at, how long they have been there, where they came from (website and city/country) and a lot more. <br />
The killer feature here is that woopra enables you to chat to current visitors on your website. <br />
You can choose a user, click on &#8220;talk to this user&#8221; and get a chat window to talk to them. </p>
<p>At the end, Woopra is nice for small sites and blogs. I guess big business sites will not get the data they need and should use things like Indextools. </p>
<p>Btw. I think Woopra <a href="http://www.redhotchilipeppers.com/">ROCKS</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spamcollect.com/archives/39/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix &#8220;transfer aborted. disk quota exceeded&#8221; &#8211;</title>
		<link>http://www.spamcollect.com/archives/30</link>
		<comments>http://www.spamcollect.com/archives/30#comments</comments>
		<pubDate>Fri, 11 Jan 2008 13:28:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[hosting]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.spamcollect.com/archives/30</guid>
		<description><![CDATA[If you try to upload something you get &#8220;transfer aborted. disk quota exceeded&#8221;. If you bought a webhosting package somewhere, the answer is simple: &#8220;You don&#8217;t have anymore space left&#8221;. If this happens before the quota is exceeded and you have a root access to that machine, simple use this: quotacheck -v -c -F vfsold [...]]]></description>
			<content:encoded><![CDATA[<p>If you try to upload something you get &#8220;transfer aborted. disk quota exceeded&#8221;. </p>
<p>If you bought a webhosting package somewhere, the answer is simple: &#8220;You don&#8217;t have anymore space left&#8221;. <br />
If this happens before the quota is exceeded and you have a root access to that machine, simple use this:</p>
<p><code>quotacheck -v -c -F vfsold -m /</code></p>
<p>and restart the quota daemon</p>
<p><code>/etc/init.d/quota restart</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.spamcollect.com/archives/30/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto install djbdns with autoaxfr</title>
		<link>http://www.spamcollect.com/archives/28</link>
		<comments>http://www.spamcollect.com/archives/28#comments</comments>
		<pubDate>Sat, 05 Jan 2008 17:17:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[dns]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.spamcollect.com/archives/28</guid>
		<description><![CDATA[If you like to setup autoaxfr with djbdns, maybe this howto will help you. First of all, I assume that you have already installed ucspi-tcp and daemontools. If not, look at D.J. Bernsteins Webseite http://cr.yp.to and install it. After that, you will have to download autoaxfr and the djbdns Package. What I&#8217;m doing is a [...]]]></description>
			<content:encoded><![CDATA[<p>If you like to setup autoaxfr with djbdns, maybe this howto will help you.</p>
<p>First of all, I assume that you have already installed ucspi-tcp and daemontools. If not, look at D.J. Bernsteins Webseite<br />
<a href="http://cr.yp.to">http://cr.yp.to</a> and install it.</p>
<p>After that, you will have to download <a href="http://www.lickey.com/autoaxfr/">autoaxfr</a> and the <a href="http://cr.yp.to">djbdns</a> Package.<br />
What I&#8217;m doing is a basic installation. If you need IPv6 support, watch out, there will be a patch somewhere for djbdns.</p>
<p>Now, add the necessary users:<br />
<code><br />
groupadd dns<br />
useradd -g dns -s /bin/false dnscache<br />
useradd -g dns -s /bin/false tinydns<br />
useradd -g dns -s /bin/false dnslog<br />
useradd -g dns -s /bin/false axfrdns<br />
useradd -g dns -s /bin/false autoaxfr<br />
</code><br />
<br />
<strong>dnscache</strong></p>
<p>First of all, we install dnscache to 127.0.0.1</p>
<p><code>dnscache-conf dnscache dnslog /etc/dnscache 127.0.0.1</code><br />
If you like to distribute dns service to other machines in your network, add a real ip address.<br />
<strong>WARNING</strong>: <em>You can only use dnscache or tinydns on ONE ip address.</em></p>
<p>If you need dnscache to resolv domain names for other machines in your network, add the network or every machine by doing this. <br />
<code>touch /etc/dnscache/root/ip/192.168.0</code></p>
<p>Now it&#8217;s time to activate your dnscache.<br />
<code>ln -s /etc/dnscache /service</code></p>
<p>
<strong>tinydns</strong></p>
<p>You will need tinydns if you like to play dns server for domains. <br />
First of all, configure it: <br />
<code>tinydns-conf tinydns dnslog /etc/tinydns 212.89.98.32</code><br />
Use the external ip address, the server should be reachable at. </p>
<p>Now it&#8217;s time to setup autoaxfr.<br />
<code>autoaxfr-conf autoaxfr dnslog /etc/autoaxfr</code></p>
<p>You will now have to edit the file /etc/tinydns/root/Makefile<br />
Replace everything with this:<br />
<code>data.cdb: data<br />
/usr/local/bin/tinydns-data</p>
<p>data: mydata axfrdata<br />
cat $^ > $@</p>
<p>axfrdata: /service/autoaxfr/root/zones/*<br />
sort -u $^ > $@</code></p>
<p>Don&#8217;t forget to add the file mydata &#038; axfrdata:</p>
<p><code>touch /etc/tinydns/root/axfrdata</code><br />
<code>touch /etc/tinydns/root/mydata</code></p>
<p>After every change of data, a secondary dns or whatever, you&#8217;ll have to type make in /etc/tinydns/root/<br />
Just automate this with a cronjob. </p>
<p><code>*/10 * * * * cd /etc/tinydns/root &#038;&#038; make > /dev/null 2>&#038;1</code></p>
<p>Let&#8217;s start tinydns and autoaxfr.</p>
<p><code>ln -s /etc/tinydns /service<br />
ln -s /etc/autoaxfr /service<br />
</code></p>
<p>Goto /etc/autoaxfr/root/slaves.<br />
Add every domain you would like to distribute as secondary dns by adding the domain name as filename and the ip address of the primary dns controller as content in the file. </p>
<p>Example:<br />
<code>vi test.com<br />
123.123.123.133<br />
</code><br />
DONE! That&#8217;s the basic.</p>
<p>If you like to play primary dns server you&#8217;ll have to install axfrdns.<br />
<code>axfrdns-conf axfrdns dnslog /etc/axfrdns /etc/tinydns 212.89.98.32</code><br />
Use the same ip address as for tinydns. </p>
<p>Set the servers that are allowed to be secondary dns servers. <br />
<code>cd /etc/axfrdns<br />
vi /etc/axfrdns/tcp<br />
</code><br />
<br />
insert to following.</p>
<p><code>122.22.22.22:allow<br />
:deny<br />
</code><br />
<br />
You can restrict that to networks, domains and so on. For that, see the axfrdns manuel from djb.</p>
<p>After you have changed the file, type make. </p>
<p>Start axfrdns.</p>
<p><code>ln -s /etc/axfrdns /service</code></p>
<p>Comments, questions, whatever are welcome. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.spamcollect.com/archives/28/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dreamhost 10th Birthday</title>
		<link>http://www.spamcollect.com/archives/26</link>
		<comments>http://www.spamcollect.com/archives/26#comments</comments>
		<pubDate>Tue, 25 Sep 2007 09:22:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://www.spamcollect.com/archives/26</guid>
		<description><![CDATA[Dreamhost has it&#8217;s 10th birthday this week and for that reason, they dropped the prices for a limited time. Instead of 7.95 $ a month, they dropped the prices to 5.95$.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dreamhost.com/r.cgi?292657">Dreamhost</a> has it&#8217;s 10th birthday this week and for that reason, they dropped the prices for a limited time. <br />
Instead of 7.95 $ a month, they dropped the prices to 5.95$. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.spamcollect.com/archives/26/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best provider in the world = Dreamhost</title>
		<link>http://www.spamcollect.com/archives/25</link>
		<comments>http://www.spamcollect.com/archives/25#comments</comments>
		<pubDate>Fri, 21 Sep 2007 12:01:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://www.spamcollect.com/archives/25</guid>
		<description><![CDATA[I say Dreamhost is the best ISP in the world. You ask why? Cause there you get 140 GB Space and 1.4 TB Traffic. Because there you can host unlimited domains, also when you register them not at Dreamhost. You have access with ftp/sftp and ssh. Provides Ruby on Rails by default There you can [...]]]></description>
			<content:encoded><![CDATA[<p>I say <a href="http://www.dreamhost.com/r.cgi?292657">Dreamhost</a> is the best <strong>ISP</strong> in the world. <br />
You ask why?<br/></p>
<ul>
<li>Cause there you get 140 GB Space and 1.4 TB Traffic.</li>
<li>Because there you can host unlimited domains, also when you register them not at <a href="http://www.dreamhost.com/r.cgi?292657">Dreamhost</a>.</li>
<li>You have access with ftp/sftp and ssh. </li>
<li>Provides <strong>Ruby on Rails</strong> by default</li>
<li>There you can install a wordpress, wikimedia, phpBB and stuff like that with ONE click. Yes ONE!</li>
<li>You have thousands of email accounts. </li>
<li>SVN for free! Public an private.</li>
<li><strong>Quicktime-Streaming</strong> included.</li>
<li>Your own youtube thing.</li>
<li>24h support, that answers within minutes</li>
</ul>
<p>Now you ask, what will that cost? I tell you! It&#8217;s not expensiv&#8230;, it starts from 7,95 $ a month. </p>
<p>Guess what!?<br />
<a href="http://www.dreamhost.com/r.cgi?292657">I LOVE DREAMHOST</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.spamcollect.com/archives/25/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

