Re: Performance improvements for SilverStripe v3.0.x
Here are some caching ideas for SS 3http://doc.silverstripe.org/framework/en/reference/staticpublisherBasic performance boost in _config.php file addObject::add_extension("SiteTree",...
View ArticleRe: Silverstripe 3 External Search Recommendations
Unfortunately not. I've had to launch the intranet without the search initially. I've since launched another site with the built in full text search but that doesn't index documents. It would do a...
View ArticleRe: How can the quality of through SilverStripe resized images be increased?
I think for ultimate quality, if its desired, images should be edited in your favourite image editing tool (Gimp) then uploaded.If you have an image say 1000 px wide but your max content width is 600...
View ArticleRe: How can the quality of through SilverStripe resized images be increased?
Yes, I know all of that, but I'm not the one editing content through the CMS in the end. And as a developer, I want to ensure, that all the data the site outputs, does not crash the layout. The resize...
View ArticleRe: Silverstripe 3 External Search Recommendations
Hi. I found the repo in the end. Haven't tried it yet however. Latest merge was 10 months ago. See my thread here: http://www.silverstripe.org/all-other-modules/show/23625Posted to: Silverstripe 3...
View ArticleRe: Performance improvements for SilverStripe v3.0.x
Make sure you're using a opcode cache. Partial caching is an easy tool for caching your web front end.As with any application performance work, looking at the numbers is the best way to identify what...
View ArticleRe: Content Approval
This functionality is called workflow. Check out the modules which provide this...
View ArticleRe: Performance improvements for SilverStripe v3.0.x
Thanks for the hints. Will try that or just get the guys a faster server This one, Willr? https://github.com/gajus/xhprof.ioWe're currently trying to implement New Relic http://newrelic.com/ to the...
View ArticleRe: Issue with 31/12/2012
I have been able to replicate this on a second install. I will build a fresh install today and update.Posted to: Issue with 31/12/2012 | Show Thread | Post Reply
View ArticleRe: $DataObject::get() Question
$entries = BookstoreBook::get() ->where("Title LIKE '$searchString'")->sort($order);Posted to: $DataObject::get() Question | Show Thread | Post Reply
View ArticleRe: Decrypt password like SS
You cannot decrypt passwords. If you want to log a user in programmatically you can call $data = array('Email' => 'youremail','Password' => 'password');$member =...
View ArticleRe: unable to add group / role - internal server error
Check your hosts php error logs for the actual error messaging (or turn on dev mode).Posted to: unable to add group / role - internal server error | Show Thread | Post Reply
View ArticleRe: no $Description in SS v3.1
It has been removed. Please consult the upgrading documentation.Posted to: no $Description in SS v3.1 | Show Thread | Post Reply
View ArticleRe: Form Templates
You can call setTemplate() to set the form template (http://api.silverstripe.org/3.0/source-class-Form.html#766-775)Posted to: Form Templates | Show Thread | Post Reply
View ArticleRe: $DataObject::get() Question
Thanks very much for the answer Willr,->where("Title LIKE '$searchString'") Didn't work however I used: $entries = BookstoreBook::get() ->filter(array( 'Title:PartialMatch' => $searchString,...
View ArticleRe: unable to add group / role - internal server error
Thanks for answering! I got this error in the log - it's the same error for all my problems with the security settings: PHP Fatal error: Class 'Widget' not found in...
View ArticleRe: CMS or Frontend for content management
it does seem rather difficult to find examples of frontend crud. Generic views doesn't quite work for me and was so happy reading about the Gridfield in SS3 until i discovered it doesn't work in the...
View ArticleCan't 'Insert Media' in CMS SS 3.0.5 [Solved]
I get an 'Internal Server Error' when trying to use 'insert media' in the CMS, and the pop up is blank. The console spits out:GET...
View ArticleRe: Can't 'Insert Media' in CMS SS 3.0.5 [Solved]
My fault again. I think I had an error in my thumbnail function in a custom image class. Or perhaps it was because there was some bad records for that class hanging around in the file table left there...
View Article