<?xml version='1.0' encoding='UTF-8'?>
<rss version='2.0'>
	<channel>
		<title>Development</title>
		<link>https://www.cotonti.com</link>
		<description>Project Organization and Future</description>
		<generator>Cotonti</generator>
		<language>en</language>
		<pubDate>Fri, 01 May 2026 05:25:03 -0000</pubDate>

		<item>
			<title>Macik - [fixed] Error in install.install.php</title>
			<description><![CDATA[<p>Already fixed — <a href="https://github.com/Cotonti/Cotonti/issues/1501" rel="nofollow">#1501</a></p>

<p>Thanks for paid attention! <br />
 </p>
]]></description>
			<pubDate>Sun, 20 Mar 2016 00:41:48 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=41533#41533]]></link>
		</item>
		<item>
			<title>agir - [fixed] Error in install.install.php</title>
			<description><![CDATA[<p>Latest version from GitHub <a href="https://github.com/Cotonti/Cotonti" rel="nofollow">https://github.com/Cotonti/Cotonti</a> ( <a href="http://www.awesomescreenshot.com/0e95q39k44" rel="nofollow">http://www.awesomescreenshot.com/0e95q39k44</a> )</p>

<p>In process installation error: <a href="http://www.awesomescreenshot.com/0b95q39i18" rel="nofollow">http://www.awesomescreenshot.com/0b95q39i18</a></p>

<p> </p>

<p>from primary link (<a href="https://www.cotonti.com/download/658?a=dl">https://www.cotonti.com/download/658?a=dl</a>) - Ok.</p>
]]></description>
			<pubDate>Sat, 19 Mar 2016 15:03:09 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=41532#41532]]></link>
		</item>
		<item>
			<title>Macik - How to safe data from custom field in a user profile to the DB?</title>
			<description><![CDATA[<blockquote><a href="https://www.cotonti.com/forums?m=posts&amp;q=8028&amp;d=1#41239">#41239</a> <strong>foxhound: </strong>
<p>I have added a file into my plugin for the "users.edit.update.first" hook. In it I added the $-post as you described yet still my DB is not updated when I update my profile with the new info.</p>
</blockquote>

<p>I'm not shure that it should work in Genoa as Extra field utility not fully functional in that branch.</p>

<blockquote>
<p>I have enabled dbug mode, the "FOOTER_DEVMODE" tags were already present in my footer but I do not see any messages in my footer upon profile update. Does it only display errors if there are any or does it always display something (something in the sense of "dev info")?</p>
</blockquote>

<p>In common way `<span style="font-family:Georgia, Times, 'Times New Roman', serif;font-style:italic;line-height:20.8px;">FOOTER_DEVMODE</span>` should display full sql queries list with certain SQL code and it's timing. If you don't see it on any page check:<br />
- `define('SED_DEBUG', TRUE);` in config.php<br />
- enable debug mode in Admin panel site settings<br />
- place <span style="font-family:Georgia, Times, 'Times New Roman', serif;font-style:italic;line-height:20.8px;">FOOTER_DEVMODE tag in your footer.tpl<br />
So you can find this dev info on all pages.<br />
But !note: you can miss some SQL queries in case it done before actual redirect. This case is applied in User profile update too.</span></p>

<p><span style="font-family:Georgia, Times, 'Times New Roman', serif;font-style:italic;line-height:20.8px;">Another prehistoric way to debug is to add log line to your code to save info to logfile. You can save raw SQL query text than use some SQL client to run this query and seeing results.</span></p>

<p>But best way to deeper inspect you application — is to install some modern IDE and setup Debugger. Than you can see internals step-by-step.</p>

<blockquote>
<p>So, I would like to share any erros with you, but there are none.<br /><br />
I must be overlooking something really simple, but I simply cant figure it out. :(</p>

<p><strong>Added 2 hours later:</strong></p>

<p>Got it!</p>
</blockquote>

<p>Great.</p>

<blockquote>
<p>I am sure I will have some more questions but at least now that I can store dates I can work on the plugin funtionality itself :)</p>
</blockquote>

<p>You are welcome.</p>
]]></description>
			<pubDate>Wed, 16 Dec 2015 19:50:42 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=41243#41243]]></link>
		</item>
		<item>
			<title>foxhound - How to safe data from custom field in a user profile to the DB?</title>
			<description><![CDATA[<p>Wow, thank you very much Macik. That is really some very helpfull info :)<br />
I can pretty much understand where I went wrong and I am going to apply some changes.<br /><br />
I should indeed just have gone for the extra fields, I was just trying to re-invent the wheel I guess :)<br /><br /><br />
Yes, this is still a genoa website, still not gotten to the time to upgrade and figure out what some erros during the upgrade cause (I have tried but failed each time).<br />
Once I have implemented some changes I will post here the results.<br />
I actually plan to share this plugin as it might be usefull to others as well. With this plugin I add a subscription date I add to a users profile which adds the user to a specific group and when the date has passed he is automatically removed from the group. With this you can do all kind of fun stuff....at least I am working on some ;)</p>

<p><strong>Added 1 hour later:</strong></p>

<p>Sigh, I still cant get it to work.</p>

