Cleaning up SS for a ready-to-production site
Hi all,I would like to clean up my SilverStripe before putting it into production. Actually the site is running SS 3.1.0-beta2, upgraded from a 3.0.3 as soon as new versions were published.I have a lot...
View ArticleRe: SilverStripe v3.0.x is too slow
Can only conqur with previous users. We've seen page load times go from 0.6 secs to 2.5 secs on the same hardware.Caching <% control menu(1) %> in the template gives about 0.1 sec lower load...
View ArticleRe: Silverstripe 3.0.2 - UploadField 400 Bad Request
I have this on SS3, when I drag and drop reorder as I release I get the 'bad request' error.Any idea what causes this? thanksPosted to: Silverstripe 3.0.2 - UploadField 400 Bad Request | Show Thread |...
View ArticleRe: Silverstripe 3.0.2 - UploadField 400 Bad Request
I seem to remember getting this error when I was incorrectly using $has_many for images. So make sure you aren't using $has_many for them, switch them to $many_many if you are and try again.Posted to:...
View ArticleRe: Silverstripe 3.0.2 - UploadField 400 Bad Request
thanks, but that didn't help. I still just get "Bad Request" I don't get how I'm meant to debug this.. FIXI moved all my files to a new site and finally found the drag and drop stopped when i updated...
View ArticleIterating through classes with an extension
How can I get a list of all classes extended by a DataExtension?g4b0Posted to: Iterating through classes with an extension | Show Thread | Post Reply
View ArticleRe: Media (Image) Upload Problem
I was just confronted with the same problem.The above post is only a partial solution.We only want this .ss-uploadfield-files - else we get all ss-uploadfield-files wich include the ones not related to...
View ArticleCreating a simple filter help
Hi all, since last on ive been busy creating my site and i have to say its getting easier but i need a little help again.im writing pages for motorbike sales and the flow is like...
View Article$Now not available in dataobject
Hi, I'm trying to use something like <% if InFuture(EndDate) %> or <% if EndDate.InFuture %>inside a control to get the next few events to put on a home page. The control is calling...
View Articleadmin group only have access to save and publish button
how do I set sliverstipe for only admin to have access to save and publish button? and other users only get the save draft buttonthanksPosted to: admin group only have access to save and publish button...
View ArticleRe: Iterating through classes with an extension
Going that way might be tricky Object::has_extension($class, $extension) would be one piece of API that would help, though you would need to get a list of classes though....
View ArticleRe: SilverStripe v3.0.x is too slow
Patch for 3.1 coming https://github.com/silverstripe/sapphire/pull/1244Posted to: SilverStripe v3.0.x is too slow | Show Thread | Post Reply
View ArticleRe: Media (Image) Upload Problem
Hi Werner,You're correct, though it has also already been patched: https://github.com/silverstripe/sapphire/pull/10243.0.4 and up have the patch includedPosted to: Media (Image) Upload Problem | Show...
View ArticleRe: Iterating through classes with an extension
I solved with:foreach(ClassInfo::subclassesFor('DataObject') as $class ) { if (singleton($class)->hasExtension("ZkTwitterExtension")) {Do you think your version is more performat, or they're the...
View ArticleRe: SilverStripe v3.0.x is too slow
Just ran some profiling on that (incomplete) patch, it's definitely faster. The 3.1 betas are already faster than 3.0.x anyway so we should see some real boosts in performance when moving from 3.0.x...
View ArticleCreating simple admin module help
Dear All,Good day to you. I am just started learning SS about 1 month ago and trying to build a simple admin site module for learning purpose.I am using SS v3.0.5 with CMS. My module layout is look...
View ArticleRe: Creating a new user group?
Check your PHP error logs for anything that would indicate a problem. Also try the new 3.1 beta as this has a much larger collection of bug fixes.Posted to: Creating a new user group? | Show Thread |...
View ArticleRe: Creating a new user group?
3.0.4 had some problems with $allowed_actions, you also can't actually save and publish pages in 3.0.4, so maybe it's the same cause. Try upgrading to 3.0.5Posted to: Creating a new user group? | Show...
View ArticleDo I need to learn PHP to use Silverstripe?
Hi, I am a web designer and have just discovered Silverstripe website after looking up on Google how to add a taxonomy or tag filter capability to my website (to help visitors select or filter down the...
View ArticleSilverStripe chrome extension
Hey EveryoneI've created an extension for Google Chrome to provide quick links to SilverStripes URL variable tools for both v2 and v3If your interested it can be downloaded...
View Article