<?xml version='1.0' encoding='UTF-8'?>
<rss version='2.0'>
	<channel>
		<title>cotonti.com : Configuration panel</title>
		<link>https://www.cotonti.com</link>
		<description>Останні повідомлення в темі</description>
		<generator>Cotonti</generator>
		<language>en</language>
		<pubDate>Tue, 21 Apr 2026 17:33:19 -0000</pubDate>

		<item>
			<title>donP</title>
			<description><![CDATA[My Server always displayed Error Messages with Seditio. This situation began 3 days ago with Cotonti 0.6.1 conversion... <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/confused.gif" alt=":/" />]]></description>
			<pubDate>Пт, 07 Сер 2009 15:45:14 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15650]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[It means that your server is configured to suppress error messages.]]></description>
			<pubDate>Пт, 07 Сер 2009 15:30:40 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15648]]></link>
		</item>
		<item>
			<title>donP</title>
			<description><![CDATA[I've commented those lines and...<br />
<br />
NOTHING!!!  <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/confused.gif" alt=":/" /> <br />
<br />
No code at all! blank page on browser and blank source code  <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/surprised.gif" alt=":O" /> <br />
<br />
I've tried also enabling debug_mode in config.php but no file was created <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/sad.gif" alt=":(" /> How can I find the mistake?<br />
<br />
<strong>Added 13 minutes later:</strong><br />
<br />
<span style="color:#CC0000"><strong>FOUND the error</strong></span> (I must revert to local job in wampserver to see the errors, why?)!<br />
<br />
It was an error in<span style="color:#4E9A06"> reCAPTCHA plugin</span> (so I advice you to correct the version on this site) that was pointing to a non existing language file...<br />
<br />
In <strong>plugins/recaptcha/recaptcha.validate.php</strong> there was this line<br />
<div class="highlight"><pre class="php">require_once(sed_langfile('captcha'));</pre></div>
it's to rewrite correctly like this:<br />
<div class="highlight"><pre class="php">require_once(sed_langfile('recaptcha'));</pre></div>
<br />
It was a hard finding, cause I didn't think it could be that plugin as I've also commented the lines of code the invoked it in users.register.tpl...  <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/angry.gif" alt="X-(" /> <br />
And cause I thought that errors could be so visible also with live website on my Server...  <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/confused.gif" alt=":/" />]]></description>
			<pubDate>Пт, 07 Сер 2009 15:13:40 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15647]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[When you need to see error messages, you can temporarily disable output buffering by commenting these lines in <em>system/common.php</em>:<br />
<div class="highlight"><pre class="php">/*if ($cfg&#091;'gzip'&#093;)
{ @ob_start('ob_gzhandler'); }
else
{ ob_start(); }

ob_start('sed_outputfilters');*/</pre></div>
Don't forget to uncomment them back after that.]]></description>
			<pubDate>Пт, 07 Сер 2009 00:55:49 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15605]]></link>
		</item>
		<item>
			<title>donP</title>
			<description><![CDATA[Thank you, boy! <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/wink.gif" alt=";)" /><br />
<br />
<strong>Added 17 minutes later:</strong><br />
<br />
Now I've the same problem in registration process...  <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/confused.gif" alt=":/" /> <br />
<br />
<a href="http://www.sangelo.net/" rel="nofollow">http://www.sangelo.net/</a><strong>users.php?m=register&amp;a=add</strong> results in a blank page (also souce page)!  <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/angry.gif" alt="X-(" />]]></description>
			<pubDate>Thu, 06 Сер 2009 21:47:23 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15592]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[It is update checker which causes this on your host. The fix is coming in 0.6.2, so far just comment this code in <em>plugins/adminqv/adminqv.php</em> (lines 99-132):<br />
<div class="highlight"><pre class="php">/*$update_info = sed_cache_get('update_info');
if(!$update_info)
{
	if(ini_get('allow_url_fopen'))
	{
		$update_info = file_get_contents('http://www.cotonti.com/update-check');
		if($update_info)
		{
			$update_info = json_decode($update_info, TRUE);
			sed_cache_store('update_info', $update_info, 86400, FALSE);
		}
	}
	elseif(function_exists('curl_init'))
	{
		$curl = curl_init();
		curl_setopt($curl, CURLOPT_URL, 'http://www.cotonti.com/update-check');
		curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
		$update_info = curl_exec($curl);
		if($update_info)
		{
			$update_info = json_decode($update_info, TRUE);
			sed_cache_store('update_info', $update_info, 86400, FALSE);
		}
		curl_close($curl);
	}
}
if($update_info&#091;'update_rev'&#093; &gt; $cfg&#091;'revision'&#093;)
{
	$t-&gt;assign(array(
		'ADMINQV_UPDATE_REVISION' =&gt; sprintf($L&#091;'adminqv_update_revision'&#093;, $cfg&#091;'version'&#093;, $cfg&#091;'revision'&#093;, htmlspecialchars($update_info&#091;'update_ver'&#093;), (int)$update_info&#091;'update_rev'&#093;),
		'ADMINQV_UPDATE_MESSAGE' =&gt; sed_parse(htmlspecialchars($update_info&#091;'update_message'&#093;), $cfg&#091;'parsebbcodepages'&#093;, $cfg&#091;'parsesmiliespages'&#093;, true),
		));
	$t-&gt;parse('ADMINQV.UPDATE');
}*/</pre></div>]]></description>
			<pubDate>Thu, 06 Сер 2009 17:43:43 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15582]]></link>
		</item>
		<item>
			<title>donP</title>
			<description><![CDATA[I've finished now to transfer my new <em>SeditioToCotonti</em> site from local to Server... <br />
<br />
I've got the same problem of jensig: I absolutely <strong>cannot</strong> parse admin.php (home)<br />
I've tride to disable xtpl_cache but doesn't work the same! All was OK on my localhost enviroment!<br />
<br />
<span style="color:#CC0000"><strong>Please, help me!!!</strong></span><br />
<br />
<strong>Added 9 hours 9 minutes later:</strong><br />
<br />
I have to correct me... my problem is different form jensing one...<br />
All areas of admin.php are accessible via exact link (e.g. admin.php?m=config) but admin.php (so the admin.inc section) result in a <strong>total white page</strong> (also source page!). The meaning of is a general parsing problem...<br />
I've disabled xtpl_cache with no changes, and in localhost on my PC all is ok...  <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/confused.gif" alt=":/" />]]></description>
			<pubDate>Thu, 06 Сер 2009 08:17:11 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15577]]></link>
		</item>
		<item>
			<title>jensig</title>
			<description><![CDATA[Well try fix that bug ^^ disabling xtpl_cache worked <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/smile.gif" alt=":)" /><br />
Thanks for the all the help <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/grin.gif" alt=":D" />]]></description>
			<pubDate>Ср, 05 Сер 2009 20:30:39 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15546]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[Try disabling xtpl_cache too, I have recently found a bug in it.]]></description>
			<pubDate>Ср, 05 Сер 2009 19:29:47 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15543]]></link>
		</item>
		<item>
			<title>jensig</title>
			<description><![CDATA[I do not have time now but I will try to reinstall wampserver to night hope that works and yes I have fixed mainurl]]></description>
			<pubDate>Ср, 05 Сер 2009 18:46:10 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15540]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[This is one of the most weird bugs I have heard of. Those error messages seem nothing but server misconfiguration to me. But it has nothing to do with Admin/Config. BTW, what if you try disabling $cfg['xtpl_cache'] in config.php? Have you corrected your $cfg['mainurl']?]]></description>
			<pubDate>Ср, 05 Сер 2009 05:33:50 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15521]]></link>
		</item>
		<item>
			<title>jensig</title>
			<description><![CDATA[It does not mater what thing I go in to everything in the configuration panel seems to &quot;disable&quot; configuration panel :S and disabling AJAX did not work.<br />
<br />
I have fond something in my error log for apache<br />
<pre class="code">&#091;Tue Aug 04 17:34:31 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/favicon.ico
&#091;Tue Aug 04 17:34:53 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; PHP Warning:  require_once(./datas/config.php) &#091;&lt;a href='https://www.cotonti.com/function.require-once'&gt;function.require-once&lt;/a&gt;&#093;: failed to open stream: No such file or directory in C:\\wamp\\www\\cotonti-0.6.1\\index.php on line 17, referer: <a href="http://localhost/" rel="nofollow">http://localhost/</a>
&#091;Tue Aug 04 17:34:53 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; PHP Fatal error:  require_once() &#091;&lt;a href='https://www.cotonti.com/function.require'&gt;function.require&lt;/a&gt;&#093;: Failed opening required './datas/config.php' (include_path='.;C:\\php5\\pear') in C:\\wamp\\www\\cotonti-0.6.1\\index.php on line 17, referer: <a href="http://localhost/" rel="nofollow">http://localhost/</a>
&#091;Tue Aug 04 17:43:14 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; script 'C:/wamp/www/message.php' not found or unable to stat, referer: <a href="http://localhost/cotonti-0.6.1/admin.php" rel="nofollow">http://localhost/cotonti-0.6.1/admin.php</a>
&#091;Tue Aug 04 17:43:24 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/skins, referer: <a href="http://localhost/cotonti-0.6.1/" rel="nofollow">http://localhost/cotonti-0.6.1/</a>
&#091;Tue Aug 04 17:43:24 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/js, referer: <a href="http://localhost/cotonti-0.6.1/" rel="nofollow">http://localhost/cotonti-0.6.1/</a>
&#091;Tue Aug 04 17:43:24 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/js, referer: <a href="http://localhost/cotonti-0.6.1/" rel="nofollow">http://localhost/cotonti-0.6.1/</a>
&#091;Tue Aug 04 17:43:24 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/plugins, referer: <a href="http://localhost/cotonti-0.6.1/" rel="nofollow">http://localhost/cotonti-0.6.1/</a>
&#091;Tue Aug 04 17:43:24 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/skins, referer: <a href="http://localhost/cotonti-0.6.1/" rel="nofollow">http://localhost/cotonti-0.6.1/</a>
&#091;Tue Aug 04 17:43:40 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/favicon.ico
&#091;Tue Aug 04 17:43:41 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/skins, referer: <a href="http://localhost/cotonti-0.6.1/" rel="nofollow">http://localhost/cotonti-0.6.1/</a>
&#091;Tue Aug 04 17:43:41 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/js, referer: <a href="http://localhost/cotonti-0.6.1/" rel="nofollow">http://localhost/cotonti-0.6.1/</a>
&#091;Tue Aug 04 17:43:41 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/js, referer: <a href="http://localhost/cotonti-0.6.1/" rel="nofollow">http://localhost/cotonti-0.6.1/</a>
&#091;Tue Aug 04 17:43:41 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/plugins, referer: <a href="http://localhost/cotonti-0.6.1/" rel="nofollow">http://localhost/cotonti-0.6.1/</a>
&#091;Tue Aug 04 17:43:41 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/skins, referer: <a href="http://localhost/cotonti-0.6.1/" rel="nofollow">http://localhost/cotonti-0.6.1/</a>
&#091;Tue Aug 04 17:43:42 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/skins, referer: <a href="http://localhost/cotonti-0.6.1/" rel="nofollow">http://localhost/cotonti-0.6.1/</a>
&#091;Tue Aug 04 17:43:42 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/js, referer: <a href="http://localhost/cotonti-0.6.1/" rel="nofollow">http://localhost/cotonti-0.6.1/</a>
&#091;Tue Aug 04 17:43:42 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/js, referer: <a href="http://localhost/cotonti-0.6.1/" rel="nofollow">http://localhost/cotonti-0.6.1/</a>
&#091;Tue Aug 04 17:43:42 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/plugins, referer: <a href="http://localhost/cotonti-0.6.1/" rel="nofollow">http://localhost/cotonti-0.6.1/</a>
&#091;Tue Aug 04 17:43:43 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/skins, referer: <a href="http://localhost/cotonti-0.6.1/" rel="nofollow">http://localhost/cotonti-0.6.1/</a>
&#091;Tue Aug 04 17:43:45 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/favicon.ico
&#091;Tue Aug 04 17:43:45 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/favicon.ico
&#091;Tue Aug 04 17:48:00 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; PHP Warning:  mysql_error() expects parameter 1 to be resource, null given in C:\\wamp\\www\\cotonti-0.6.1\\system\\database.mysql.php on line 96, referer: <a href="http://localhost/" rel="nofollow">http://localhost/</a>
&#091;Tue Aug 04 17:54:20 2009&#093; &#091;error&#093; &#091;client 127.0.0.1&#093; File does not exist: C:/wamp/www/cotonti-0.6.1, referer: <a href="http://localhost/cotonti/" rel="nofollow">http://localhost/cotonti/</a>
</pre>]]></description>
			<pubDate>Ср, 05 Сер 2009 02:47:58 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15516]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[Which thing is that?<br /><br /><b>Added 58 minutes later:</b><br /><br />You can try disabling AJAX in Admin panel by running this query in phpMyAdmin:<br />
<div class="highlight"><pre class="mysql">UPDATE sed_config SET config_value='0' WHERE config_name='turnajax';</pre></div>]]></description>
			<pubDate>Вт, 04 Сер 2009 23:56:56 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15507]]></link>
		</item>
		<item>
			<title>jensig</title>
			<description><![CDATA[<span style="text-decoration:line-through">It works now <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/smile.gif" alt=":)" /> thanks for the help <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/grin.gif" alt=":D" /><br />
I just reinstalled it so I guess that some file where ether missing or corrupted.</span><br />
<br />
Edit 1: It worked one time and now its showing none :S<br />
Edit 2: I have test it a few times now and it seams that when I go to one thing in the configuration panel the whole configuration panel stops working.]]></description>
			<pubDate>Вт, 04 Сер 2009 23:40:53 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15505]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[Truthfully I have no idea what would cause that template not to be parsed, because there is no code that could potentially cause it. The only thing that I have noticed to be wrong in your configuration is $cfg['mainurl'] in <em>datas/config.php</em> which should not contain trailing slash.<br />
<br />
I would recommend trying to reinstall it (in case some files were corrupted).]]></description>
			<pubDate>Вт, 04 Сер 2009 01:24:49 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15466]]></link>
		</item>
		<item>
			<title>jensig</title>
			<description><![CDATA[Yes skins/sed-light/admin/admin.config.inc.tpl is present but &lt;div id=&quot;pagtab&quot;&gt; is not in the output]]></description>
			<pubDate>Пн, 03 Сер 2009 22:58:04 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15459]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[Is <em>skins/sed-light/admin/admin.config.inc.tpl</em> present? Does the output contain &lt;div id=&quot;pagtab&quot;&gt; ?]]></description>
			<pubDate>Пн, 03 Сер 2009 16:50:44 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15449]]></link>
		</item>
		<item>
			<title>jensig</title>
			<description><![CDATA[Everything but the Configuration works.]]></description>
			<pubDate>Пн, 03 Сер 2009 16:31:20 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15446]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[Do other areas of Administration panel work?]]></description>
			<pubDate>Пн, 03 Сер 2009 14:31:52 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15433]]></link>
		</item>
		<item>
			<title>jensig</title>
			<description><![CDATA[Hi here you have the <a href="http://img8.imageshack.us/img8/4645/screenrgt.jpg" rel="nofollow">screen shot</a> and I´m using Firefox.<br />
All the php settings for my web server is correct so I can´t see what´s wrong :S]]></description>
			<pubDate>Пн, 03 Сер 2009 04:47:43 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15415]]></link>
		</item>
		<item>
			<title>Trustmaster</title>
			<description><![CDATA[Could you make a screenshot? What browser do you use?]]></description>
			<pubDate>Нд, 02 Сер 2009 22:02:08 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15381]]></link>
		</item>
		<item>
			<title>jensig</title>
			<description><![CDATA[When I go in to the Configuration in Administration panel I get none that is all it says :S None how do I get it to work??]]></description>
			<pubDate>Нд, 02 Сер 2009 17:18:28 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ua/forums?m=posts&q=3118&d=0#post15370]]></link>
		</item>
	</channel>
</rss>