<?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>Michael Kolb Fulda&#187; Webhosting and services</title>
	<atom:link href="http://www.michael-kolb.co.uk/category/webhosting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.michael-kolb.co.uk</link>
	<description>Web Engineering</description>
	<lastBuildDate>Mon, 01 Mar 2010 05:58:27 +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>How to use logrotate by linux</title>
		<link>http://www.michael-kolb.co.uk/webhosting/how-to-use-logrotate-by-linux/</link>
		<comments>http://www.michael-kolb.co.uk/webhosting/how-to-use-logrotate-by-linux/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 06:30:31 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Linux Daemons]]></category>
		<category><![CDATA[Webhosting]]></category>
		<category><![CDATA[daemon hosting linux]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=1393</guid>
		<description><![CDATA[In a server environment it&#8217;s quite important to keep the size of log files in track. Everyone knows the problem of increasing file sizes in this matter. Therefore the logrotate daemon may help you to solve this problem. Files are rotated ore removed in a defined time slot to gzipped files for X times. You [...]]]></description>
			<content:encoded><![CDATA[<p>In a server environment it&#8217;s quite important to keep the size of log files in track. Everyone knows the problem of increasing file sizes in this matter. Therefore the logrotate daemon may help you to solve this problem. Files are rotated ore removed in a defined time slot to gzipped files for X times. You can find the configuration in /etc/logrotate.d.</p>
<p>In this directory you can find already given config files for some linux services.</p>
<p>This is an example of the samba logrotate in /etc/logrotate.d/samba:<br />
<code><br />
/var/log/samba/log.smbd {<br />
        weekly<br />
        missingok<br />
        rotate 7<br />
        postrotate<br />
                invoke-rc.d --quiet samba reload > /dev/null<br />
        endscript<br />
        compress<br />
        notifempty<br />
}<br />
</code></p>
<p><span id="more-1393"></span></p>
<p>The samba log file is rotated weekly and 7 rotated files will be compressed and archived. The eighth file is removed. After the rotation process the samba daemon is reloaded.</p>
<p><strong>compress </strong><br />
This is used to compress the rotated log file with gzip. </p>
<p><strong>nocompress </strong><br />
This is used when you don&#8217;t want to compress rotated log files. </p>
<p><strong>copytruncate</strong><br />
This is used when processes are still writing information to open log files. This option copies the active log file to a backup and truncates the active log file. </p>
<p><strong>nocopytruncate</strong><br />
This copies the log files to backup, but the open log file is not truncated. </p>
<p><strong>create mode owner group</strong><br />
This rotates the log file and creates a new log file with the specified permissions, owner, and group. The default is to use the same mode, owner, and group as the original file. </p>
<p><strong>nocreate</strong><br />
This prevents the creation of a new log file. </p>
<p><strong>delaycompress</strong><br />
When used with the compress option, the rotated log file is not compressed until the next time it is cycled. </p>
<p><strong>nodelaycompress</strong><br />
This overrides delaycompress. The log file is compressed when it is cycled. </p>
<p><strong>errors address</strong><br />
This mails logrotate errors to an address. </p>
<p><strong>ifempty</strong><br />
With this, the log file is rotated even if it is empty. This is the default for logrotate. </p>
<p><strong>notifempty</strong><br />
This does not rotate the log file if it is empty. </p>
<p><strong>mail address</strong><br />
This mails log files that are cycled to an address. When mail log files are cycled, they are effectively removed from the system. </p>
<p><strong>nomail</strong><br />
When mail log files are cycled, a copy is not mailed. </p>
<p><strong>olddir directory</strong><br />
With this, cycled log files are kept in the specified directory. This directory must be on the same filesystem as the current log files. </p>
<p><strong>noolddir</strong><br />
Cycled log files are kept in the same directory as the current log files. </p>
<p><strong>prerotate/endscript</strong><br />
These are statements that enclose commands to be executed prior to a log file being rotated. The prerotate and endscript keywords must appear on a line by themselves. </p>
<p><strong>postrotate/endscript</strong><br />
These are statements that enclose commands to be executed after a log file has been rotated. The postrotate and endscript keywords must appear on a line by themselves. </p>
<p><strong>daily</strong><br />
This is used to rotate log files daily. </p>
<p><strong>weekly</strong><br />
This is used to rotate log files weekly. </p>
<p><strong>monthly</strong><br />
This is used to rotate log files monthly. </p>
<p><strong>rotate count</strong><br />
This specifies the number of times to rotate a file before it is deleted. A count of 0 (zero) means no copies are retained. A count of 5 means five copies are retained. </p>
<p><strong>tabootext [+] list</strong><br />
This directs logrotate to not rotate files with the specified extension. The default list of extensions is .rpm-orig, .rpmsave, v, and ~. </p>
<p><strong>size size</strong><br />
With this, the log file is rotated when the specified size is reached. Size may be specified in bytes (default), kilobytes (sizek), or megabytes (sizem).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/webhosting/how-to-use-logrotate-by-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free webhosting control panels</title>
		<link>http://www.michael-kolb.co.uk/webhosting/free-webhosting-control-panels/</link>
		<comments>http://www.michael-kolb.co.uk/webhosting/free-webhosting-control-panels/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 15:05:51 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Webhosting]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=438</guid>
		<description><![CDATA[If you&#8217;re going to become a webhoster &#8211; the control panel will be one of most important decisions. If the control panel doesn&#8217;t work reasonable, you will loose your customers. 
So, it&#8217;s not easy to choose an apropriate system. In this article I will present a few free webhosting control panels, which runs on linux. [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re going to become a webhoster &#8211; the control panel will be one of most important decisions. If the control panel doesn&#8217;t work reasonable, you will loose your customers. </p>
<p>So, it&#8217;s not easy to choose an apropriate system. In this article I will present a few free <a href="http://www.michael-kolb.co.uk/tag/hosting/">webhosting</a> control panels, which runs on <a href="http://www.michael-kolb.co.uk/tag/linux/">linux</a>. In a future post, I will also present some commercial panels. </p>
<ul>
<li><a href="http://www.michael-kolb.co.uk/webhosting/free-webhosting-control-panels/#asm">ASM Account Service Manager</a></li>
<li><a href="http://www.michael-kolb.co.uk/webhosting/free-webhosting-control-panels/#dtc">DTC Domain Technology Control</a></li>
<li><a href="http://www.michael-kolb.co.uk/webhosting/free-webhosting-control-panels/#webcp">Web-CP</a></li>
<li><a href="http://www.michael-kolb.co.uk/webhosting/free-webhosting-control-panels/#syscp">SysCP</a></li>
<li><a href="http://www.michael-kolb.co.uk/webhosting/free-webhosting-control-panels/#vhcs">VHCS</a></li>
</ul>
<p><span id="more-438"></span></p>
<hr />
<a name="asm"></p>
<h2>The ASM (Account Service Manager) project</h2>
<p>The ASM project is a nice control panel to serve some relatives or friends. The panel is well sorted and offers the most required features. Because of the styling and layout, I would disadvice that panel for commercial services.</p>
<p>The last activities are long time ago, so I suppose the developer has stopped the project. What a shame.</p>
<table class="table_screenshots">
<tr>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/asm1.jpg" alt="Account Service Manager" title="asm1" width="200" height="200" class="alignnone size-full wp-image-898" />
</td>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/asm2.jpg" alt="Account Service Manager" title="asm2" width="200" height="200" class="alignnone size-full wp-image-899" />
</td>
</tr>
<tr>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/asm3.jpg" alt="Account Service Manager" title="asm3" width="200" height="200" class="alignnone size-full wp-image-900" />
</td>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/asm4.jpg" alt="Account Service Manager" title="asm4" width="200" height="200" class="alignnone size-full wp-image-901" />
</td>
</tr>
</table>
<p></p>
<div class="border_box">
<strong>Important points:</strong></p>
<ul>
<li>Perl based system</li>
<li><a href="http://www.michael-kolb.co.uk/tag/security/">Secure</a> login &#8211; locks sessions by IP and hostname</li>
<li>Changing theme properties by config file</li>
<li>Modular architecture &#8211; easy customizing</li>
<li>API library</li>
<li>Easy configuration by a single file</li>
<li>Own configuration file for each customer to define limits</li>
<li>Language: english only</li>
</ul>
</div>
<p>&nbsp;<br />
Finding project here: <a href="http://www.acctmgr.com/" target="_blank">http://www.acctmgr.com/</a></p>
<p><a name="dtc"></p>
<h2>The DTC (Domain Technology Control) project</h2>
<p>This project seems to be more active than the above one. DTC is a nice looking control panel and supports the most required features and is sponsored by at least two companies. It&#8217;s advisable for commercial environments.<br />&nbsp;<br />
<em>DTC can delegate the task of creating subdomains, email, ssh, database, mailing lists, and FTP accounts to users for the domain names they own.</em><br />&nbsp;<br />
Furthermore you can find a comprehensive wiki and install instructions.</p>
<table class="table_screenshots">
<tr>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/gpl1.jpg" alt="Domain Technology Control Panel" title="GPLHost1" width="200" height="168" class="alignnone size-full wp-image-912" />
</td>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/gpl2.jpg" alt="Domain Technology Control Panel" title="GPLHost2" width="200" height="199" class="alignnone size-full wp-image-913" />
</td>
</tr>
<tr>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/dtc3.jpg" alt="Domain Technology Webhosting Panel" title="DTC" width="200" height="134" class="alignnone size-full wp-image-981" /></td>
<td><img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/dtc4.jpg" alt="Domain Technology Webhosting Panel" title="dtc4" width="200" height="150" class="alignnone size-full wp-image-982" />
</td>
</tr>
</table>
<p></p>
<div class="border_box">
<strong>Important points:</strong></p>
<ul>
<li>Real-time bandwidth monitor for all server on each user basis</li>
<li>Antivirus and anti-spam with spam quarantine (&#8220;spam&#8221; imap folder) for mail</li>
<li>Automated backup NS and MX between 2 or more control panels (with domain list exchange over HTTPS)</li>
<li>Unix type independency (can run on FreeBSD, redhat, debian, OS-X&#8230;)</li>
<li>Store-front integration with registration form and payment gateway option</li>
<li>Mailing lists with many options</li>
<li>Package installer (like fantastico) to be able to install many <a href="http://www.michael-kolb.co.uk/tag/cms/">apps</a> (phpBB, osCommerce, Drupal, etc&#8230;)</li>
<li>Full internationalization: translated to many languages </li>
<li>Management of all types of hosting: Shared, Dedicated or VPS</li>
<li>Full billing system, including customer invoicing and renewals, and company book keeping with multiple company support</li>
<li>Integrated support ticket system</li>
<li>Chrooted cgi-bin with execution limitation to protect your server</li>
<li>No ugly daemon running: we use apache directly</li>
<li>Choice of running daemon: apache 1.3 or 2, mysql 3.23, 4 or even 5, from php 4.1.2 to php5, proftpd or pure-ftpd, qmail or postfix, etc&#8230;</li>
<li>Commercial support available</li>
</ul>
<p><strong>Supported distributions:</strong></p>
<ul>
<li>Debian</li>
<li>FreeBSD</li>
<li>RedHat</li>
<li>MAC OSX Server</li>
<li>Gentoo</li>
</ul>
</div>
<p>&nbsp;<br />
Finding project here: <a href="http://www.gplhost.com/software-dtc.html" target="_blank">http://www.gplhost.com/software-dtc.html</a></p>
<p><a name="webcp"></p>
<h2>The Web-CP (Webhosting Control Panel) project</h2>
<p>Web-CP is a nice control panel, but not really advisable for commercial use. The look and feel could be more modern &#8211; but it&#8217;s open source &#8211; so you can adapt it for your needs.<br />&nbsp;<br />
The panel has less features inside customer section. I am missing:</p>
<ul>
<li>FTP account management</li>
<li>htaccess menue</li>
<li>error page management</li>
<li><a href="http://www.michael-kolb.co.uk/tag/mysql/">mysql</a> management (create and backup databases) / You can create customer databases only in the serverCP section, but not as customer. phpMyAdmin is available</li>
<li>SSL management</li>
</ul>
<p>Maybe there are some more features in the future. The current version is more useful for own website projects on a vserver / dedicated server, than for commercial webhosting control panel. </p>
<table class="table_screenshots">
<tr>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/webcp1.jpg" alt="Web Control Panel" title="webcp1" width="200" height="135" class="alignnone size-full wp-image-915" />
</td>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/webcp2.jpg" alt="Web Control Panel" title="webcp2" width="200" height="135" class="alignnone size-full wp-image-916" />
</td>
</tr>
</table>
<p>&nbsp;</br></p>
<div class="border_box">
<strong>Important points:</strong></p>
<ul>
<li>Skinnable</li>
<li>Configurable Levels of Access</li>
<li>Task Automation</li>
<li>Advanced Reseller Management</li>
<li>Reseller, Domain, User Creation</li>
<li>Advanced User Management</li>
<li>E-Mail Settings; manage catch-all, aliase, autoresponder &#038; forward</li>
<li>Access Restrictions</li>
<li>Flexible Domain Settings: IP Address, Hostname, Domain Name, Hostname Aliases, Domain, wildcard and redirect options, HD, User, Data Transfer, Database, Subdomain, Pointer Quota, PHP, ASP, Perl, Python, SSL, SSI, etc.</li>
<li>Database Management</li>
<li>Mailing list Management</li>
</ul>
</div>
<p>&nbsp;<br />
Finding project here: <a href="http://www.web-cp.net/" target="_blank">http://www.web-cp.net/</a></p>
<p><a name="syscp"></p>
<h2>The SysCP project</h2>
<p>SysCP and VHCS are the most popular free webhosting control panels. With SysCP I have a lot experience &#8211; I&#8217;ve used this for a few hundred customers in several environments.<br />&nbsp;<br />
SysCP is very flexible an easy to adapt to your own needs. But be carefully, because of update compatibility. The system doesn&#8217;t have a template engine and is divided into typical three sections: Admin, Reseller, User.<br />
I can advise the system for commercial use, it&#8217;s supports all necessary features.</p>
<table class="table_screenshots">
<tr>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/syscp1.jpg" alt="SysCP Control Panel" title="syscp1" width="200" height="128" class="alignnone size-full wp-image-918" />
</td>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/syscp2.jpg" alt="SysCP Control Panel" title="syscp2" width="200" height="128" class="alignnone size-full wp-image-919" />
</td>
</tr>
<tr>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/syscp3.jpg" alt="SysCP Control Panel" title="syscp3" width="200" height="128" class="alignnone size-full wp-image-921" />
</td>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/syscp4.jpg" alt="SysCP Control Panel" title="syscp4" width="200" height="128" class="alignnone size-full wp-image-922" />
</td>
</tr>
</table>
<p>&nbsp;</p>
<div class="border_box">
<strong>Supported <a href="http://www.michael-kolb.co.uk/tag/daemon/">daemons</a>:</strong></p>
<ul>
<li>Apache, Apache 2.x, Lighttpd</li>
<li>Bind9, PowerDNS</li>
<li>Courier, Dovecot</li>
<li>Postfix, Exim4</li>
<li>ProFTP, PureFTP</li>
<li>Awstats, Webalizer</li>
</ul>
<p><strong>Important points:</strong></p>
<ul>
<li>Mail, FTP &#038; Webspace management</li>
<li>Traffic-, Billing- and Ticketsystem</li>
<li>(Software as a Service) one click application installer (APS-Standard)</li>
<li>15 languages supported</li>
<li>DKIM &#038; individual DNS/SPF Records</li>
<li>SSL for SysCP Panel and Customers</li>
<li>Full FastCGI/fcgid support</li>
<li>Full IPv4 and IPv6 support</li>
<li>Safemode and open_basedir chosable</li>
<li>Editable email-templates</li>
<li>Panel logging</li>
<li>Custom errorpages and path settings</li>
<li>
</ul>
<p><strong>Supported distributions:</strong></p>
<ul>
<li>Debian 4.0 (Etch)</li>
<li>Debian 3.1 (Sarge)</li>
<li>Ubuntu 8.04 (Hardy Heron)</li>
<li>Gentoo Linux</li>
<li>OpenSuSE Linux 10.0</li>
<li>FreeBSD</li>
</ul>
</div>
<p>&nbsp;<br />
Finding project here: <a href="http://www.syscp.org/home.html" target="_blank">http://www.syscp.org/home.html</a></p>
<p><a name="vhcs"></p>
<h2>The VHCS project</h2>
<p>VHCS is also an very common control panel and often used in commercial hosting environments. Without any doubt, I can advise this project.<br />&nbsp;<br />The panel contains the three typical sections for admins, resellers and users. In addition to SysCP, VHCS contains an own WebFTP and WebMail interface. The project is well documented.</p>
<table class="table_screenshots">
<tr>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/vhcs1.jpg" alt="vhcs1" title="vhcs1" width="200" height="150" class="alignnone size-full wp-image-925" />
</td>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/vhcs2.jpg" alt="vhcs2" title="vhcs2" width="200" height="142" class="alignnone size-full wp-image-926" />
</td>
</tr>
<tr>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/vhcs3.jpg" alt="vhcs3" title="vhcs3" width="200" height="144" class="alignnone size-full wp-image-927" />
</td>
<td>
<img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/vhcs4.jpg" alt="vhcs4" title="vhcs4" width="200" height="216" class="alignnone size-full wp-image-928" />
</td>
</tr>
</table>
<div class="border_box">
<strong>Important points:</strong></p>
<ul>
<li>Hosting services plan management &#8211; create your own hosting plans</li>
<li>Аutomated creation of users and domains</li>
<li><a href="http://www.michael-kolb.co.uk/tag/design/">Graphical</a> evaluation of every reseller&#8217;s and user&#8217;s traffic</li>
<li>Virtual hosts management (Name-based, IP-based)</li>
<li>CO-Domains (Domain alias) and sub domains management</li>
<li>DNS (BIND 8 and 9) management</li>
<li>Managing FTP, EMail adresses, POP3 and IMAP accounts, autoresponders</li>
<li>CGI, PHP,SSI configuration and management</li>
<li>MySQL user databases, backup, restore</li>
<li>SSL-secured domains</li>
<li>password protection (.htaccess files)</li>
<li>Custom error files &#8211; 401, 403, 404 and 500</li>
<li>Multilanguage support</li>
<li>Skin-based graphic user interface &#8211; 4 pre-installed skins</li>
</ul>
<p><strong>Supported distributions:</strong></p>
<ul>
<li>SuSE Linux 7.x 8.x and 9.x</li>
<li>Red Hat Linux 7.x and 9.0</li>
<li>Debian Linux sid, woody and sarge</li>
<li>Fedora Core1, Core2 and Core 3</li>
</ul>
<p><strong>Used <a href="http://www.michael-kolb.co.uk/tag/daemon/">daemons</a>:</strong></p>
<ul>
<li>Apache</li>
<li>Postfix MTA</li>
<li>ProFTP</li>
<li>PHP 4.x, Perl</li>
<li>MySQL</li>
<li>Courier POP3, IMAP</li>
<li>OpenSSL or mod_ssl for SSL-Webs</li>
<li>BIND8 / BIND9 (DNS Server)</li>
</ul>
</div>
<p>&nbsp;<br />
Finding the project here: <a href="http://www.vhcs.net/new/" target="_blank">http://www.vhcs.net/new/</a><br />
</p>
<p>Please feel free to comment any further free control panels or forgotten features if you know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/webhosting/free-webhosting-control-panels/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Authinfo for .de domains</title>
		<link>http://www.michael-kolb.co.uk/webhosting/authinfo-for-de-domains/</link>
		<comments>http://www.michael-kolb.co.uk/webhosting/authinfo-for-de-domains/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 13:06:18 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Webhosting]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=712</guid>
		<description><![CDATA[Since december 2008, the DENIC provides an authinfo for domain transfers. This method is known from a lot top level domains. Befor december, the DENIC provided an asynchronous transfer method, which doesn&#8217;t need an authinfo.
Firstly, the registration agency allows to use both methods parallel. But the authinfo method is much more secure. It decreases the [...]]]></description>
			<content:encoded><![CDATA[<p>Since december 2008, the DENIC provides an authinfo for domain transfers. This method is known from a lot top level domains. Befor december, the DENIC provided an asynchronous transfer method, which doesn&#8217;t need an authinfo.</p>
<p>Firstly, the registration agency allows to use both methods parallel. But the authinfo method is much more <a href="http://www.michael-kolb.co.uk/tag/security/">secure</a>. It decreases the risk to transfer domains to unauthorized persons, because of the generated authinfo password.</p>
<p><strong>How does it work:</strong><br />
<span id="more-712"></span><br />
If you are the owner of a .de domain and want to transfer it from a <a href="http://www.michael-kolb.co.uk/tag/hosting/">webhoster</a> to another, than you have to follow these steps:</p>
<ul>
<li>Send your present hoster a notice of cancellation with the intention to do a provider change. The present hoster needs this sheet to get the admission for unlocking the domain.</li>
<li>The present hoster will send you an automatic generated password (authinfo)</li>
<li>Take the order at the future contractor with the note, that the domain isn&#8217;t a new one but a transfer domain</li>
<li>Put the authinfo code wich got from present hoster into the appropriate order field of the future hoster.</li>
<li>The transfer will be done, when the two passwords matches</li>
</ul>
<p><img src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/authinfo_1_scaled_2.jpg" alt="authinfo_1_scaled_2" title="authinfo_1_scaled_2" width="450" height="326" class="alignnone size-full wp-image-728" /><br /><i>Image by DENIC</i></p>
<p>Helpful links:
<ul>
<li>
<a href="http://www.denic.de/de/denic/presse/press_91.html" target="_blank">http://www.denic.de/de/denic/presse/press_91.html</a> [german]
</li>
<li>
<a href="http://www.denic.de/en/denic/presse/press_91.html" target="_blank">http://www.denic.de/en/denic/presse/press_91.html</a> [english]
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/webhosting/authinfo-for-de-domains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ProFTPd authentification with MySQL</title>
		<link>http://www.michael-kolb.co.uk/webhosting/proftpd-authentification-with-mysql/</link>
		<comments>http://www.michael-kolb.co.uk/webhosting/proftpd-authentification-with-mysql/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 07:06:11 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Linux Daemons]]></category>
		<category><![CDATA[Webhosting]]></category>
		<category><![CDATA[daemon]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=69</guid>
		<description><![CDATA[It&#8217;s very helpful to use the mysql authentification for proftpd. Especially if you manage a quite number of users. So you&#8217;re able to use a central database which manages the accounts.



First thing you need is an appropriate mysql schema that belongs your needs. This is my example:

CREATE TABLE ftp_users (
  username varchar(60) binary default [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s very helpful to use the <a href="http://www.michael-kolb.co.uk/tag/mysql">mysql</a> authentification for proftpd. Especially if you manage a quite number of users. So you&#8217;re able to use a central database which manages the accounts.</p>
<p><img class="size-medium wp-image-202 aligncenter"  src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/12/proftpd.jpg" alt="proftpd with mysql" title="proftpd with mysql" width="301" height="241" class="alignnone size-medium wp-image-505" /></p>
<p><span id="more-69"></span></p>
<p>
First thing you need is an appropriate <a href="http://www.michael-kolb.co.uk/tag/mysql">mysql</a> schema that belongs your needs. This is my example:<br />
<br />
<code>CREATE TABLE ftp_users (<br />
  username varchar(60) binary default NULL,<br />
  uid int(11) default NULL,<br />
  gid int(11) default NULL,<br />
  password varchar(30) default NULL,<br />
  homedir varchar(250) default NULL,<br />
  count int(11) default NULL,<br />
  ui bigint(20) NOT NULL auto_increment,<br />
  shell varchar(60) default NULL,<br />
  last datetime default NULL,<br />
  allow char(1) default NULL,<br />
  PRIMARY KEY  (ui)<br />
) TYPE=ISAM PACK_KEYS=1;<br />
<br />
CREATE TABLE xfer_stat (<br />
  username tinytext,<br />
  filename text,<br />
  size bigint(20) default NULL,<br />
  host tinytext,<br />
  ip tinytext,<br />
  action tinytext,<br />
  durability tinytext,<br />
  local_time datetime default NULL,<br />
  success char(1) default NULL,<br />
  ui bigint(20) NOT NULL auto_increment,<br />
  PRIMARY KEY  (ui)<br />
) TYPE=MyISAM;<br />
</code></p>
<p>
Be sure to have installed all required <a href="http://www.michael-kolb.co.uk/tag/linux/">linux</a> packages:<br />
</p>
<p><code>apt-get -y install mysql-client-5.0<br />
apt-get -y install mysql-server-5.0<br />
apt-get -y install mysql-common<br />
apt-get -y install proftpd-mysql</code></p>
<p>Last thing to do is adapting the /etc/proftpd.conf for acessing <a href="http://www.michael-kolb.co.uk/tag/mysql">mysql</a> tables. You will find the lines at end of the configuration file. Please insert your passwords:</p>
<p><code><br />
DefaultRoot ~<br />
RequireValidShell off<br />
<br />
SQLAuthTypes            Plaintext Crypt<br />
SQLAuthenticate         users* groups*<br />
SQLConnectInfo          mysqluser@127.0.0.1 mysqluser mysqlpassword<br />
SQLUserInfo               ftp_users username password uid gid homedir shell<br />
SQLGroupInfo             ftp_groups groupname gid members<br />
SQLUserWhereClause      "login_enabled = 'Y'"<br />
<br />
SQLLogFile /var/log/ftp/proftpd.sql.log<br />
<br />
SQLLog PASS login<br />
SQLNamedQuery login UPDATE "last_login=now(), login_count=login_count+1 WHERE username='%u'" ftp_users<br />
<br />
SQLLog RETR download<br />
SQLNamedQuery download UPDATE "down_count=down_count+1, down_bytes=down_bytes+%b WHERE username='%u'" ftp_users<br />
<br />
SQLLog STOR upload<br />
SQLNamedQuery upload UPDATE "up_count=up_count+1, up_bytes=up_bytes+%b WHERE username='%u'" ftp_users<br />
</code></p>
<p>Helpful link:<br />
<a href="http://www.proftpd.de/HowTo-SQL.29.0.html" target="_blank">http://www.proftpd.de/HowTo-SQL.29.0.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/webhosting/proftpd-authentification-with-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to setup email forwarding in PLESK</title>
		<link>http://www.michael-kolb.co.uk/webhosting/setup-email-forwarding-in-plesk/</link>
		<comments>http://www.michael-kolb.co.uk/webhosting/setup-email-forwarding-in-plesk/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 12:40:07 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Webhosting]]></category>
		<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=381</guid>
		<description><![CDATA[With PLESK you&#8217;re able to define some email forwardings / redirects which makes your mailing more comfortable. Don&#8217;t forget to update your DNS records also (if this is in your keeping).
Step 1: login to the backend. Usually your domain with port 8443. Example:
https://www.yourdomain.com:8443


Step 2:: choose your domain name (click &#8220;start&#8221; in left menue first)

Step 3: [...]]]></description>
			<content:encoded><![CDATA[<p>With PLESK you&#8217;re able to define some email forwardings / redirects which makes your mailing more comfortable. Don&#8217;t forget to update your DNS records also (if this is in your keeping).</p>
<p><strong>Step 1</strong>: login to the backend. Usually your domain with port 8443. Example:<br />
<code>https://www.yourdomain.com:8443</code></p>
<p><span id="more-381"></span></p>
<p><img class="alignnone size-medium wp-image-383" title="plesk-mail1" src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/11/plesk-mail1.jpg" alt="plesk login" width="400" height="237" /></p>
<p><strong>Step 2:</strong>: choose your domain name (click &#8220;start&#8221; in left menue first)<br />
<img class="alignnone size-medium wp-image-386" title="plesk-mail2" src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/11/plesk-mail2.jpg" alt="plesk start" width="450" height="333" /></p>
<p><strong>Step 3</strong>: after selecting the appropriate item, you&#8217;ll find an email symbol on the screen.<br />
<img class="alignnone size-medium wp-image-390" title="plesk choose domain" src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/11/plesk-mail3.jpg" alt="plesk mail" width="450" height="76" /></p>
<p><strong>Step 4</strong>: creating an email account by clicking the symbol.<br />
<img class="alignnone size-medium wp-image-392" title="plesk email icon" src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/11/plesk-mail4.jpg" alt="plesk create mail account" width="450" height="171" /></p>
<p><strong>Step 5</strong>: Type in required informations and mailname &#8211; leave checkbox downside false. So, no ordinary account is needed.<br />
<img class="alignnone size-medium wp-image-394" title="plesk email account creating" src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/11/plesk-mail5.jpg" alt="plesk required fields" width="450" height="305" /></p>
<p><strong>Step 6</strong>: The defined email will be shown in your list. All left mini &#8211; icons should be gray. Clicking the third from left hand, the redirection editor opens.<br />
<img class="alignnone size-medium wp-image-396" title="plesk email listing" src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/11/plesk-mail6.jpg" alt="plesk email list" width="443" height="345" /></p>
<p><strong>Last step</strong>: enter the redirecten adress and set checkbox.<br />
<img class="alignnone size-medium wp-image-397" title="plesk email redirect" src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/11/plesk-mail7.jpg" alt="plesk email redirect" width="450" height="131" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/webhosting/setup-email-forwarding-in-plesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHOIS services and IP location</title>
		<link>http://www.michael-kolb.co.uk/webhosting/whois-services-and-ip-location/</link>
		<comments>http://www.michael-kolb.co.uk/webhosting/whois-services-and-ip-location/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 10:34:22 +0000</pubDate>
		<dc:creator>mk_michael</dc:creator>
				<category><![CDATA[Webhosting]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://www.michael-kolb.co.uk/?p=73</guid>
		<description><![CDATA[If you want to know, where an IP adress is located, or who has owned a domain, choose one of the links below:


IP location websites:
http://www.geobytes.com/IpLocator.htm
http://www.db.ripe.net/whois
http://www.seomoz.org/ip2loc?start
http://geotool.servehttp.com/
WHOIS queries:
http://www.internic.net/whois.html
http://www.denic.de/de/
http://www.betterwhois.com/
http://www.rrpproxy.net/
]]></description>
			<content:encoded><![CDATA[<p>If you want to know, where an IP adress is located, or who has owned a domain, choose one of the links below:</p>
<p style="text-align: center;"><a href="http://www.michael-kolb.co.uk/wp-content/uploads/2008/11/whois.jpg"><img class="size-medium wp-image-202 aligncenter" title="whois" src="http://www.michael-kolb.co.uk/wp-content/uploads/2008/11/whois.jpg" alt="" width="242" height="146" /></a></p>
<p><span id="more-73"></span><br />
<strong>IP location websites:</strong><br />
<a title="GeoBytes" rel="nofollow" href="http://www.geobytes.com/IpLocator.htm" target="_blank">http://www.geobytes.com/IpLocator.htm</a><br />
<a title="Ripe" rel="nofollow" href="http://www.db.ripe.net/whois" target="_blank">http://www.db.ripe.net/whois</a><br />
<a title="SEOMoz" rel="nofollow" href="http://www.seomoz.org/ip2loc?start" target="_blank">http://www.seomoz.org/ip2loc?start</a><br />
<a title="GeoTool" rel="nofollow" href="http://geotool.servehttp.com/" target="_blank">http://geotool.servehttp.com/</a></p>
<p><strong>WHOIS queries:</strong><br />
<a title="Internic" rel="nofollow" href="http://www.internic.net/whois.html" target="_blank">http://www.internic.net/whois.html</a><br />
<a title="Denic" rel="nofollow" href="http://www.denic.de/de/" target="_blank">http://www.denic.de/de/</a><br />
<a title="BetterWhois" rel="nofollow" href="http://www.betterwhois.com/" target="_blank">http://www.betterwhois.com/</a><br />
<a title="RRPProxy" rel="nofollow" href="http://www.rrpproxy.net/" target="_blank">http://www.rrpproxy.net/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.michael-kolb.co.uk/webhosting/whois-services-and-ip-location/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
