Re: Subscribe no longer working on this forum?
Thanks Ingo,I contacted SilverStripe using the feedback option at the bottom of the page. Must have been around the 15th MartinePosted to: Subscribe no longer working on this forum? | Show Thread |...
View ArticleMax upload file size
Hi guys,I'm running Silverstripe 3.0.5 with no problems so far. I have just added a upload field and it says the file exceeds 2M. I researched solutions and found that you need to edit the php.ini file...
View ArticleIs silverstripe suitable for large CRM system
Hi all,I have been working with Silverstripe for three years now and love it. I have a client that has an existing CRM system that we are looking to rebuild. The code is a bit antiquated and still...
View ArticleRe: SilverStripe TextMate Bundle
Is there a newer one somewhere? This one works, mostly, but doesn't seem to highlight syntax properly for SilverStripe v3.0+.BobPosted to: SilverStripe TextMate Bundle | Show Thread | Post Reply
View ArticleRe: SilverStripe TextMate Bundle
Hi Bob, apparently not. TextMate stopped being used by the SS guys a few years ago. They are using something else now, so have probably written a plugin for their new chosen text editor. I'd jump on...
View ArticleEx Display Kitchens Ashford
Ex Display Kitchens Ashford Try looking at www.kitchendesign1.co.uk. They have some amazing designs and prices. Ex Display Kitchens Ashford....
View ArticleExtend/Decorate getFormattedImage (Image class)
Hi all. I've got a site built from SS 2.4.5 here.I'm looking into separating the CMS and Frontend to different servers and syncing assets uploaded via the CMS "Files and Images" section with the...
View ArticleRe: Extend/Decorate getFormattedImage (Image class)
I do something similar, but with Image->cachedFilename(). Maybe you can implement your functionality there.https://github.com/JayDevlin/silverstripe-module-rsimage (branch 2.4)Posted to:...
View ArticlePrev/Next when ordered by DATE?
Hi, I have news articles ordered by their date, all working fine.static $db = array(   'Date' => 'Date',   );But on each article I want a next/previous buttons, but this function below isn't working...
View ArticleCheckboxSetField to show dataobjects on a page in ss 3.0
On a previous site using silverstripe 2.4 i followed a tutorial to allow team profiles to be administered in the model admin which then allowed me to go into the admin and select the profiles per page...
View ArticleRe: Max upload file size
I put a php.ini file in the framework directory and it made the upload file work, but broke other things.The support community sucks for Silverstripe. I never get a reply on here.Posted to: Max upload...
View ArticleRe: Prev/Next when ordered by DATE?
Assuming NewsArticle is a DataObject and not a SiteTree/Page subclass, you can try this:public function NextArticle() { $next = DataObject::get("NewsArticle","NewsArticle.Date <= '{$this->Date}'...
View ArticleRe: Prev/Next when ordered by DATE?
Thank you so much for replying Theak. NewsArticle is in fact a Page subclass. Also, I don't understand why my code doesn't work, is there anything wrong with it? Good advise though, what changes would...
View ArticleRe: Extend/Decorate getFormattedImage (Image class)
Thanks mate. I've had a play around with your code.Just so we are on the same page here, I am looking to change the default behavior of images uploaded via the "Files and Images" section of the CMS....
View ArticleRe: Site Search including Dataobjects
bump bump..Posted to: Site Search including Dataobjects | Show Thread | Post Reply
View ArticleCheap Kitchen Birmingham
Cheap Kitchen Birmingham Try looking at www.kitchendesign1.co.uk. They have some amazing designs and prices. Cheap Kitchen BirminghamPosted to: Cheap Kitchen Birmingham | Show Thread | Post Reply
View ArticleRe: Prev/Next when ordered by DATE?
The main thing I spotted was that you weren't quoting the date in the 'NextArticle' and 'PreviousArticle' functions. The DataObject::get() syntax is deprecated in SS 3, so try this instead:public...
View ArticleRe: Extend/Decorate getFormattedImage (Image class)
Sure. If a user uploads an image, the class name of the image will automatically be changed to RSImage -- so you can overload a method of the image class. I think that's what you want to do. You...
View ArticleRe: Max upload file size
Firstly do a phpinfo(); and check that your php.ini values are being applied. Also, when you create your uploadfield, try the...
View ArticleRe: Prev/Next when ordered by DATE?
Thanks so much!Your code works great, I just had to switch the Previous/Next functions 'GreaterThan/LessThan' and change the sort order a little bit ('next' being older articles).public function...
View Article