Re: PHPStorm suppport
Wiew, no kiddin...Heading over there right now! Posted to: PHPStorm suppport | Show Thread | Post Reply
View ArticleRe: Meta tags
I think it should be $MetaTags (camelcase), but apart from that: do you mean something is actually displayed at the top of your page on the website? In that case take a look at the HTML source of your...
View ArticleRe: Meta tags
Or maybe you mean the fact that using Custom meta tags in the cms end up on the page?Posted to: Meta tags | Show Thread | Post Reply
View ArticleRe: How does 'search' function work?
Thank you very much for your response MartimizThe search function didn't work all yesterday's evening (tried a few IPs), so this morning I was determined to fix it (thanks again for your tips), but to...
View ArticleRe: Silverstripe without database?
Depends if you would accept http://sqlite.org/?"a self-contained, serverless, zero-configuration, transactional SQL database engine"you can install an ss module to use the sqlite.dll is often included...
View ArticleRe: Meta tags
I type meta tags into the CMS and it shows up at the top of my page.They were not showing on the page prior to me adding $metatags so I added it to my .ss pages in themes in the head section and they...
View ArticleRe: UploadField thumbnails?
Think the Uploads folder always exists by default. See if setFolderName below helps.function getCMSFields() { $fields = parent::getCMSFields(); // Image $imageField = new...
View Article->setFolderName with Page Title
I have multiple gallery pages (OurWorkPage) and would like to have a distinct setFolderName for each one. I've successfully added the ID to the folder name, but what I really want is the Title or...
View ArticleRe: Permissions Problem? Fatal Error Class Doesn't Exist..... BS!
got the opening <?php tag in the file? that gets me sometimesPosted to: Permissions Problem? Fatal Error Class Doesn't Exist..... BS! | Show Thread | Post Reply
View ArticleRe: ->setFolderName with Page Title
Something like this?$imageField->setFoldername($this->OurWorkPage()->URLSegment);Posted to: ->setFolderName with Page Title | Show Thread | Post Reply
View ArticleOverridden Image class DataObject member cannot see any images uploaded via...
Hi,I have extended the Image class to add some utility functions to generate thumbnails. However it seems that when attaching images to the DataObject this image belongs to, I cannot see any images...
View ArticleRe: ->setFolderName with Page Title
That worked $imageField->setFolderName($this->OurWorkPage()->MenuTitle.'-Work-Images');Thank you!Posted to: ->setFolderName with Page Title | Show Thread | Post Reply
View ArticleRe: Search fields and DataObjects
Hi Rodskagg,Yes, unfortunately the default search doesn't extend to DataObjects. The main two choices in SS3 are Solr and Sphinx. I haven't used Sphinx but Solr is excellent - you can get the latest...
View ArticleSitetree Inherit data to all pages.
I've edited the page.php to thisclass Page extends SiteTree { static $db = array( 'LinkPage' => 'Text' ); static $has_one = array( 'LinkImage' => 'Image',...
View ArticleRe: Choosing a URL from sitetree
Hey,Im using the SiteTree to allow the user to choose a page on the site to create a link.The Page.php has this codepublic static $has_one = array( "CaptionOneLink" => "SiteTree"...
View ArticleSS 3.0.5 valid_elements question, and Layout
I'm trying to get started with SilverStripe and trying to understand how best to work with the TinyMCE editor and how best to start adding content.1. Using SS Version 3.0.5 and I've discovered that the...
View ArticleRe: SS 3.0.5 valid_elements question, and Layout
Hi Delyk!While I can't offer advice on getting the "valid_elements" working correctly, I will offer some advice when it comes to working with SilverStripe. Don't use the CMS to manage layout, its a...
View ArticleSilverstripe vs Joomla
Hi, has anyone used Joomla, how does it compare in terms of speed? (and other aspects, if you feel like sharing)I'm looking for a CMS and so far the only well known CMSes that are framework like and...
View Articledefault member langauge
Hi,In some of my SS3 site, when i create a new member, the default member langauge is 'Afrikaans'It would be much easier if it was always set to english.my site config include this:...
View Articless3 $summary_fields with date fields
I've noticed that summary fields doesn't seem to work when setting the title of a date field.public static $summary_fields = array( 'Member.FirstName' => 'First Name', 'Member.Surname' =>...
View Article