<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://fbb.just4test.de/extern.php?action=feed&amp;tid=3328&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Informationen für CMS/made simple / [GELÖST] Fehler nach Umzug...]]></title>
		<link>http://www.cmsmadesimple.de/forum/viewtopic.php?id=3328</link>
		<description><![CDATA[Die aktuellsten Beiträge in [GELÖST] Fehler nach Umzug....]]></description>
		<lastBuildDate>Mon, 01 Jul 2013 05:22:42 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [GELÖST] Fehler nach Umzug...]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=27023#p27023</link>
			<description><![CDATA[<p>Hatten schon eine Neuinstallation gemacht, nun aber nach dem gefühlten 10x Daten hochschieben funktioniert es...</p><p>Dennoch danke <img src="http://www.cmsmadesimple.de/forum/plugins/ezbbc/style/smilies/smile.png" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (sweettigerpunk)]]></author>
			<pubDate>Mon, 01 Jul 2013 05:22:42 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=27023#p27023</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Fehler nach Umzug...]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=27007#p27007</link>
			<description><![CDATA[<p>Funktioniert eine &quot;frische&quot; CMSMS-Installation?<br />Wie genau hast du den Umzug gemacht?<br />Welche Module sind installiert?</p>]]></description>
			<author><![CDATA[dummy@example.com (cyberman)]]></author>
			<pubDate>Sun, 30 Jun 2013 05:16:05 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=27007#p27007</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Fehler nach Umzug...]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=26935#p26935</link>
			<description><![CDATA[<p>mhhh...</p><p>Hab ich gemacht und bekomme nun </p><div class="codebox"><pre><code>Site down for maintenance.
&quot;; exit; } if (!is_writable(TMP_TEMPLATES_C_LOCATION) || !is_writable(TMP_CACHE_LOCATION)) { echo &#039;&#039;; echo &#039;

The following directories must be writable by the web server:
&#039;; echo &#039;tmp/cache
&#039;; echo &#039;tmp/templates_c
&#039;; echo &#039;

Please correct by executing:
chmod 777 tmp/cache
chmod 777 tmp/templates_c
or the equivilent for your platform before continuing.
&#039;; echo &#039;&#039;; exit; } require_once($dirname.&#039;/include.php&#039;); @ob_start(); // initial setup $gCms = cmsms(); $params = array_merge($_GET, $_POST); $smarty = $gCms-&gt;GetSmarty(); $smarty-&gt;params = $params; $page = get_pageid_or_alias_from_url(); $contentops = cmsms()-&gt;GetContentOperations(); $contentobj = &#039;&#039;; $trycount = 0; while( $trycount &lt; 2 ) { $trycount++; try { if( !is_object($contentobj) ) { if( $page == &#039;__CMS_PREVIEW_PAGE__&#039; &amp;&amp; isset($_SESSION[&#039;cms_preview&#039;]) ) // temporary { $tpl_name = trim($_SESSION[&#039;cms_preview&#039;]); $fname = &#039;&#039;; if (is_writable($config[&quot;previews_path&quot;])) { $fname = cms_join_path($config[&quot;previews_path&quot;] , $tpl_name); } else { $fname = cms_join_path(TMP_CACHE_LOCATION , $tpl_name); } $fname = $tpl_name; if( !file_exists($fname) ) { throw new CmsException(&#039;preview selected, but temp file not found: &#039;.$fname); } // build pageinfo $fh = fopen($fname,&#039;r&#039;); $_SESSION[&#039;cms_preview_data&#039;] = unserialize(fread($fh,filesize($fname))); fclose($fh); unset($_SESSION[&#039;cms_preview&#039;]); $contentobj = $contentops-&gt;LoadContentFromSerializedData($_SESSION[&#039;cms_preview_data&#039;]); $contentobj-&gt;setId(&#039;__CMS_PREVIEW_PAGE__&#039;); } else { $contentobj = $contentops-&gt;LoadContentFromAlias($page,true); } } if( !is_object($contentobj) ) { throw new CmsError404Exception(&#039;Page &#039;.$page.&#039; not found&#039;); } //debug_display(&#039;got content &#039;.$contentobj-&gt;Alias()); // from here in, we&#039;re assured to have a content object. if( !$contentobj-&gt;IsViewable() ) { $url = $contentobj-&gt;GetURL(); if( $url != &#039;&#039; &amp;&amp; $url != &#039;#&#039; ) { redirect($url); } // not viewable, throw a 404. throw new CmsError404Exception(&#039;Cannot view an unviewable page&#039;); } if( $contentobj-&gt;Secure() &amp;&amp; (! isset($_SERVER[&#039;HTTPS&#039;]) || empty($_SERVER[&#039;HTTPS&#039;]) || $_SERVER[&#039;HTTPS&#039;] == &#039;off&#039;) ) { // if this page is marked to be secure, make sure we redirect to the secure page. redirect($contentobj-&gt;GetURL()); } $allow_cache = (int)get_site_preference(&#039;allow_browser_cache&#039;,0); $expiry = (int)max(0,get_site_preference(&#039;browser_cache_expiry&#039;,60)); $expiry *= $allow_cache; if( $_SERVER[&#039;REQUEST_METHOD&#039;] == &#039;POST&#039; || !$contentobj-&gt;Cachable() ||$page == &#039;__CMS_PREVIEW_PAGE__&#039; || $expiry == 0 ) { // Here we adjust headers for non cachable pages header(&quot;Expires: Mon, 26 Jul 1997 05:00:00 GMT&quot;); header(&quot;Last-Modified: &quot; . gmdate(&quot;D, d M Y H:i:s&quot;) . &quot; GMT&quot;); header(&quot;Cache-Control: no-store, no-cache, must-revalidate&quot;); header(&quot;Cache-Control: post-check=0, pre-check=0&quot;, false); header(&quot;Pragma: no-cache&quot;); } else { // as far as we know, the output is cachable at this point... // so we mark it so that the output can be cached. header(&#039;Expires: &#039;.gmdate(&quot;D, d M Y H:i:s&quot;,time() + $expiry * 60).&#039; GMT&#039;); $the_date = time(); if( $contentobj-&gt;Cachable() ) { $the_date = $contentobj-&gt;GetModifiedDate(); } header(&#039;Last-Modified: &#039; . gmdate(&#039;D, d M Y H:i:s&#039;,$the_date) . &#039; GMT&#039;); } cmsms()-&gt;set_variable(&#039;content_obj&#039;,$contentobj); $smarty-&gt;assign(&#039;content_obj&#039;,$contentobj); if( $contentobj-&gt;Secure() &amp;&amp; (! isset($_SERVER[&#039;HTTPS&#039;]) || empty($_SERVER[&#039;HTTPS&#039;]) || $_SERVER[&#039;HTTPS&#039;] == &#039;off&#039;) ) { // if this page is marked to be secure, make sure we redirect to the secure page. redirect($contentobj-&gt;GetURL()); } cmsms()-&gt;set_variable(&#039;content_obj&#039;,$contentobj); cmsms()-&gt;set_variable(&#039;content_id&#039;,$contentobj-&gt;Id()); cmsms()-&gt;set_variable(&#039;page_id&#039;,$page); cmsms()-&gt;set_variable(&#039;page_name&#039;,$contentobj-&gt;Alias()); cmsms()-&gt;set_variable(&#039;position&#039;,$contentobj-&gt;Hierarchy()); cmsms()-&gt;set_variable(&#039;friendly_position&#039;,$contentops-&gt;CreateFriendlyHierarchyPosition($contentobj-&gt;Hierarchy())); $smarty-&gt;assign(&#039;content_obj&#039;,$contentobj); $smarty-&gt;assign(&#039;content_id&#039;, $contentobj-&gt;Id()); $smarty-&gt;assign(&#039;page&#039;, $page); $smarty-&gt;assign(&#039;page_id&#039;, $page); $smarty-&gt;assign(&#039;page_name&#039;, $contentobj-&gt;Alias()); $smarty-&gt;assign(&#039;page_alias&#039;, $contentobj-&gt;Alias()); $smarty-&gt;assign(&#039;position&#039;, $contentobj-&gt;Hierarchy()); $smarty-&gt;assign(&#039;friendly_position&#039;, $gCms-&gt;variables[&#039;friendly_position&#039;]); CmsNlsOperations::set_language(); // &lt;- NLS detection for frontend $smarty-&gt;assign(&#039;lang&#039;,CmsNlsOperations::get_current_language()); $smarty-&gt;assign(&#039;encoding&#039;,CmsNlsOperations::get_encoding()); $html = &#039;&#039;; $showtemplate = true; if ((isset($_REQUEST[&#039;showtemplate&#039;]) &amp;&amp; $_REQUEST[&#039;showtemplate&#039;] == &#039;false&#039;) || (isset($smarty-&gt;id) &amp;&amp; $smarty-&gt;id != &#039;&#039; &amp;&amp; isset($_REQUEST[$smarty-&gt;id.&#039;showtemplate&#039;]) &amp;&amp; $_REQUEST[$smarty-&gt;id.&#039;showtemplate&#039;] == &#039;false&#039;)) { $showtemplate = false; } $smarty-&gt;set_global_cacheid(&#039;p&#039;.$contentobj-&gt;Id()); $uid = get_userid(FALSE); if( $contentobj-&gt;Cachable() &amp;&amp; $showtemplate &amp;&amp; !$uid &amp;&amp; get_site_preference(&#039;use_smartycache&#039;,0) &amp;&amp; $_SERVER[&#039;REQUEST_METHOD&#039;] != &#039;POST&#039; ) { if( version_compare(phpversion(),&#039;5.3&#039;) &gt;= 0 ) { // this content is cachable... so enable smarty caching of this page data, for this user. $smarty-&gt;setCaching(Smarty::CACHING_LIFETIME_CURRENT); } } if( !$showtemplate ) { $smarty-&gt;setCaching(false); // in smarty 3, we could use eval:{content} I think. //$html = $smarty-&gt;fetch(&#039;eval:{content}&#039;).&quot;\n&quot;; $html = $smarty-&gt;fetch(&#039;template:notemplate&#039;).&quot;\n&quot;; $trycount = 99; } else { //debug_display(&#039;display content &#039;.$contentobj-&gt;Alias().&#039; &#039;.$page); debug_buffer(&#039;process template top&#039;); $top = $smarty-&gt;fetch(&#039;tpl_top:&#039;.$contentobj-&gt;TemplateId()); debug_buffer(&#039;process template body&#039;); $body = $smarty-&gt;fetch(&#039;tpl_body:&#039;.$contentobj-&gt;TemplateId()); debug_buffer(&#039;process template head&#039;); $head = $smarty-&gt;fetch(&#039;tpl_head:&#039;.$contentobj-&gt;TemplateId()); $html = $top.$head.$body; $trycount = 99; // no more iterations. } } catch (SmartyCompilerException $e) // &lt;- Catch Smarty compile errors { $handlers = ob_list_handlers(); for ($cnt = 0; $cnt &lt; sizeof($handlers); $cnt++) { ob_end_clean(); } echo $smarty-&gt;errorConsole($e); return; } catch (SmartyException $e) // &lt;- Catch rest of Smarty errors { $handlers = ob_list_handlers(); for ($cnt = 0; $cnt &lt; sizeof($handlers); $cnt++) { ob_end_clean(); } echo $smarty-&gt;errorConsole($e); return; } catch (CmsError404Exception $e) // &lt;- Catch CMSMS 404 error { //debug_display(&#039;handle 404 exception &#039;.$e-&gt;getFile().&#039; at &#039;.$e-&gt;getLine().&#039; -- &#039;.$e-&gt;getMessage()); // 404 error thrown... gotta do this process all over again. $page = &#039;error404&#039;; $showtemplate = true; unset($_REQUEST[&#039;mact&#039;]); unset($_REQUEST[&#039;module&#039;]); unset($_REQUEST[&#039;action&#039;]); $handlers = ob_list_handlers(); for ($cnt = 0; $cnt &lt; sizeof($handlers); $cnt++) { ob_end_clean(); } // specified page not found, load the 404 error page. $contentobj = $contentops-&gt;LoadContentFromAlias(&#039;error404&#039;,true); if( is_object($contentobj) ) { // we have a 404 error page. header(&quot;HTTP/1.0 404 Not Found&quot;); header(&quot;Status: 404 Not Found&quot;); } else { // no 404 error page. ErrorHandler404(); return; } } } // while trycount Events::SendEvent(&#039;Core&#039;, &#039;ContentPostRender&#039;, array(&#039;content&#039; =&gt; &amp;$html)); if( !headers_sent() ) { $ct = cmsms()-&gt;get_variable(&#039;content-type&#039;); if( !$ct ) $ct = &#039;text/html&#039;; header(&quot;Content-Type: $ct; charset=&quot; . get_encoding()); } echo $html; @ob_flush(); $endtime = microtime(); $db =&amp; cmsms()-&gt;GetDb(); if( $config[&#039;debug&#039;] == TRUE || (isset($config[&#039;show_performance_info&#039;]) &amp;&amp; ($showtemplate == true)) ) { $memory = (function_exists(&#039;memory_get_usage&#039;)?memory_get_usage():0); $memory = $memory - $orig_memory; $memory_peak = (function_exists(&#039;memory_get_peak_usage&#039;)?memory_get_peak_usage():0); if ( !is_sitedown() &amp;&amp; $config[&quot;debug&quot;] == true) { echo &quot;

Generated in &quot;.microtime_diff($starttime,$endtime).&quot; seconds by CMS Made Simple using &quot;.(isset($db-&gt;query_count)?$db-&gt;query_count:&#039;&#039;).&quot; SQL queries and {$memory} bytes of memory (peak memory usage was {$memory_peak})
&quot;; } else if( isset($config[&#039;show_performance_info&#039;]) &amp;&amp; ($showtemplate == true) ) { $txt = microtime_diff($starttime,$endtime).&quot; / &quot;.(isset($db-&gt;query_count)?$db-&gt;query_count:&#039;&#039;).&quot; / {$memory} / {$memory_peak}&quot;; debug_display($txt); echo &#039;\n&quot;; } } if( is_sitedown() || $config[&#039;debug&#039;] == true) { $smarty-&gt;clear_compiled_tpl(); } if ( !is_sitedown() &amp;&amp; $config[&quot;debug&quot;] == true) { #$db-&gt;LogSQL(false); // turn off logging # output summary of SQL logging results #$perf = NewPerfMonitor($db); #echo $perf-&gt;SuspiciousSQL(); #echo $perf-&gt;ExpensiveSQL(); #echo $sql_queries; foreach ($gCms-&gt;errors as $error) { echo $error; } } if( $page == &#039;__CMS_PREVIEW_PAGE__&#039; &amp;&amp; isset($_SESSION[&#039;cms_preview&#039;]) ) // temporary { unset($_SESSION[&#039;cms_preview&#039;]); } # vim:ts=4 sw=4 noet ?&gt; </code></pre></div><p>dabei sind die ordner auf 777 gesetzt...</p>]]></description>
			<author><![CDATA[dummy@example.com (sweettigerpunk)]]></author>
			<pubDate>Wed, 26 Jun 2013 10:10:26 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=26935#p26935</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Fehler nach Umzug...]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=26934#p26934</link>
			<description><![CDATA[<p>Versuch es mal damit in der .htaccess</p><p>AddType x-mapp-php5 .php<br />AddHandler x-mapp-php5 .php</p><p><a href="http://hilfe-center.1und1.de/homepage-entwickeln-c82634/php-c82686/einrichtung-c82738/php-version-ueber-htaccess-umstellen-a791784.html" rel="nofollow">http://hilfe-center.1und1.de/homepage-e … 91784.html</a></p>]]></description>
			<author><![CDATA[dummy@example.com (antibart)]]></author>
			<pubDate>Wed, 26 Jun 2013 10:04:31 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=26934#p26934</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Fehler nach Umzug...]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=26933#p26933</link>
			<description><![CDATA[<p>Hi kampkrusty,</p><p>Jup meine Php info sagt PHP Version 5.3.22 ...</p>]]></description>
			<author><![CDATA[dummy@example.com (sweettigerpunk)]]></author>
			<pubDate>Wed, 26 Jun 2013 09:54:51 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=26933#p26933</guid>
		</item>
		<item>
			<title><![CDATA[Re: [GELÖST] Fehler nach Umzug...]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=26932#p26932</link>
			<description><![CDATA[<p>Bist du sicher das PHP 5.3 läuft?</p>]]></description>
			<author><![CDATA[dummy@example.com (kampkrusty)]]></author>
			<pubDate>Wed, 26 Jun 2013 09:47:50 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=26932#p26932</guid>
		</item>
		<item>
			<title><![CDATA[[GELÖST] Fehler nach Umzug...]]></title>
			<link>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=26927#p26927</link>
			<description><![CDATA[<p>Brauche bitte Hilfe...</p><p>Sind von 1und1 auf einen Strato Server umgezogen und bekommen nun folgende Meldung auf der Seite</p><div class="codebox"><pre><code>Warning: Cannot modify header information - headers already sent by (output started at /mnt/web3/a0/13/53503613/htdocs/lib/html_entity_decode_php4.php:629) in /mnt/web3/a0/13/53503613/htdocs/include.php on line 96 
Warning: Cannot modify header information - headers already sent by (output started at /mnt/web3/a0/13/53503613/htdocs/lib/html_entity_decode_php4.php:629) in /mnt/web3/a0/13/53503613/htdocs/include.php on line 99 
Warning: Cannot modify header information - headers already sent by (output started at /mnt/web3/a0/13/53503613/htdocs/lib/html_entity_decode_php4.php:629) in /mnt/web3/a0/13/53503613/htdocs/include.php on line 102 
Warning: Cannot modify header information - headers already sent by (output started at /mnt/web3/a0/13/53503613/htdocs/lib/html_entity_decode_php4.php:629) in /mnt/web3/a0/13/53503613/htdocs/include.php on line 103 
Warning: Cannot modify header information - headers already sent by (output started at /mnt/web3/a0/13/53503613/htdocs/lib/html_entity_decode_php4.php:629) in /mnt/web3/a0/13/53503613/htdocs/include.php on line 106 
Warning: Cannot modify header information - headers already sent by (output started at /mnt/web3/a0/13/53503613/htdocs/lib/html_entity_decode_php4.php:629) in /mnt/web3/a0/13/53503613/htdocs/include.php on line 109 </code></pre></div><p>Php Version 5.3<br />CMS 1.11.7</p><p>Kann jemand mit dem Fehler etwas anfangen?</p><p>Lg und Danke<br />sweettigerpunk</p><p>PS: Der komplette Teil der in den header gehört steht nun im body...</p>]]></description>
			<author><![CDATA[dummy@example.com (sweettigerpunk)]]></author>
			<pubDate>Wed, 26 Jun 2013 08:26:20 +0000</pubDate>
			<guid>http://www.cmsmadesimple.de/forum/viewtopic.php?pid=26927#p26927</guid>
		</item>
	</channel>
</rss>
