<?xml version="1.0"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Page comments</title>
		<link>http://www.ssbits.com/home/</link>
		<atom:link href="http://www.ssbits.com/home/" rel="self" type="application/rss+xml" />
		<description></description>

		
		<item>
			<title></title>
			<link>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_2521</link>
			<description>I think its about time we had a  /_config/config.yml  plus _config.php  combo cheatsheet. what you put in either when upgrading from a pure SS3 _config.php is quite confusing and the docs are awful!!</description>
			<pubDate></pubDate>
			<dc:creator>RSSName</dc:creator>
			<guid>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_2521</guid>
		</item>
		
		<item>
			<title></title>
			<link>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_2192</link>
			<description>What is the joy of having a &lt;br&gt; at the top of the _config.php file? </description>
			<pubDate></pubDate>
			<dc:creator>RSSName</dc:creator>
			<guid>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_2192</guid>
		</item>
		
		<item>
			<title></title>
			<link>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_1401</link>
			<description>I Take video of my tests with Chrome and Firefox for a better understanding :) I hope it will be help ^^

The first test with Google Chrome, as you can see it's working
http://www.screencast.com/t/itVwhmynCK

The second with Firefox and now i can see that there are a sort of latency
http://www.screencast.com/t/YChKgliX

I hope you can help me :)

Thanks

Plop</description>
			<pubDate></pubDate>
			<dc:creator>RSSName</dc:creator>
			<guid>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_1401</guid>
		</item>
		
		<item>
			<title></title>
			<link>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_1398</link>
			<description>So How i have to do ? 

I put this code below in my _config.php :

$pwdValidator = new PasswordValidator();
$pwdValidator-&gt;minLength(6);
$pwdValidator-&gt;checkHistoricalPasswords(6);
$pwdValidator-&gt;characterStrength(2,array('lowercase','digits'));
Member::set_password_validator($pwdValidator);

But it works only on Chrome and not on Firefox xD
i'm a little lost ^^

if you have any ideas,  i'm taking theses ^^

Plop</description>
			<pubDate></pubDate>
			<dc:creator>RSSName</dc:creator>
			<guid>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_1398</guid>
		</item>
		
		<item>
			<title></title>
			<link>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_1397</link>
			<description>Hi Plop,

Password validation doesn't change anything in the database, it will come into effect when you try to define a password.

Aram</description>
			<pubDate></pubDate>
			<dc:creator>RSSName</dc:creator>
			<guid>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_1397</guid>
		</item>
		
		<item>
			<title></title>
			<link>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_1396</link>
			<description>Hi Aram,

First of all, thanks you for share your work :) it's really appreciated 

So that is my story ^^ i'm new on SS and I have just started to work with it
My first project is to manage Member on my website, so I use Memberprofiles Module But there are few things I don't understand and I hope you can help me :)

I want to configure the password like this :
- At least 6 Caracters
- Password different from Login
- At least 1 number and 1 letter

But when i put your code in my _config.php after Dev/build/?flush=1
nothing appends :(

that is all for the moment ^^

Thanks for answering me :)

Best regards</description>
			<pubDate></pubDate>
			<dc:creator>RSSName</dc:creator>
			<guid>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_1396</guid>
		</item>
		
		<item>
			<title></title>
			<link>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_1041</link>
			<description>Hi, 

Line 28: LeftAndMain::setApplicationName(&quot;My application&quot;); is more complete if you changed it to:

LeftAndMain::setApplicationName($name = &quot;Application text at the bottom&quot;,$logoText = &quot;Text next to logo&quot;,$link = &quot;Link to website&quot;);
</description>
			<pubDate></pubDate>
			<dc:creator>RSSName</dc:creator>
			<guid>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_1041</guid>
		</item>
		
		<item>
			<title></title>
			<link>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_884</link>
			<description>Hey,

It worked!!

Might be because of cookies, it was not showing up!
Thanks a lot :)</description>
			<pubDate></pubDate>
			<dc:creator>RSSName</dc:creator>
			<guid>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_884</guid>
		</item>
		
		<item>
			<title></title>
			<link>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_879</link>
			<description>Hello,

I just added these codes to prevent HTML CODE STRIPPING::

//Set HTML EDitor Config
HtmlEditorConfig::get('cms')-&gt;setOption('convert_fonts_to_spans', false);
//
HtmlEditorConfig::get('cms')-&gt;enablePlugins('searchreplace');
//
HtmlEditorConfig::get('cms')-&gt;insertButtonsAfter('pasteword', 'replace');
//
HtmlEditorConfig::get('cms')-&gt;setOptions(array( 'content_css' =&gt; 'static/css/editor.css' )); 
//
//Add requirments to the CMS
LeftAndMain::require_javascript('mysite/javascript/jquery.cms.js');
//
LeftAndMain::require_css('themes/mytheme/css/cms.css');
//


But still the BIDVERTISER ad code, I am inserting in HTML Editor dont work and I cannot see the banner.

Is there something I am missing?

Plz revert back...

</description>
			<pubDate></pubDate>
			<dc:creator>RSSName</dc:creator>
			<guid>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_879</guid>
		</item>
		
		<item>
			<title></title>
			<link>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_435</link>
			<description>In stead of defining dev the hardcoded way, this is a better way to do it:

/**
 * Sites running on the following servers will be
 * run in development mode. See
 * http://doc.silverstripe.org/doku.php?id=configuration
 * for a description of what dev mode does.
 * Remember, you can /dev/build on dev-servers without login!
 */
Director::set_dev_servers(array(
    'localhost',
    '127.0.0.1',
    'yourdevlocation.website.com',
    'more.website.com',
));
Every given url gives automatically a dev-mode. saves a lot of hassle with unsetting.

Also, this feature can be linked to database settings, if-in-dev, use different db-settings. (For safety, still, please, do delete your dev-settings after live still ;) )</description>
			<pubDate></pubDate>
			<dc:creator>RSSName</dc:creator>
			<guid>http://www.ssbits.com/snippets/2010/a-config-php-cheatsheet/#PageComment_435</guid>
		</item>
		

	</channel>
</rss>