<p>I have created the fields through the extra fields for users. The fields are in my DB, if I change their value (manually directly in the DB) in my profile I can see the changed values.<br />
I have added a file into my plugin for the "users.edit.update.first" hook. In it I added the $-post as you described yet still my DB is not updated when I update my profile with the new info.<br /><br />
I have enabled dbug mode, the "FOOTER_DEVMODE" tags were already present in my footer but I do not see any messages in my footer upon profile update. Does it only display errors if there are any or does it always display something (something in the sense of "dev info")?<br />
So, I would like to share any erros with you, but there are none.<br /><br />
I must be overlooking something really simple, but I simply cant figure it out. :(</p>
<p><strong>Added 2 hours later:</strong></p><p>Got it!<br />
Now that I use the user extra fields like you suggested I do not need this hook any more to insert the new field value as that is already done by just the user edit form itself. I was hookibg something which did not need that at all..<br />
I am now only using the hook to get the new date stamp and insert that into the DB upon profile edit submit.<br /><br />
I am sure I will have some more questions but at least now that I can store dates I can work on the plugin funtionality itself :)</p>
]]></description>
			<pubDate>Wed, 16 Dec 2015 13:16:23 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=41239#41239]]></link>
		</item>
		<item>
			<title>Macik - How to safe data from custom field in a user profile to the DB?</title>
			<description><![CDATA[<p style="line-height:20.8px;">First of all, lets figures out what Cotonti version you had use? is it Genoa?<br /><br />
If so, I'm tries to describe main concepts, but I'm not working with Genoa over 4 years. So my snippets will be correspond to Siena version. And it will be your homework to transform it to Genoa if needed. Fell free to ask more.</p>

<ol style="line-height:20.8px;"><li>If we need to store some user related data in connection with every user —<strong> the best way is to use extra fields</strong>. It automates a lot of work for view, edit, updating data in DB. Moreover (and <em><strong>it's important</strong></em>) if we use extra fields we can access our extra data everywhere we get user info, so no addition queries and hooks required.<br /><br />
	If you need to add extra field by code on install stage <br />
	- we loads `extrafields` package:<br /><code>require_once cot_incfile('extrafields');</code><br /><br />
	- use <code>`cot_extrafield_add(…)`</code> (see info <a href="https://github.com/Cotonti/Cotonti/blob/master/system/extrafields.php#L523-L543" rel="nofollow">here</a>) to add field (you can define default value and more). Also do not foget to create uninstal part and use <code>`cot_extrafield_remove(…)`</code>.<br /><br />
	- Than you can use these extra fields as user ones. It's no matter will you use it in user templates or not. You can emulate user input, like this: <br />
	Hook `'users.edit.update.first'` and set `$_POST['user_youextrafield']` to desired value. Other work is done automatically — it would be updated in DB.</li>
	<li>If you still needs to interact with DB data you can use:<br />
	- to get data from DB<br /><code>$sql = $db-&gt;query("SELECT user_subscr_end_date, user_subscr_date_stamp, user_subscriber_status FROM $db_users WHERE user_id= ?", $userid);<br />
	$data = $sql-&gt;fetch();</code><br />
	and<br /><code>$updated = $db-&gt;update($db_users, $data, "user_id=$userid");</code><br /><br />
	In terms of Genoa something like:<br /><code>$sql = sed_sql_query("SELECT user_subscr_end_date, user_subscr_date_stamp, user_subscriber_status FROM $db_users WHERE user_id='$userid'");<br />
	$data = sed_sql_fetchassoc($sql);</code><br />
	and<br /><code>sed_sql_update($db_users, $data, <span style="line-height:20.8px;">"</span><span style="line-height:20.8px;">user_id=$userid"</span>);</code></li>
</ol><p style="line-height:20.8px;"> </p>

<p style="line-height:20.8px;">p.s. Without seeing error logs I can not guess why your queries working wrong. But you can enable debug mode (in config.php) and use `FOOTER_DEVMODE` tag in the footer.tpl to figure out whats going on.</p>
]]></description>
			<pubDate>Tue, 15 Dec 2015 18:09:20 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=41238#41238]]></link>
		</item>
		<item>
			<title>foxhound - How to safe data from custom field in a user profile to the DB?</title>
			<description><![CDATA[<p>I am trying to create a new plugin which adds additional fields to a user profile.</p>

<p>I have gotten it so far that when I edit the user profile the fields are there and actually contain the data I insert to the DB upon plugin install. But I can for the life of me not figure out how to set the plugin up so that if the field value is changed it actually saves this new data when the user presses "submit".</p>

<p>I have created a php for the hooks to "do" when the user updates the profile:<br />
Part=users.edit<br />
File=subscriber.user.edit.update.done<br />
Hooks=users.edit.update.done<br /><br />
I have been trying to get this to work since friday evening and I am about to throw myself out of the window.<br />
Is there someone who can tell me what I need to do so that edited field values get saved to the DB?</p>

<p> </p>

<p>Thanks in advance!<br /><br /><br />
PS: yes I can use extra fields of course, but it would be nice if I can just make this a plugin so no additonal user input is needed when installing the plugin.</p>

<p><strong>Added 4 hours later:</strong></p>

<p>So here is the edit part of the plugin: </p>

<pre class="brush:php;">
if (!defined('SED_CODE')) { die('Wrong URL.'); }


$userid = sed_import('id','G','INT');

$sub_sql = sed_sql_query("SELECT user_subscr_end_date, user_subscr_date_stamp, user_subscriber_status FROM $db_users WHERE user_id='$userid'");
	if (sed_sql_numrows($sub_sql) &gt; 0) {
		$sub = sed_sql_fetcharray($sub_sql);

		$sub_end = $sub['user_subscr_end_date'];
		$sub_stamp = $sub['user_subscr_date_stamp'];
		$sub_status = $sub['user_subscriber_status'];
		$sub_stamp = strtotime($sub_end);

	}

$t-&gt;assign(array(
	"USERS_EDIT_SUBSCRIPDATE" =&gt; "&lt;input type=\"text\" class=\"text\" name=\"subscr_end_date\" value=\"".htmlspecialchars($sub['user_subscr_end_date'])."\" size=\"8\" maxlength=\"10\" /&gt;",
	"USERS_EDIT_SUBSCRIPSTATUS" =&gt; "&lt;input type=\"text\" class=\"text\" name=\"subscriber_status\" value=\"".htmlspecialchars($sub['user_subscriber_status'])."\" size=\"1\" maxlength=\"1\" /&gt;"
));</pre>

<p> </p>

<p>And here is the update.done part of the plugin: </p>

<pre class="brush:php;">
defined('SED_CODE') or die('Wrong URL'); 

$userid = sed_import('id','G','INT');

$sub_sql_u2 = sed_sql_query("UPDATE $db_users SET user_subscr_end_date='".sed_sql_prep($sub_end)."', user_subscr_date_stamp='".sed_sql_prep($sub_stamp)."', user_subscriber_status='".sed_sql_prep($sub_status)."', user_auth='' WHERE user_id=$userid");</pre>

<p>Now, I have tried about a few million different sql queries trying to perform the update and everything fails. My DB values are never updated when I change them in the user edit page.<br />
If I change the <span style="line-height:20.8px;">update.done part of the plugin and (lets say) hardcode the DB values they get updated properly. So, the plugin works....I just can not figure out how to make the plugin update with the correct field values.</span></p>
<p><strong>Added 8 hours later:</strong></p><p>I tried a few dozen other different values for "<code class="php plain" style="line-height:14.3px;white-space:pre;margin:0px;padding:0px;border:0px;vertical-align:baseline;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;color:#000000;float:none;height:auto;width:auto;background:none;">.sed_sql_prep(</code><code class="php variable" style="line-height:14.3px;white-space:pre;margin:0px;padding:0px;border:0px;vertical-align:baseline;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;color:rgb(170,119,0);float:none;height:auto;width:auto;background:none;">$sub_end</code><code class="php plain" style="line-height:14.3px;white-space:pre;margin:0px;padding:0px;border:0px;vertical-align:baseline;font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;color:#000000;float:none;height:auto;width:auto;background:none;">)." to see if that would properly update the DB but all fial.</code></p>
]]></description>
			<pubDate>Mon, 14 Dec 2015 18:43:23 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=41237#41237]]></link>
		</item>
		<item>
			<title>foxhound - Plugin which adds a random value to the database on each page load</title>
			<description><![CDATA[<p>I see, thanks for the info. Saved me an additional query which was not really needed and since its a very busy website with many hundreds active visitors each minute whatever I can save is welcome :)</p>
]]></description>
			<pubDate>Tue, 24 Mar 2015 22:38:48 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=40741#40741]]></link>
		</item>
		<item>
			<title>Dayver - Plugin which adds a random value to the database on each page load</title>
			<description><![CDATA[<p>This see in start Page module file <a href="https://github.com/Cotonti/Cotonti/blob/genoa/page.php#L14" rel="nofollow">https://github.com/Cotonti/Cotonti/blob/genoa/page.php#L14</a> / But only for<span style="color:rgb(68,68,68);font-family:sans-serif;line-height:20.7999992370605px;background-color:rgb(238,238,238);"> Genoa</span></p>
]]></description>
			<pubDate>Tue, 24 Mar 2015 12:59:45 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=40737#40737]]></link>
		</item>
		<item>
			<title>foxhound - Plugin which adds a random value to the database on each page load</title>
			<description><![CDATA[<p>Yeah, its for Genoa, I still have not moved over to Sienna :)<br /><br />
But, I do not understand what you mean with: </p>

<pre class="brush:php;">
$location = 'Pages';
$z = 'page';</pre>

<p><br />
I am using $ses_userloc which got its value from a database query (checking where the user is from the sed_online table). Your code gets values from where?</p>
<p><strong>Added 16 hours later:</strong></p><p>Ahhhh, I see. Location is already an available variable so I dont have to query the DB for the location at all. ($location)<br /><br />
I am just unable to find where this is actually being set. Its not in the common.php and I also found nothing in the functions.php. Any idea where the value of location is actually gotten from?</p>
]]></description>
			<pubDate>Sun, 22 Mar 2015 17:55:46 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=40732#40732]]></link>
		</item>
		<item>
			<title>Dayver - Plugin which adds a random value to the database on each page load</title>
			<description><![CDATA[<ol><li>This is plug for Cotonti Genoa?</li>
	<li>For
	<pre class="brush:php;">
    ...
    if ($ses_userloc == "Pages") {
    ...
	</pre>
	May be us on of this params?

	<pre class="brush:php;">
    $location = 'Pages';
    $z = 'page';
    </pre>
	But it doesn't so matter</li>
</ol>]]></description>
			<pubDate>Sun, 22 Mar 2015 17:49:33 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=40731#40731]]></link>
		</item>
		<item>
			<title>foxhound - Plugin which adds a random value to the database on each page load</title>
			<description><![CDATA[<p>Thanks, that link was very usefull.<br />
I am now making my first real plugin :)</p>

<p> </p>

<p><strong>Added 5 days later:</strong></p>

<p>Ok, here is the first plugin I have made and I am actually hoping anyone can take a look and tell me if I should change something or if things should be done differently.<br />
Due to me using this plugin for a specific feature on my website I will remove some stuff otherwise people could abuse it but the removed content wont cause issues to understand what it does I think.<br /><br />
But, what it does is...create a random session (an md5 string) in the database which I will check and compare elewhere.<br /><br /><br />
 </p>

<pre class="brush:php;">
&lt;?php

/* ====================
[BEGIN_SED]
File=plugins/sessions/sessions.php
Version=1.0
Updated=2015-march-21
Type=Plugin
Author=Foxhound
Description=Insert a unique session with each pageload on pages only
[END_SED]

[BEGIN_SED_EXTPLUGIN]
Code=sessions
Part=
File=sessions
Hooks=global
Tags=
Minlevel=0
Order=1
[END_SED_EXTPLUGIN]

============ */


if (!defined('SED_CODE')) { die('Wrong URL.'); }

// here we check if we are working on the download system, if no all session stuff is set else we exit
if ($cfg['plugin']['sessions']['workinprogress'] != 'Yes')
	{
		$ses_pageid = sed_import('id','G','INT');
		$ses_userid = $usr['id'];
		$ses_username = $usr['name'];
			if ($ses_username == "") {
					$ses_username = "guest";
			}
		$ses_userip = $usr['ip'];
					
		$ses_sql1 = sed_sql_query("SELECT online_ip, online_location, online_sessionid, online_randomer FROM $db_online WHERE online_ip='$ses_userip'");	
			while ($row = sed_sql_fetcharray($ses_sql1)) {
				$ses_userloc = $row['online_location'];
				$ses_usersessionid = $row['online_sessionid'];
				$ses_randomer = $row['online_randomer'];
			}
		
		if ($ses_userloc == "Pages") {
			$dwnldlink_sql1 = sed_sql_query("SELECT page_id, page_extra_url FROM $db_pages WHERE page_id='$ses_pageid'");
				while ($row = sed_sql_fetcharray($dwnldlink_sql1)) {
					$ses_downloadurl = $row['page_extra_url'];
				}

			// create random string
			$ses_randomer = "";
			$ses_str_length = xx;
				for($ses_i=0; $ses_i&lt;$ses_str_length; $ses_i++){
					$ses_rand_number = mt_rand(0,xx);
					$ses_string = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
					$ses_randomer .= substr($ses_string, $ses_rand_number, 1);
				}

			$ses_usersessionid = md5($ses_xxxxx . md5($ses_randomer));
				
			$ses_sql1 = sed_sql_query("UPDATE $db_online SET online_sessionid='$ses_usersessionid', online_randomer='$ses_randomer' WHERE online_ip='$ses_userip'");
		}
		
		// this is required cause we never know if the visitor does actually click the downloadlink on the page he visitted!
		if (($ses_userloc != "Pages") &amp;&amp; ((!empty($ses_usersessionid)) || (!empty($ses_randomer)))) {
			$ses_sql_u1 = sed_sql_query("UPDATE $db_online SET online_sessionid='', online_randomer='' WHERE online_ip='$ses_userip'");
			
		}
	}
?&gt;
</pre>

<p><br />
Some things:<br />
- I know md5 is not the safest, yet the sessionID wont contain any sensetive data. Its just for me to check a users presence with a certain value (random). I use md5 just to make it unreadable in case someone decides to dig further.<br />
- I remove the sessionID string if not on pages to make sure it can not be abused (its actually only valid for one page view and/or action.<br />
- no, It did not take me all those days just to write this. In addition to this I made another plugin which works together with this (the workinprogress thing) and in addition another script in another location checks stuff.</p>

<p><br />
Any tips? Thoughts?<br />
Its my first real fully coded plugin, so if I did do real stupid stuff please be gentle :)</p>
]]></description>
			<pubDate>Mon, 16 Mar 2015 21:33:36 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=40703#40703]]></link>
		</item>
		<item>
			<title>Dayver - Plugin which adds a random value to the database on each page load</title>
			<description><![CDATA[<p>Read <a href="http://www.cotonti.com/en/docs/ext/extensions/extdevguide">extensions/extdevguide</a> and try to create a simple plugin myplug with two files 1) myplug.setup.php 2) myplug.global.php in his us hook "input" or "global" with your needed code. Then your code will be attached in common.php (<span style="color:rgb(68,68,68);font-family:sans-serif;line-height:20.7999992370605px;background-color:rgb(238,238,238);">will load with ever page request</span>) but common.php not be hacked and after upgrades your code be will work</p>
]]></description>
			<pubDate>Sun, 15 Mar 2015 23:28:33 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=40702#40702]]></link>
		</item>
		<item>
			<title>foxhound - Plugin which adds a random value to the database on each page load</title>
			<description><![CDATA[<p>I am trying to identify a user/guest and know if he is on my website while he connects to a different server. So, for that I am using a session  in some custom php I wrote over the last few weeks.<br />
However, this PHP script I made runs outside of Cotonti, I query the DB for a few values but thats it.<br />
Since my script is actually working and doing what it is supposed to be doing I want to change it now so it gets embedded properly within my website and for that I need to make it a plugin.<br /><br />
Can someone explain to me how to make a plugin which will load with ever page request a user makes on my website please? Cause I really have no idea how to make it and where to start to make it work with every page request.<br />
I was looking through the common.php and sure I can edit it and add it there, but I rather have this as a plugin so the core stays clean of my stuff :)</p>

<p> </p>

<p>Oh, I know there are already sessions created but those are of no use for me as they are the same for the entire session. I need to create unique session values with each page request so i can cross check a users presence.<br /><br />
 </p>
]]></description>
			<pubDate>Sun, 15 Mar 2015 22:57:23 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=40701#40701]]></link>
		</item>
		<item>
			<title>Macik - User rights</title>
			<description><![CDATA[<blockquote><a href="https://www.cotonti.com/forums?m=posts&amp;q=7518&amp;d=1#40552">#40552</a> <strong>vahram.papaxchyan: </strong>
<p>Hello! I am new in cotonti, and i don't know haw  to make so that the employer could not leave for a job</p>

<p>can anyone help me?</p>
</blockquote>

<p>It's offtopic in this forum thread.</p>

<p>See answer in your russian post.</p>
]]></description>
			<pubDate>Tue, 17 Feb 2015 14:27:13 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=40554#40554]]></link>
		</item>
		<item>
			<title>vahram.papaxchyan - User rights</title>
			<description><![CDATA[<p>Hello! I am new in cotonti, and i don't know haw  to make so that the employer could not leave for a job</p>

<p>can anyone help me?</p>
]]></description>
			<pubDate>Tue, 17 Feb 2015 14:19:36 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=40552#40552]]></link>
		</item>
		<item>
			<title>singh336 - New design crowdfunding</title>
			<description><![CDATA[<p>hows it going with this ?</p>
]]></description>
			<pubDate>Fri, 12 Dec 2014 17:21:23 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=40282#40282]]></link>
		</item>
		<item>
			<title>wicky - RSS &amp; to &amp;amp validation</title>
			<description><![CDATA[<p><span style="color:rgb(68,68,68);font-family:sans-serif;line-height:16.0030002593994px;background-color:rgb(238,238,238);">In the File forums.topics.inc.php in line 367 are a &amp; </span><br style="color:rgb(68,68,68);font-family:sans-serif;line-height:16.0030002593994px;background-color:rgb(238,238,238);" />
 </p>
]]></description>
			<pubDate>Sat, 29 Nov 2014 09:06:00 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=40215#40215]]></link>
		</item>
		<item>
			<title>mani - User rights</title>
			<description><![CDATA[<p><span style="color:rgb(68,68,68);font-family:sans-serif;line-height:20.7999992370605px;background-color:rgb(238,238,238);"> don't like Bootstrap because it becomes bloated as soon as you step out of the framework or basic design of the bootstrap CSS's,</span><br style="color:rgb(68,68,68);font-family:sans-serif;line-height:20.7999992370605px;background-color:rgb(238,238,238);" /><span style="color:rgb(68,68,68);font-family:sans-serif;line-height:20.7999992370605px;background-color:rgb(238,238,238);">having a CSS file that kills in some extent the design produced by Bootstrap, is to me a bad way. I would rather go with a grid system</span><br style="color:rgb(68,68,68);font-family:sans-serif;line-height:20.7999992370605px;background-color:rgb(238,238,238);" /><span style="color:rgb(68,68,68);font-family:sans-serif;line-height:20.7999992370605px;background-color:rgb(238,238,238);">that isn't carrying any design and from there have the freedom to roam freely.</span></p>

<p> </p>

<p> </p>
]]></description>
			<pubDate>Sat, 08 Nov 2014 08:32:20 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=40156#40156]]></link>
		</item>
		<item>
			<title>Twiebie - New design crowdfunding</title>
			<description><![CDATA[<p>Yeah, I think the classic view is much better.</p>
]]></description>
			<pubDate>Sun, 16 Mar 2014 23:47:28 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=39287#39287]]></link>
		</item>
		<item>
			<title>Macik - New design crowdfunding</title>
			<description><![CDATA[<p>Great. It has more Cotonti related structure. And more classic view by color scheme. And it's simple enough to be overall highly customizable. </p>
]]></description>
			<pubDate>Thu, 27 Feb 2014 22:17:57 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=39227#39227]]></link>
		</item>
		<item>
			<title>Trustmaster - New design crowdfunding</title>
			<description><![CDATA[<p><strong><a href="http://www.cotonti.com/reactor/">Reactor presentation</a></strong> has been updated, we added 2 new themes:</p>

<p>Classic developer theme with list view:</p>

<p><a href="http://www.cotonti.com/reactor/img/reactor_presentation_blog_0_light_footer.jpg"><img alt="Reactor classic" src="http://www.cotonti.com/datas/users/reactor_presentation_blog_0_light_footer_thumb_5.jpg" style="width:320px;height:480px;" /></a></p>

<p>Golden blog theme with list view:</p>

<p><a href="http://www.cotonti.com/reactor/img/reactor_presentation_blog.jpg"><img alt="Reactor golden" src="http://www.cotonti.com/datas/users/reactor_presentation_blog_thumb_5.jpg" style="width:320px;height:480px;" /></a></p>
]]></description>
			<pubDate>Thu, 27 Feb 2014 18:23:13 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=39226#39226]]></link>
		</item>
		<item>
			<title>Macik - New design crowdfunding</title>
			<description><![CDATA[<p>I'm back from vacations. </p>

<p>Looking at <strong style="margin:0px;padding:0px;border:0px;vertical-align:baseline;background-color:rgb(227,227,227);font-family:sans-serif;"><a href="http://www.cotonti.com/reactor/" style="margin:0px;padding:0px;vertical-align:baseline;background-color:transparent;color:rgb(0,121,193);text-decoration:none;">Cotonti Reactor</a></strong> and my thoughts are:</p>

<ul><li>now it distant from Cotonti specifics as it aims pointed for blog/portfolio only and not conform to forum or tech-site with rare news update or text only news</li>
	<li>It can be used as one of box themes</li>
	<li>it required more preinstalled (sample) data (posts, news with graphics) for clean (new) CMF install to looks good enough from the box.</li>
	<li>it required fine tuning for certain Cotonti blocks of data and plugins</li>
	<li>the colors are very excited and pretender to play with it later for less vivid</li>
</ul>]]></description>
			<pubDate>Tue, 25 Feb 2014 06:43:45 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=39216#39216]]></link>
		</item>
		<item>
			<title>Trustmaster - New design crowdfunding</title>
			<description><![CDATA[<p>Could you please explain what makes you think so? Colours? They will be in LESS variables so it will be very easy to create other colour schemes. It's not even insisted this light theme will be the default one. Tiles? There's a switch to classical list mode, and moreover it depends on what's in your TPL because these are just divs/panels.</p>
]]></description>
			<pubDate>Tue, 11 Feb 2014 07:11:14 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=39185#39185]]></link>
		</item>
		<item>
			<title>Twiebie - New design crowdfunding</title>
			<description><![CDATA[<blockquote><a href="https://www.cotonti.com/forums?m=posts&amp;q=7642&amp;d=2#39100">#39100</a> <strong>Trustmaster: </strong>
<p>Here is the preview of the new <strong>Reactor theme</strong> by 486made:</p>

<p><strong><a href="http://www.cotonti.com/reactor/">Cotonti Reactor</a></strong></p>

<p>It's very hipster and outstanding compared to thousands of Wordpress themes which have flooded the market.</p>
</blockquote>

<p>It's hipster indeed, but a tad too much for me. It would probably fit on a trendy magazine'ish website but I'm not so sure about it as an out of the box theme for a CMF.</p>

<p> </p>
]]></description>
			<pubDate>Mon, 10 Feb 2014 23:00:31 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=39182#39182]]></link>
		</item>
		<item>
			<title>Trustmaster - New design crowdfunding</title>
			<description><![CDATA[<p>The preview is just an example, it tends to demonstrate how a media site would look like, instead of listing framework components. Framework components are yet TODO if the general design concept is accepted.</p>

<p>Any opinions?</p>
]]></description>
			<pubDate>Mon, 10 Feb 2014 15:54:20 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=39176#39176]]></link>
		</item>
		<item>
			<title>Kort - New design crowdfunding</title>
			<description><![CDATA[<p>I do not think this has something to do with what we are looking for. This is portfolio/blog with extremely small emphasis on what it is all about: a PHP/MySQL framework.</p>
]]></description>
			<pubDate>Sun, 09 Feb 2014 12:19:34 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=39173#39173]]></link>
		</item>
		<item>
			<title>Trustmaster - New design crowdfunding</title>
			<description><![CDATA[<p>Here is the preview of the new <strong>Reactor theme</strong> by 486made:</p>

<p><strong><a href="http://www.cotonti.com/reactor/">Cotonti Reactor</a></strong></p>

<p>It's very hipster and outstanding compared to thousands of Wordpress themes which have flooded the market.</p>

<p>Key features:</p>

<ul><li>Responsive, designed to be mobile-friendly and easy to fit for any screen size.</li>
	<li>Flat, but not like iOS7 or Win8. It has its own style.</li>
	<li>Multiple colour schemes. First 2 images demonstrate the standard light and dark themes. The 3rd image is an example custom scheme.</li>
	<li>Blocks are easy to change and customize for any type of content, plugin or widget.</li>
</ul><p>Coming soon:</p>

<ul><li>New logo</li>
	<li>Other pages</li>
</ul>]]></description>
			<pubDate>Mon, 27 Jan 2014 17:07:43 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=39100#39100]]></link>
		</item>
		<item>
			<title>Slaweally - New design crowdfunding</title>
			<description><![CDATA[<p>Thank magic ;)</p>
]]></description>
			<pubDate>Tue, 21 Jan 2014 23:09:51 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=39041#39041]]></link>
		</item>
		<item>
			<title>Macik - New design crowdfunding</title>
			<description><![CDATA[<blockquote>
<p><strong>Logo psd file <span class="short_text" lang="en" xml:lang="en"><span class="hps">can you give</span></span></strong> ?</p>
</blockquote>

<p><a href="https://drive.google.com/file/d/0B74sGg1a30dJci1LSjNiSkZIN0k/edit?usp=sharing" rel="nofollow">https://drive.google.com/file/d/0B74sGg1a30dJci1LSjNiSkZIN0k/edit?usp=sharing</a>  (note: this logo is not official version yet)</p>

<p> </p>

<p> </p>
]]></description>
			<pubDate>Sat, 18 Jan 2014 06:42:04 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=39013#39013]]></link>
		</item>
		<item>
			<title>Twiebie - New design crowdfunding</title>
			<description><![CDATA[<blockquote><a href="https://www.cotonti.com/forums?m=posts&amp;q=7642&amp;d=1#38992">#38992</a> <strong>Macik: </strong>
<p><span style="color:rgb(128,128,128);font-family:Arial, Helvetica, sans-serif;font-size:14px;line-height:19.007999420166016px;">The overall idea and design is good. </span></p>

<p><span style="color:rgb(128,128,128);font-family:Arial, Helvetica, sans-serif;font-size:14px;line-height:19.007999420166016px;">Here are some fine tuning…</span></p>

<p><a href="https://downloader-default3m.disk.yandex.ru/rdisk/003ff3d963608e4f668fd345a9ce6014/mpfs/hTXXPVfmjQyA2_DXbB1CRVn9iist8mtGravZINH4XaPxrtAO_LzfDIT-cWoerZzrpFt8rLYWkinWCu4XfO5B1w==?uid=0&amp;filename=cotonti_logo-1.png&amp;disposition=inline&amp;hash=&amp;limit=0&amp;content_type=image%2Fpng&amp;rtoken=f8612fe41f6f3b34e14d662e279004a6&amp;rtimestamp=52d9523f" rel="nofollow"><img alt="cotonti_logo-1-thumb.png" src="https://downloader.disk.yandex.ru/disk/16e96a2d7a91206d4cc2de81e47803d6/mpfs/40HvuBDWYzqZ6TrA4PE70__EMqf0bIFTbsSP-rleLRCWUA0iwf1pK40dJz-oaw6sYtxSnN_R0yx8aullKYsDhw%3D%3D?uid=0&amp;filename=cotonti_logo-1-thumb.png&amp;disposition=inline&amp;hash=&amp;limit=0&amp;content_type=image%2Fpng" /></a></p>

<p>(click for enlarge)</p>
</blockquote>

<p>I'm impressed with your attention to kerning and colour mixing. Good to see Macik!</p>
]]></description>
			<pubDate>Fri, 17 Jan 2014 16:58:17 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=39008#39008]]></link>
		</item>
		<item>
			<title>Slaweally - New design crowdfunding</title>
			<description><![CDATA[<blockquote><a href="https://www.cotonti.com/forums?m=posts&amp;q=7642&amp;d=1#38992">#38992</a> <strong>Macik: </strong>
<p><span style="color:rgb(128,128,128);font-family:Arial, Helvetica, sans-serif;font-size:14px;line-height:19.007999420166016px;">The overall idea and design is good. </span></p>

<p><span style="color:rgb(128,128,128);font-family:Arial, Helvetica, sans-serif;font-size:14px;line-height:19.007999420166016px;">Here are some fine tuning…</span></p>

<p><a href="https://downloader-default3m.disk.yandex.ru/rdisk/003ff3d963608e4f668fd345a9ce6014/mpfs/hTXXPVfmjQyA2_DXbB1CRVn9iist8mtGravZINH4XaPxrtAO_LzfDIT-cWoerZzrpFt8rLYWkinWCu4XfO5B1w==?uid=0&amp;filename=cotonti_logo-1.png&amp;disposition=inline&amp;hash=&amp;limit=0&amp;content_type=image%2Fpng&amp;rtoken=f8612fe41f6f3b34e14d662e279004a6&amp;rtimestamp=52d9523f" rel="nofollow"><img alt="cotonti_logo-1-thumb.png" src="https://downloader.disk.yandex.ru/disk/16e96a2d7a91206d4cc2de81e47803d6/mpfs/40HvuBDWYzqZ6TrA4PE70__EMqf0bIFTbsSP-rleLRCWUA0iwf1pK40dJz-oaw6sYtxSnN_R0yx8aullKYsDhw%3D%3D?uid=0&amp;filename=cotonti_logo-1-thumb.png&amp;disposition=inline&amp;hash=&amp;limit=0&amp;content_type=image%2Fpng" /></a></p>

<p>(click for enlarge)</p>
</blockquote>

<p><strong>Logo psd file <span class="short_text" lang="en" xml:lang="en"><span class="hps">can you give</span></span></strong> ?</p>
]]></description>
			<pubDate>Fri, 17 Jan 2014 16:16:01 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=39004#39004]]></link>
		</item>
		<item>
			<title>Macik - New design crowdfunding</title>
			<description><![CDATA[<blockquote><a href="https://www.cotonti.com/forums?m=posts&amp;q=7642&amp;d=1#38996">#38996</a> <strong>Trustmaster: </strong>
<p><strong>@Macik</strong>, that link gives 403 forbidden.</p>
</blockquote>

<p>Check fixed one. (see edited post).</p>
]]></description>
			<pubDate>Fri, 17 Jan 2014 15:54:35 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=39000#39000]]></link>
		</item>
		<item>
			<title>Trustmaster - New design crowdfunding</title>
			<description><![CDATA[<p><strong>@Macik</strong>, that link gives 403 forbidden.</p>
]]></description>
			<pubDate>Fri, 17 Jan 2014 07:40:45 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=38996#38996]]></link>
		</item>
		<item>
			<title>singh336 - New design crowdfunding</title>
			<description><![CDATA[<p>that logo looks good, and im glad you're going to design a new proper default theme and admin theme for the next siena releases, the ones right now are so bad they are funny !</p>

<p> </p>

<p>good luck with all, im beyond broke, its no excuse, but winter is a tough time of year for me, im barely affording my hosting</p>
]]></description>
			<pubDate>Fri, 17 Jan 2014 06:06:18 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=38994#38994]]></link>
		</item>
		<item>
			<title>Macik - New design crowdfunding</title>
			<description><![CDATA[<p><span style="color:rgb(128,128,128);font-family:Arial, Helvetica, sans-serif;font-size:14px;line-height:19.007999420166016px;">The overall idea and design is good. </span></p>

<p><span style="color:rgb(128,128,128);font-family:Arial, Helvetica, sans-serif;font-size:14px;line-height:19.007999420166016px;">Here are some fine tuning…</span></p>

<p><a href="https://downloader-default3m.disk.yandex.ru/rdisk/003ff3d963608e4f668fd345a9ce6014/mpfs/hTXXPVfmjQyA2_DXbB1CRVn9iist8mtGravZINH4XaPxrtAO_LzfDIT-cWoerZzrpFt8rLYWkinWCu4XfO5B1w==?uid=0&amp;filename=cotonti_logo-1.png&amp;disposition=inline&amp;hash=&amp;limit=0&amp;content_type=image%2Fpng&amp;rtoken=f8612fe41f6f3b34e14d662e279004a6&amp;rtimestamp=52d9523f" rel="nofollow"><img alt="cotonti_logo-1-thumb.png" src="https://downloader.disk.yandex.ru/disk/16e96a2d7a91206d4cc2de81e47803d6/mpfs/40HvuBDWYzqZ6TrA4PE70__EMqf0bIFTbsSP-rleLRCWUA0iwf1pK40dJz-oaw6sYtxSnN_R0yx8aullKYsDhw%3D%3D?uid=0&amp;filename=cotonti_logo-1-thumb.png&amp;disposition=inline&amp;hash=&amp;limit=0&amp;content_type=image%2Fpng" /></a></p>

<p>(click for enlarge)</p>
]]></description>
			<pubDate>Fri, 17 Jan 2014 02:48:04 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=38992#38992]]></link>
		</item>
		<item>
			<title>elfrenazo - New design crowdfunding</title>
			<description><![CDATA[<blockquote><a href="https://www.cotonti.com/forums?m=posts&amp;q=7642&amp;d=1#38906">#38906</a> <strong>Trustmaster: </strong><br />
@aiwass: that guy still has Ukrainian citizenship so he can't accept PayPal. As for Bootstrap it won't be enforced. It's just standard themes that will be based on it. You are still free to do anything you want. And I think having fallback tpls use common Bootstrap standards in markup and class names is a helpful thing.
<p><strong>Added 1 days later:</strong></p>

<p>The progress so far is $80 of $300.</p>

<p><strong>Added 4 days later:</strong></p>

<p>Current progress: $168 of 300.</p>

<p>Here is an attempt of Cotonti's logo redesign by our old friend <a href="http://www.cotonti.com/users/Stam">Stam</a>, the author of the original Cotonti logo:</p>

<p><img alt="Cotonti logo by Stam" src="http://www.cotonti.com/datas/users/cotonti-logo-jan14_5.png" /></p>
</blockquote>

<p> </p>

<p> </p>

<p><span class="hps">I like the</span> <span class="hps">logo.  Would look</span> <span class="hps">more</span> <span class="hps">modern with</span> <span class="hps">rounded edges, the colored squares.</span></p>
]]></description>
			<pubDate>Thu, 16 Jan 2014 19:34:07 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=38989#38989]]></link>
		</item>
		<item>
			<title>Dayver - New design crowdfunding</title>
			<description><![CDATA[<blockquote>
<p><span style="color:rgb(68,68,68);font-family:sans-serif;background-color:rgb(238,238,238);">Cotonti's modular design.</span></p>
</blockquote>

<p>Мaу be like   <img alt="Slide2.PNG" src="http://3.bp.blogspot.com/-vuVXviGkEDQ/UHXx2luZdSI/AAAAAAAAuhA/qw0HRB06YsA/s1600/Slide2.PNG" width="300" /> but not block like windows block?</p>
]]></description>
			<pubDate>Wed, 15 Jan 2014 20:50:08 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=38967#38967]]></link>
		</item>
		<item>
			<title>esclkm - New design crowdfunding</title>
			<description><![CDATA[<p>If i see 4 bricks - a i have only windows association</p>
]]></description>
			<pubDate>Wed, 15 Jan 2014 19:07:34 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=38963#38963]]></link>
		</item>
		<item>
			<title>Twiebie - New design crowdfunding</title>
			<description><![CDATA[<p>I quite like the idea of the coloured (building) blocks as an illustration of Cotonti's modular design.</p>

<blockquote><a href="https://www.cotonti.com/forums?m=posts&amp;q=7642&amp;d=1#38957">#38957</a> <strong>esclkm: </strong><br />
Цветные кубики? Виндоус?
<p><strong>Добавлено 2 часа спустя:</strong></p>
Color bricks?3/4 windows?</blockquote>

<p>I think that's a little far-fetched.</p>
]]></description>
			<pubDate>Wed, 15 Jan 2014 14:57:58 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=38959#38959]]></link>
		</item>
		<item>
			<title>esclkm - New design crowdfunding</title>
			<description><![CDATA[Цветные кубики? Виндоус?<p><strong>Добавлено 2 часа спустя:</strong></p>Color bricks?3/4 windows?]]></description>
			<pubDate>Wed, 15 Jan 2014 11:44:47 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/forums?m=posts&p=38957#38957]]></link>
		</item>
	</channel>
</rss>