<?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>seeking immortality &#187; horde</title>
	<atom:link href="http://blag.sebacean.net/tag/horde/feed/" rel="self" type="application/rss+xml" />
	<link>http://blag.sebacean.net</link>
	<description>where are we going, and why am i in this handbasket</description>
	<lastBuildDate>Tue, 22 Dec 2009 23:26:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Horde on Webspace (no shell) Part2</title>
		<link>http://blag.sebacean.net/2008/12/horde-on-webspace-no-shell-part2/</link>
		<comments>http://blag.sebacean.net/2008/12/horde-on-webspace-no-shell-part2/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 16:07:36 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[horde]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=63</guid>
		<description><![CDATA[After uploading the (now smaller) Horde with our FTP client we can continue with Part 2 The Database Since without shell access we can&#8217;t use Horde&#8217;s setup (./scripts/setup.php) to do this for us we have to manually set up the database for Horde. This step depends on your webhosters so i&#8217;ll just make it quick:]]></description>
			<content:encoded><![CDATA[<p>After uploading the (<a href="http://blag.sebacean.net/2008/12/14/horde-on-webspace-no-shell-part1/">now</a> smaller) Horde with our FTP client we can continue with</p>
<p><strong>Part 2 The Database</strong><br />
Since without shell access we can&#8217;t use Horde&#8217;s setup (./scripts/setup.php) to do this for us we have to manually set up the database for Horde.</p>
<p>This step depends on your webhosters so i&#8217;ll just make it quick:<br />
First create a database with your webhost, then find: hostname (often locahost), username, password, type (often tcp) and databasename for that database.</p>
<p>Now your webhoster probably offers some kind of management frontend (mostly phpmyadmin). There you navigate to your database and select the &#8220;SQL&#8221; tab.</p>
<p>In the editbox you will find there you have to paste some of the lines from the .sql file provided with Horde that matches your database. I use mysql so i used ./scripts/sql/create.mysql.sql.</p>
<p>Out host already created the database, the user etc. so we only need lines that create tables. In my file this would be lines 52 -> end (look for the first CREATE TABLE statement). Copy&#038;Paste and press Submit. This should have given you no errors and created ~18 tables in your database.</p>
<p>In the next step we will create a basic configuration that allows Horde to run so we can do the rest of the setup from within it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/12/horde-on-webspace-no-shell-part2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Horde on Webspace (no shell) Part1</title>
		<link>http://blag.sebacean.net/2008/12/horde-on-webspace-no-shell-part1/</link>
		<comments>http://blag.sebacean.net/2008/12/horde-on-webspace-no-shell-part1/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 01:19:09 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[horde]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blag.sebacean.net/?p=57</guid>
		<description><![CDATA[Because i don't like the webmailer my host has chosen for me (roundcube) i decided to try installing Horde on the webspace that came with it.
This experiment will most likely fail because i don't have shell access and the php installation is probably missing vital modules .. but what else is there to do on a saturday evening]]></description>
			<content:encoded><![CDATA[<p>Because i don&#8217;t like the webmailer my host has chosen for me (roundcube) i decided to try installing Horde on the webspace that came with it.</p>
<p>This experiment will most likely fail because i don&#8217;t have shell access and the php installation is probably missing vital modules .. but what else is there to do on a saturday evening<br />
<strong><br />
Part1: Horde is f***ing huge!<br />
</strong><br />
<code><br />
du -sch .<br />
108M    total<br />
</code></p>
<p>I&#8217;ll start by making horde a little slimer&#8230;<br />
This will give me all the folders with locales other than german or english (cd to horde first)<br />
<code><br />
find -iname ??_?? -type d | grep -v de_DE | grep -v en_US | grep -v en_GB<br />
</code><br />
and this will delete them<br />
<code><br />
find -iname ??_?? -type d | grep -v de_DE | grep -v en_US | grep -v en_GB | xargs rm -r<br />
</code></p>
<p>The same for the &#8220;.po&#8221; files:<br />
<code><br />
find -iname ??_??.po -type f | grep -v de_DE | grep -v en_US | grep -v en_GB | xargs rm -r<br />
</code></p>
<p><code><br />
du -sch .<br />
51M     total<br />
</code><br />
Half the size, nice <img src='http://blag.sebacean.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blag.sebacean.net/2008/12/horde-on-webspace-no-shell-part1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
