<?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>codeterrorizer.com</title>
	<atom:link href="http://www.codeterrorizer.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codeterrorizer.com</link>
	<description>Code Snippets</description>
	<lastBuildDate>Fri, 11 May 2012 09:09:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Typo3 fluid assign HTML Code</title>
		<link>http://www.codeterrorizer.com/t3-extension-development/typo3-fluid-assign-html-code</link>
		<comments>http://www.codeterrorizer.com/t3-extension-development/typo3-fluid-assign-html-code#comments</comments>
		<pubDate>Fri, 11 May 2012 09:09:38 +0000</pubDate>
		<dc:creator>Christian Koch</dc:creator>
				<category><![CDATA[t3 extension development]]></category>
		<category><![CDATA[asign html]]></category>
		<category><![CDATA[fluid assign html]]></category>
		<category><![CDATA[typo3 fluid]]></category>
		<category><![CDATA[typo3 fluid assign html]]></category>

		<guid isPermaLink="false">http://www.codeterrorizer.com/?p=514</guid>
		<description><![CDATA[To assign html code to the corresponding fluid variable it has to be in one of the following fluid tags:

To make sure to get all of your raw data you could use the following tag until Typo3 4.5:
Starting from Typo3 4.6 you can use the following tag:
Related posts:
Typo3 Fluid &#8211; nested Translation in Fluid Tags
Typo3 Read More
Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/t3-extension-development/typo3-fluid-verschachtelte-ubersetzung-in-fluid-tags' rel='bookmark' title='Typo3 Fluid &#8211; nested Translation in Fluid Tags'>Typo3 Fluid &#8211; nested Translation in Fluid Tags</a></li>
<li><a href='http://www.codeterrorizer.com/t3-extension-development/typo3-extension-howto-get-startingpoint-and-recursive-value' rel='bookmark' title='Typo3 Extension: Howto get startingpoint and recursive value'>Typo3 Extension: Howto get startingpoint and recursive value</a></li>
<li><a href='http://www.codeterrorizer.com/php/typo3-flexform-outsourcing-language-for-your-flexform' rel='bookmark' title='Typo3 Extension Flexform, outsourcing Language Files for your flexform'>Typo3 Extension Flexform, outsourcing Language Files for your flexform</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>To assign html code to the corresponding fluid variable it has to be in one of the following fluid tags:<br />
<span id="more-514"></span></p>
<pre class="brush: xml; title: ; notranslate">
&lt;f:format.html&gt;{yourVariable}&lt;/format.html&gt;
</pre>
<p>To make sure to get all of your raw data you could use the following tag until Typo3 4.5:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;f:format.html parseFuncTSPath=&quot;&quot;&gt;{yourVariable}&lt;/f:format.html&gt;
</pre>
<p>Starting from Typo3 4.6 you can use the following tag:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;f:format.raw&gt;{yourVariable}&lt;/f:format.raw&gt;
</pre>
<p>Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/t3-extension-development/typo3-fluid-verschachtelte-ubersetzung-in-fluid-tags' rel='bookmark' title='Typo3 Fluid &#8211; nested Translation in Fluid Tags'>Typo3 Fluid &#8211; nested Translation in Fluid Tags</a></li>
<li><a href='http://www.codeterrorizer.com/t3-extension-development/typo3-extension-howto-get-startingpoint-and-recursive-value' rel='bookmark' title='Typo3 Extension: Howto get startingpoint and recursive value'>Typo3 Extension: Howto get startingpoint and recursive value</a></li>
<li><a href='http://www.codeterrorizer.com/php/typo3-flexform-outsourcing-language-for-your-flexform' rel='bookmark' title='Typo3 Extension Flexform, outsourcing Language Files for your flexform'>Typo3 Extension Flexform, outsourcing Language Files for your flexform</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.codeterrorizer.com/t3-extension-development/typo3-fluid-assign-html-code/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YouTube iframe z-index</title>
		<link>http://www.codeterrorizer.com/xhtml/youtube-iframe-z-index</link>
		<comments>http://www.codeterrorizer.com/xhtml/youtube-iframe-z-index#comments</comments>
		<pubDate>Mon, 07 May 2012 13:47:49 +0000</pubDate>
		<dc:creator>Christian Koch</dc:creator>
				<category><![CDATA[xhtml]]></category>
		<category><![CDATA[youtube iframe z-index]]></category>
		<category><![CDATA[youtube z-index]]></category>

		<guid isPermaLink="false">http://www.codeterrorizer.com/?p=510</guid>
		<description><![CDATA[To be able to set z-index of a YouTube iframe it is necessary to set the following parameters:

This is your standard code:
This is what your new code should look like:
&#8220;?wmode=transparent&#8221; was added to your src parameter link.
Related posts:
Typo3 image processing
CSS: hover table rows
Min-Height for IE

Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/t3-extension-development/simple-image-processing' rel='bookmark' title='Typo3 image processing'>Typo3 image processing</a></li>
<li><a href='http://www.codeterrorizer.com/css-hacks/hover-table-rows' rel='bookmark' title='CSS: hover table rows'>CSS: hover table rows</a></li>
<li><a href='http://www.codeterrorizer.com/css-hacks/min-height-for-ie' rel='bookmark' title='Min-Height for IE'>Min-Height for IE</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>To be able to set z-index of a YouTube iframe it is necessary to set the following parameters:<br />
<span id="more-510"></span><br />
This is your standard code:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;iframe title=&quot;YouTube video player&quot; width=&quot;480&quot; height=&quot;390&quot; src=&quot;http://www.youtube.com/embed/ZQ2r_cP1xSw&quot; frameborder=&quot;0&quot; wmode=&quot;Opaque&quot;&gt;
</pre>
<p>This is what your new code should look like:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;iframe title=&quot;YouTube video player&quot; width=&quot;480&quot; height=&quot;390&quot; src=&quot;http://www.youtube.com/embed/ZQ2r_cP1xSw?wmode=transparent&quot; frameborder=&quot;0&quot; wmode=&quot;Opaque&quot;&gt;
</pre>
<p>&#8220;?wmode=transparent&#8221; was added to your src parameter link.</p>
<p>Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/t3-extension-development/simple-image-processing' rel='bookmark' title='Typo3 image processing'>Typo3 image processing</a></li>
<li><a href='http://www.codeterrorizer.com/css-hacks/hover-table-rows' rel='bookmark' title='CSS: hover table rows'>CSS: hover table rows</a></li>
<li><a href='http://www.codeterrorizer.com/css-hacks/min-height-for-ie' rel='bookmark' title='Min-Height for IE'>Min-Height for IE</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.codeterrorizer.com/xhtml/youtube-iframe-z-index/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>svn: warning: cannot set LC_CTYPE locale</title>
		<link>http://www.codeterrorizer.com/commands/svn-warning-cannot-set-lc_ctype-locale</link>
		<comments>http://www.codeterrorizer.com/commands/svn-warning-cannot-set-lc_ctype-locale#comments</comments>
		<pubDate>Thu, 03 May 2012 15:08:01 +0000</pubDate>
		<dc:creator>Christian Koch</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[svn warning: cannot set LC_CTYPE locale]]></category>
		<category><![CDATA[warning: cannot set LC_CTYPE locale]]></category>

		<guid isPermaLink="false">http://www.codeterrorizer.com/?p=506</guid>
		<description><![CDATA[Did you already receive this SVN Warning:

The follwing environment variable will help you:
Related posts:
Turn off Deprecated Warnings

Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/php/turn-off-deprecated-warnings' rel='bookmark' title='Turn off Deprecated Warnings'>Turn off Deprecated Warnings</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Did you already receive this SVN Warning:<br />
<span id="more-506"></span></p>
<pre class="brush: bash; title: ; notranslate">
svn: warning: cannot set LC_CTYPE locale
svn: warning: environment variable LC_ALL is UTF-8
svn: warning: please check that your locale name is correct
</pre>
<p>The follwing environment variable will help you:</p>
<pre class="brush: bash; title: ; notranslate">
export LC_ALL=C
</pre>
<p>Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/php/turn-off-deprecated-warnings' rel='bookmark' title='Turn off Deprecated Warnings'>Turn off Deprecated Warnings</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.codeterrorizer.com/commands/svn-warning-cannot-set-lc_ctype-locale/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Redirect with Countdown</title>
		<link>http://www.codeterrorizer.com/javascript/javascript-redirect-with-countdown</link>
		<comments>http://www.codeterrorizer.com/javascript/javascript-redirect-with-countdown#comments</comments>
		<pubDate>Sun, 08 Apr 2012 16:28:53 +0000</pubDate>
		<dc:creator>Christian Koch</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Javascript Redirect mit Countdown]]></category>
		<category><![CDATA[Javascript Redirect with Countdown]]></category>
		<category><![CDATA[Redirect mit Countdown]]></category>
		<category><![CDATA[Redirect with Countdown]]></category>

		<guid isPermaLink="false">http://www.codeterrorizer.com/?p=498</guid>
		<description><![CDATA[To create a redirect with countdown use the following snippet:

Copy this JavaScript to your header or where you need it:
Following is the HTML Code with the countdown:
Sometimes, if the site is very large and needs some time to load, I add the last JavaScript line after the countdown text or before the end of the Read More
Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/commands/curl-fast-intro' rel='bookmark' title='cURL: a quick intro'>cURL: a quick intro</a></li>
<li><a href='http://www.codeterrorizer.com/jquery/simple-example-on-how-to-search-a-list-with-jquery' rel='bookmark' title='Simple example on how to search a list with jQuery'>Simple example on how to search a list with jQuery</a></li>
<li><a href='http://www.codeterrorizer.com/php/find-out-the-last-day-of-a-month-in-a-year-with-php' rel='bookmark' title='Find out the last day of a month in a year with PHP'>Find out the last day of a month in a year with PHP</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>To create a redirect with countdown use the following snippet:<br />
<span id="more-498"></span><br />
Copy this JavaScript to your header or where you need it:</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
var start = new Date();
start = Date.parse(start)/1000;
var seconds = 7;
function CountDown(){
	var now = new Date();
	now = Date.parse(now)/1000;
	var counter = parseInt(seconds-(now-start),10);
	document.getElementById('countdown').innerHTML = counter;
	if(counter &gt; 0){
		timerID = setTimeout(&quot;CountDown()&quot;, 100)
	}else{
		location.href = &quot;http://www.codeterrorizer.com&quot;
	}
}
window.setTimeout('CountDown()',100);
&lt;/script&gt;
</pre>
<p>Following is the HTML Code with the countdown:</p>
<pre class="brush: xml; title: ; notranslate">
You will be redirected in &lt;strong id=&quot;countdown&quot;&gt;7&lt;/strong&gt; seconds.
</pre>
<p>Sometimes, if the site is very large and needs some time to load, I add the last JavaScript line after the countdown text or before the end of the body tag, this way I make sure the user can see the 7 seconds:</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
window.setTimeout('CountDown()',100);
&lt;/script&gt;
</pre>
<p>Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/commands/curl-fast-intro' rel='bookmark' title='cURL: a quick intro'>cURL: a quick intro</a></li>
<li><a href='http://www.codeterrorizer.com/jquery/simple-example-on-how-to-search-a-list-with-jquery' rel='bookmark' title='Simple example on how to search a list with jQuery'>Simple example on how to search a list with jQuery</a></li>
<li><a href='http://www.codeterrorizer.com/php/find-out-the-last-day-of-a-month-in-a-year-with-php' rel='bookmark' title='Find out the last day of a month in a year with PHP'>Find out the last day of a month in a year with PHP</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.codeterrorizer.com/javascript/javascript-redirect-with-countdown/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Typo3 convert XML to Array, convert an Array to XML</title>
		<link>http://www.codeterrorizer.com/t3-extension-development/typo3-convert-xml-to-array-convert-an-array-to-xml</link>
		<comments>http://www.codeterrorizer.com/t3-extension-development/typo3-convert-xml-to-array-convert-an-array-to-xml#comments</comments>
		<pubDate>Sun, 08 Apr 2012 11:08:35 +0000</pubDate>
		<dc:creator>Christian Koch</dc:creator>
				<category><![CDATA[t3 extension development]]></category>
		<category><![CDATA[typo3 array to flexform]]></category>
		<category><![CDATA[typo3 array to xml]]></category>
		<category><![CDATA[typo3 flexform to array]]></category>
		<category><![CDATA[typo3 xml to array]]></category>

		<guid isPermaLink="false">http://www.codeterrorizer.com/?p=495</guid>
		<description><![CDATA[
To convert xml to an array use the following line:
To convert an array to xml use the following line:
Related posts:
Typo3 Extension Flexform, outsourcing Language Files for your flexform
Typo3 ke_troubletickets Call to undefined method t3lib_div::fixed_lgd_pre
Typo3 Extension Flexform onchange reload

Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/php/typo3-flexform-outsourcing-language-for-your-flexform' rel='bookmark' title='Typo3 Extension Flexform, outsourcing Language Files for your flexform'>Typo3 Extension Flexform, outsourcing Language Files for your flexform</a></li>
<li><a href='http://www.codeterrorizer.com/t3-extension-development/typo3-ke_troubletickets-call-to-undefined-method-t3lib_divfixed_lgd_pre' rel='bookmark' title='Typo3 ke_troubletickets Call to undefined method t3lib_div::fixed_lgd_pre'>Typo3 ke_troubletickets Call to undefined method t3lib_div::fixed_lgd_pre</a></li>
<li><a href='http://www.codeterrorizer.com/php/typo3-extension-flexform-onchange-reload' rel='bookmark' title='Typo3 Extension Flexform onchange reload'>Typo3 Extension Flexform onchange reload</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><span id="more-495"></span><br />
To convert xml to an array use the following line:</p>
<pre class="brush: php; title: ; notranslate">
$array = t3lib_div::xml2array($flexform);
</pre>
<p>To convert an array to xml use the following line:</p>
<pre class="brush: php; title: ; notranslate">
$flexform = t3lib_div::array2xml($array);
</pre>
<p>Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/php/typo3-flexform-outsourcing-language-for-your-flexform' rel='bookmark' title='Typo3 Extension Flexform, outsourcing Language Files for your flexform'>Typo3 Extension Flexform, outsourcing Language Files for your flexform</a></li>
<li><a href='http://www.codeterrorizer.com/t3-extension-development/typo3-ke_troubletickets-call-to-undefined-method-t3lib_divfixed_lgd_pre' rel='bookmark' title='Typo3 ke_troubletickets Call to undefined method t3lib_div::fixed_lgd_pre'>Typo3 ke_troubletickets Call to undefined method t3lib_div::fixed_lgd_pre</a></li>
<li><a href='http://www.codeterrorizer.com/php/typo3-extension-flexform-onchange-reload' rel='bookmark' title='Typo3 Extension Flexform onchange reload'>Typo3 Extension Flexform onchange reload</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.codeterrorizer.com/t3-extension-development/typo3-convert-xml-to-array-convert-an-array-to-xml/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Bash get current timestamp</title>
		<link>http://www.codeterrorizer.com/commands/linux-bash-get-current-timestamp</link>
		<comments>http://www.codeterrorizer.com/commands/linux-bash-get-current-timestamp#comments</comments>
		<pubDate>Fri, 30 Mar 2012 11:05:31 +0000</pubDate>
		<dc:creator>Christian Koch</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[linux date]]></category>
		<category><![CDATA[linux timestamp+]]></category>

		<guid isPermaLink="false">http://www.codeterrorizer.com/?p=491</guid>
		<description><![CDATA[Ever wondered how to show the current timestamp on a linux system on your console?

Related posts:
MySQL &#8211; TIMESTAMP to Unix Timestamp
Find out the last day of a month in a year with PHP
Howto add a Webproject to your Apache Web-Server

Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/php/mysql-timestamp-to-unix-timestamp' rel='bookmark' title='MySQL &#8211; TIMESTAMP to Unix Timestamp'>MySQL &#8211; TIMESTAMP to Unix Timestamp</a></li>
<li><a href='http://www.codeterrorizer.com/php/find-out-the-last-day-of-a-month-in-a-year-with-php' rel='bookmark' title='Find out the last day of a month in a year with PHP'>Find out the last day of a month in a year with PHP</a></li>
<li><a href='http://www.codeterrorizer.com/commands/howto-add-a-webproject-to-your-apache-web-server' rel='bookmark' title='Howto add a Webproject to your Apache Web-Server'>Howto add a Webproject to your Apache Web-Server</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Ever wondered how to show the current timestamp on a linux system on your console?<br />
<span id="more-491"></span></p>
<pre class="brush: bash; title: ; notranslate">
date +%s
</pre>
<p>Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/php/mysql-timestamp-to-unix-timestamp' rel='bookmark' title='MySQL &#8211; TIMESTAMP to Unix Timestamp'>MySQL &#8211; TIMESTAMP to Unix Timestamp</a></li>
<li><a href='http://www.codeterrorizer.com/php/find-out-the-last-day-of-a-month-in-a-year-with-php' rel='bookmark' title='Find out the last day of a month in a year with PHP'>Find out the last day of a month in a year with PHP</a></li>
<li><a href='http://www.codeterrorizer.com/commands/howto-add-a-webproject-to-your-apache-web-server' rel='bookmark' title='Howto add a Webproject to your Apache Web-Server'>Howto add a Webproject to your Apache Web-Server</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.codeterrorizer.com/commands/linux-bash-get-current-timestamp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shopware Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php</title>
		<link>http://www.codeterrorizer.com/shopware/shopware-zend_sessionstart-engineenlightenlightzendcachebackendfile-php</link>
		<comments>http://www.codeterrorizer.com/shopware/shopware-zend_sessionstart-engineenlightenlightzendcachebackendfile-php#comments</comments>
		<pubDate>Thu, 15 Mar 2012 13:15:23 +0000</pubDate>
		<dc:creator>Christian Koch</dc:creator>
				<category><![CDATA[Shopware]]></category>
		<category><![CDATA[Shopware error]]></category>
		<category><![CDATA[Zend_Session::start() - engine/Enlight/Enlight/Zend/Cache/Backend/File.php]]></category>

		<guid isPermaLink="false">http://www.codeterrorizer.com/?p=487</guid>
		<description><![CDATA[What to do if you receive an error as follows:
Ups! Ein Fehler ist aufgetreten!
Die nachfolgenden Hinweise sollten Ihnen weiterhelfen.
Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php

This error appears if the access rights for the cache folder are not set to your webserver. Following the solutions to this problem, change to your Shopware folder:
for CentOs:
for Ubuntu:
for Suse:
Related posts:
Shopware Incompatible file format: Read More
Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/shopware/shopware-incompatible-file-format-the-encoded-file-has-format-major-id-3-whereas-the-loader-expects-4' rel='bookmark' title='Shopware Incompatible file format: The encoded file has format major ID 3, whereas the Loader expects 4'>Shopware Incompatible file format: The encoded file has format major ID 3, whereas the Loader expects 4</a></li>
<li><a href='http://www.codeterrorizer.com/commands/how-to-see-errorsaccess-on-your-apache-webserver' rel='bookmark' title='How to log errors/access on your Apache webserver'>How to log errors/access on your Apache webserver</a></li>
<li><a href='http://www.codeterrorizer.com/vsftp/vsftpd-restrict-access-rights-to-folders' rel='bookmark' title='vsftpd restrict access rights to folders'>vsftpd restrict access rights to folders</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>What to do if you receive an error as follows:</p>
<p>Ups! Ein Fehler ist aufgetreten!<br />
Die nachfolgenden Hinweise sollten Ihnen weiterhelfen.</p>
<p>Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php<br />
<span id="more-487"></span><br />
This error appears if the access rights for the cache folder are not set to your webserver. Following the solutions to this problem, change to your Shopware folder:</p>
<p>for CentOs:</p>
<pre class="brush: bash; title: ; notranslate">
chown -R apache:apache cache
</pre>
<p>for Ubuntu:</p>
<pre class="brush: bash; title: ; notranslate">
chown -R www-data:www-data cache
</pre>
<p>for Suse:</p>
<pre class="brush: bash; title: ; notranslate">
chown -R wwwrun:www cache
</pre>
<p>Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/shopware/shopware-incompatible-file-format-the-encoded-file-has-format-major-id-3-whereas-the-loader-expects-4' rel='bookmark' title='Shopware Incompatible file format: The encoded file has format major ID 3, whereas the Loader expects 4'>Shopware Incompatible file format: The encoded file has format major ID 3, whereas the Loader expects 4</a></li>
<li><a href='http://www.codeterrorizer.com/commands/how-to-see-errorsaccess-on-your-apache-webserver' rel='bookmark' title='How to log errors/access on your Apache webserver'>How to log errors/access on your Apache webserver</a></li>
<li><a href='http://www.codeterrorizer.com/vsftp/vsftpd-restrict-access-rights-to-folders' rel='bookmark' title='vsftpd restrict access rights to folders'>vsftpd restrict access rights to folders</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.codeterrorizer.com/shopware/shopware-zend_sessionstart-engineenlightenlightzendcachebackendfile-php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shopware Incompatible file format: The encoded file has format major ID 3, whereas the Loader expects 4</title>
		<link>http://www.codeterrorizer.com/shopware/shopware-incompatible-file-format-the-encoded-file-has-format-major-id-3-whereas-the-loader-expects-4</link>
		<comments>http://www.codeterrorizer.com/shopware/shopware-incompatible-file-format-the-encoded-file-has-format-major-id-3-whereas-the-loader-expects-4#comments</comments>
		<pubDate>Wed, 14 Mar 2012 19:24:07 +0000</pubDate>
		<dc:creator>Christian Koch</dc:creator>
				<category><![CDATA[Shopware]]></category>
		<category><![CDATA[Incompatible file format: The encoded file has format major ID 3]]></category>
		<category><![CDATA[shopware]]></category>
		<category><![CDATA[whereas the Loader expects 4]]></category>

		<guid isPermaLink="false">http://www.codeterrorizer.com/?p=477</guid>
		<description><![CDATA[Most likely you tried to move your shop system from a server with PHP version 5.2 to 5.3 or else. Because your shop files are encoded for the wrong version you might receive an error as follows:

To resolve this issue I simply created another shop with the same PHP version and copied the new engine Read More
Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/shopware/shopware-zend_sessionstart-engineenlightenlightzendcachebackendfile-php' rel='bookmark' title='Shopware Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php'>Shopware Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php</a></li>
<li><a href='http://www.codeterrorizer.com/css-hacks/min-height-for-ie' rel='bookmark' title='Min-Height for IE'>Min-Height for IE</a></li>
<li><a href='http://www.codeterrorizer.com/php/php-5-3-compile-on-centos' rel='bookmark' title='PHP 5.3 Compile on CentOS'>PHP 5.3 Compile on CentOS</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Most likely you tried to move your shop system from a server with PHP version 5.2 to 5.3 or else. Because your shop files are encoded for the wrong version you might receive an error as follows:<br />
<span id="more-477"></span></p>
<pre class="brush: plain; title: ; notranslate">Incompatible file format: The encoded file has format major ID 3, whereas the Loader expects 4</pre>
<p>To resolve this issue I simply created another shop with the same PHP version and copied the new engine folder into the broken shop system.</p>
<p>Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/shopware/shopware-zend_sessionstart-engineenlightenlightzendcachebackendfile-php' rel='bookmark' title='Shopware Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php'>Shopware Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php</a></li>
<li><a href='http://www.codeterrorizer.com/css-hacks/min-height-for-ie' rel='bookmark' title='Min-Height for IE'>Min-Height for IE</a></li>
<li><a href='http://www.codeterrorizer.com/php/php-5-3-compile-on-centos' rel='bookmark' title='PHP 5.3 Compile on CentOS'>PHP 5.3 Compile on CentOS</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.codeterrorizer.com/shopware/shopware-incompatible-file-format-the-encoded-file-has-format-major-id-3-whereas-the-loader-expects-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List loaded apache modules</title>
		<link>http://www.codeterrorizer.com/commands/list-loaded-apache-modules</link>
		<comments>http://www.codeterrorizer.com/commands/list-loaded-apache-modules#comments</comments>
		<pubDate>Sun, 11 Mar 2012 22:39:54 +0000</pubDate>
		<dc:creator>Christian Koch</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[apache list modules]]></category>
		<category><![CDATA[apache module]]></category>
		<category><![CDATA[httpd list modules]]></category>

		<guid isPermaLink="false">http://www.codeterrorizer.com/?p=467</guid>
		<description><![CDATA[You can list all loaded apache modules as follows:

CentOS
SuSe / Ubuntu
Related posts:
Find out what apache version you are running
Shopware Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php
How to log errors/access on your Apache webserver

Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/commands/find-out-what-apache-version-you-are-running' rel='bookmark' title='Find out what apache version you are running'>Find out what apache version you are running</a></li>
<li><a href='http://www.codeterrorizer.com/shopware/shopware-zend_sessionstart-engineenlightenlightzendcachebackendfile-php' rel='bookmark' title='Shopware Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php'>Shopware Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php</a></li>
<li><a href='http://www.codeterrorizer.com/commands/how-to-see-errorsaccess-on-your-apache-webserver' rel='bookmark' title='How to log errors/access on your Apache webserver'>How to log errors/access on your Apache webserver</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>You can list all loaded apache modules as follows:<br />
<span id="more-467"></span><br />
CentOS</p>
<pre class="brush: bash; title: ; notranslate">httpd -t -D DUMP_MODULES</pre>
<p>SuSe / Ubuntu</p>
<pre class="brush: bash; title: ; notranslate">apachectl -t -D DUMP_MODULES</pre>
<p>Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/commands/find-out-what-apache-version-you-are-running' rel='bookmark' title='Find out what apache version you are running'>Find out what apache version you are running</a></li>
<li><a href='http://www.codeterrorizer.com/shopware/shopware-zend_sessionstart-engineenlightenlightzendcachebackendfile-php' rel='bookmark' title='Shopware Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php'>Shopware Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php</a></li>
<li><a href='http://www.codeterrorizer.com/commands/how-to-see-errorsaccess-on-your-apache-webserver' rel='bookmark' title='How to log errors/access on your Apache webserver'>How to log errors/access on your Apache webserver</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.codeterrorizer.com/commands/list-loaded-apache-modules/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find out what apache version you are running</title>
		<link>http://www.codeterrorizer.com/commands/find-out-what-apache-version-you-are-running</link>
		<comments>http://www.codeterrorizer.com/commands/find-out-what-apache-version-you-are-running#comments</comments>
		<pubDate>Sun, 11 Mar 2012 22:07:20 +0000</pubDate>
		<dc:creator>Christian Koch</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apache version]]></category>
		<category><![CDATA[http version]]></category>
		<category><![CDATA[httpd version]]></category>

		<guid isPermaLink="false">http://www.codeterrorizer.com/?p=463</guid>
		<description><![CDATA[Ever wondered how to find out your running apache webserver version?
CentOS
SuSe / Ubuntu
Related posts:
List loaded apache modules
Shopware Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php
How to log errors/access on your Apache webserver

Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/commands/list-loaded-apache-modules' rel='bookmark' title='List loaded apache modules'>List loaded apache modules</a></li>
<li><a href='http://www.codeterrorizer.com/shopware/shopware-zend_sessionstart-engineenlightenlightzendcachebackendfile-php' rel='bookmark' title='Shopware Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php'>Shopware Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php</a></li>
<li><a href='http://www.codeterrorizer.com/commands/how-to-see-errorsaccess-on-your-apache-webserver' rel='bookmark' title='How to log errors/access on your Apache webserver'>How to log errors/access on your Apache webserver</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Ever wondered how to find out your running apache webserver version?<img title="More..." src="http://www.codeterrorizer.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /><span id="more-463"></span><br />
CentOS</p>
<pre class="brush: bash; title: ; notranslate">
httpd -v
</pre>
<p>SuSe / Ubuntu</p>
<pre class="brush: bash; title: ; notranslate">
apache2ctl -v
</pre>
<p>Related posts:<ol>
<li><a href='http://www.codeterrorizer.com/commands/list-loaded-apache-modules' rel='bookmark' title='List loaded apache modules'>List loaded apache modules</a></li>
<li><a href='http://www.codeterrorizer.com/shopware/shopware-zend_sessionstart-engineenlightenlightzendcachebackendfile-php' rel='bookmark' title='Shopware Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php'>Shopware Zend_Session::start() &#8211; engine/Enlight/Enlight/Zend/Cache/Backend/File.php</a></li>
<li><a href='http://www.codeterrorizer.com/commands/how-to-see-errorsaccess-on-your-apache-webserver' rel='bookmark' title='How to log errors/access on your Apache webserver'>How to log errors/access on your Apache webserver</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.codeterrorizer.com/commands/find-out-what-apache-version-you-are-running/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

