<?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>ForestSoft Blog</title>
	<atom:link href="http://blog.forestsoft.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.forestsoft.de</link>
	<description>Weblog from a Webhoster</description>
	<lastBuildDate>Sun, 06 Mar 2011 10:49:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.2</generator>
		<item>
		<title>Exception: Serialization of &#8216;Mage_Core_Model_Config_Element&#8217; is not allowed</title>
		<link>http://blog.forestsoft.de/2011/03/exception-serialization-of-mage_core_model_config_element-is-not-allowed/</link>
		<comments>http://blog.forestsoft.de/2011/03/exception-serialization-of-mage_core_model_config_element-is-not-allowed/#comments</comments>
		<pubDate>Sun, 06 Mar 2011 10:49:21 +0000</pubDate>
		<dc:creator>Sebastian Förster</dc:creator>
				<category><![CDATA[PHP-Programming]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[PHPUnit]]></category>
		<category><![CDATA[Unittest]]></category>

		<guid isPermaLink="false">http://blog.forestsoft.de/?p=291</guid>
		<description><![CDATA[if you get the Error above by executing Magento Unittest look at your Configuration Options for PHPUnit. backupStaticAttributes must set to false.]]></description>
		<wfw:commentRss>http://blog.forestsoft.de/2011/03/exception-serialization-of-mage_core_model_config_element-is-not-allowed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shell Script to install php</title>
		<link>http://blog.forestsoft.de/2011/01/shell-script-to-install-php/</link>
		<comments>http://blog.forestsoft.de/2011/01/shell-script-to-install-php/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 10:54:22 +0000</pubDate>
		<dc:creator>Sebastian Förster</dc:creator>
				<category><![CDATA[PHP-Programming]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://blog.forestsoft.de/?p=277</guid>
		<description><![CDATA[For my work I have developed a little shellscript to configure and install my php installations: My folder Structure is like following: /usr/local/bin/php/phpversion There is a symlink to current phpversion: /usr/local/bin/php/current -> /usr/local/bin/php/phpversion The Script configure php with some standard flags and create the binary files in the folders above: #!/bin/bash &#160; EXTENSION_DIR=&#34;/usr/local/bin/php/$1/extensions&#34; &#160; if [...]]]></description>
		<wfw:commentRss>http://blog.forestsoft.de/2011/01/shell-script-to-install-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shared Memory issue with mod_fcgid</title>
		<link>http://blog.forestsoft.de/2011/01/shared-memory-issue-with-mod_fcgid/</link>
		<comments>http://blog.forestsoft.de/2011/01/shared-memory-issue-with-mod_fcgid/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 21:02:38 +0000</pubDate>
		<dc:creator>Sebastian Förster</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.forestsoft.de/?p=274</guid>
		<description><![CDATA[Today I had an issue about the shared memory for my apache server. It want reserve memory for a fcgid process and stop with message: No space left on device: mod_fcgid: Can&#8217;t create shared memory for size After a liittle bit research i´ve found out that one of my customers locked over 4000 processes with [...]]]></description>
		<wfw:commentRss>http://blog.forestsoft.de/2011/01/shared-memory-issue-with-mod_fcgid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up an Gearman Cluster on Debian</title>
		<link>http://blog.forestsoft.de/2010/12/setting-up-an-gearman-cluster-on-debian/</link>
		<comments>http://blog.forestsoft.de/2010/12/setting-up-an-gearman-cluster-on-debian/#comments</comments>
		<pubDate>Sun, 19 Dec 2010 14:14:16 +0000</pubDate>
		<dc:creator>Sebastian Förster</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[gearman]]></category>
		<category><![CDATA[jobserver]]></category>

		<guid isPermaLink="false">http://blog.forestsoft.de/?p=230</guid>
		<description><![CDATA[First we need to download latest release of gearmand server at the gearman homepage. #!/bin/bash apt-get install libevent-dev uuid-dev build-essential g++ wget http://launchpad.net/gearmand/trunk/0.14/+download/gearmand-0.14.tar.gz tar xvzf gearmand-0.14.tar.gz cd gearmand-0.14 ./configure make make install ldconfig At configure i ran in some errors. Many of them you can find at Problems on installing Gearmand. Before we can use [...]]]></description>
		<wfw:commentRss>http://blog.forestsoft.de/2010/12/setting-up-an-gearman-cluster-on-debian/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setting up an Gearman Client on php5 as Extension</title>
		<link>http://blog.forestsoft.de/2010/12/setting-up-an-gearman-client-on-php5-as-extension/</link>
		<comments>http://blog.forestsoft.de/2010/12/setting-up-an-gearman-client-on-php5-as-extension/#comments</comments>
		<pubDate>Sun, 19 Dec 2010 14:13:29 +0000</pubDate>
		<dc:creator>Sebastian Förster</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[gearman]]></category>
		<category><![CDATA[phpize]]></category>

		<guid isPermaLink="false">http://blog.forestsoft.de/?p=250</guid>
		<description><![CDATA[First determine that your system has the phpize command. The base php5 package of Debian does not include phpize. You can install that with following command: gearclient1:~# apt-get install php5-dev Before you can start you must install the gearmen libraries from the post Setting up an Gearman Cluster on Debian. Now you can download the [...]]]></description>
		<wfw:commentRss>http://blog.forestsoft.de/2010/12/setting-up-an-gearman-client-on-php5-as-extension/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Problems on installing Gearmand</title>
		<link>http://blog.forestsoft.de/2010/12/problems-on-installing-gearmand/</link>
		<comments>http://blog.forestsoft.de/2010/12/problems-on-installing-gearmand/#comments</comments>
		<pubDate>Sun, 19 Dec 2010 12:55:19 +0000</pubDate>
		<dc:creator>Sebastian Förster</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[c++ compiler]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[gearman]]></category>

		<guid isPermaLink="false">http://blog.forestsoft.de/?p=233</guid>
		<description><![CDATA[On executing ./configure i get the following error: configure: error: No working C++ Compiler has been found. gearmand requires a C+ The Solution is to install following Packages: gearserver:~# apt-get install build-essential g++ No the Installation work fine. Starting the Gearman Daemon At command gearman I became the next error: error while loading shared libraries: [...]]]></description>
		<wfw:commentRss>http://blog.forestsoft.de/2010/12/problems-on-installing-gearmand/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Secure your Typoscripts</title>
		<link>http://blog.forestsoft.de/2010/12/secure-your-typoscripts/</link>
		<comments>http://blog.forestsoft.de/2010/12/secure-your-typoscripts/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 20:22:14 +0000</pubDate>
		<dc:creator>Sebastian Förster</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Typo3]]></category>
		<category><![CDATA[Typoscript]]></category>

		<guid isPermaLink="false">http://blog.forestsoft.de/?p=218</guid>
		<description><![CDATA[Typo3 allow the functionallity that you can outsource your TypoScripts in an external File. Most developer use the File Extension .ts for these kind of Files. They store the Typo Scripts in a public folder like fileadmin/typoscripts. In this case can all view sensitive Data including Robots of many Search Engines. Some Examples can be [...]]]></description>
		<wfw:commentRss>http://blog.forestsoft.de/2010/12/secure-your-typoscripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Typo3 User Function</title>
		<link>http://blog.forestsoft.de/2010/12/typo3-user-function/</link>
		<comments>http://blog.forestsoft.de/2010/12/typo3-user-function/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 20:19:41 +0000</pubDate>
		<dc:creator>Sebastian Förster</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.forestsoft.de/?p=215</guid>
		<description><![CDATA[Today we had lost 1 Hour because we want implement an User Function in Typo3 over an Typoscript. Following Snippet does not work: ### add user stylesheets ### includeLibs.usersites = fileadmin/scripts/class.usersites_css.php page.headerData.1010 = USER page.headerData.1010.userFunc = usersitescss->usergetcss This example include the class where the User function. The mistake is that Typo3 has a Naming Convention [...]]]></description>
		<wfw:commentRss>http://blog.forestsoft.de/2010/12/typo3-user-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compare MySQL Databases with Toad for MySQL</title>
		<link>http://blog.forestsoft.de/2010/12/compare-mysql-databases-with/</link>
		<comments>http://blog.forestsoft.de/2010/12/compare-mysql-databases-with/#comments</comments>
		<pubDate>Sat, 11 Dec 2010 10:38:41 +0000</pubDate>
		<dc:creator>Sebastian Förster</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[compare]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://blog.forestsoft.de/?p=210</guid>
		<description><![CDATA[Yesterday I´ve found a program which I looking for a long Time ago. We want comapre any MySQL Databases including Data its in. The great Software calls Toad for MySQL and can be download here. It support some nice Features: Compare any Databases on any MySQL Server. Compare Structure of an Database Compare Date of [...]]]></description>
		<wfw:commentRss>http://blog.forestsoft.de/2010/12/compare-mysql-databases-with/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHPUnit Selenium Driver and Screenshots</title>
		<link>http://blog.forestsoft.de/2010/12/phpunit-selenium-driver-and-screenshots/</link>
		<comments>http://blog.forestsoft.de/2010/12/phpunit-selenium-driver-and-screenshots/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 20:56:56 +0000</pubDate>
		<dc:creator>Sebastian Förster</dc:creator>
				<category><![CDATA[PHP-Programming]]></category>

		<guid isPermaLink="false">http://blog.forestsoft.de/?p=204</guid>
		<description><![CDATA[If you use PHUnit Selenium Extension with Possibilty to take Screenshots on Error be aware that your Operating System where you run the test is the same that the Selenium Server runs. PHPUnit use DIRECTORY_SEPARATOR to tell Selenium Server where Screenshots should be saved. If you run the test under Windows and your Selenium Server [...]]]></description>
		<wfw:commentRss>http://blog.forestsoft.de/2010/12/phpunit-selenium-driver-and-screenshots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

