Re: Article Holder, Article Page Problem
OKAY I FOUND THE SOLUTION! I UPDATED SS TO VERSION 2.4.9 IT WORKS NOW PERFECT! SHIT HAPPENS ;)Posted to: Article Holder, Article Page Problem | Show Thread | Post Reply
View ArticleDisplaying Member profiles
I'm trying to get my registered Members from the database and display them in the frontend.I extended it using this class<?phpclass MyMember extends DataExtension {Â Â Â static $db = array(...
View ArticleRe: UploadField for Image and File
Thanks,yeah my teammate told me the same thinggot an error before,guess it wasn't because of that.my badPosted to: UploadField for Image and File | Show Thread | Post Reply
View ArticleRe: Drag and drop reordering of SS3 Grid Field
Hi,i have installed this plugin but i dont have an idea how i can use this module.I try it on an example from the official tutorial...
View ArticleRe: Drag and drop reordering of SS3 Grid Field
Hi LuiLoop. Setting up the SortableGridField is pretty easy. Here's an exampleIn your DataObject class, you need to first create a column to sort by. I usually use something simple like SortID.class...
View ArticleRe: Displaying Member profiles
Hi DairyPrincessThanks to SilverStripe, there's no need to setup a custom function to retrieve the picture. You'll also want to use DataList instead of DataObject::get() if this is a SS v3.0...
View ArticleRe: Displaying Member profiles
thanks for the reply!I tried your code but I'm getting a server errorI am using the 3.0.3 versionsomehow I'm not getting errors about deprecated classesnot sure why hahaI just find out that something's...
View ArticleRe: Displaying Member profiles
There was a typo in my code (fixed now) i had DataList::create('Members'), when it should probably be DataList::create('Member');if you still get errors after making that change let me know what they...
View ArticleRe: Order tabs in backend
Hi BereuseiI believe you can control the order using the static variable $menu_priority.class Products extends ModelAdmin {public static $menu_priority = 1;}class StaffMembers extends ModelAdmin...
View ArticleRe: Displaying Member profiles
Thank you!It works now I'm sorry but how do I display the members that belong to a specific group?ex: all of the members that belong to AdministratorsPosted to: Displaying Member profiles | Show Thread...
View ArticleBack links
Dear Friends,I recently found a USA based website have a PR4, giving a back links from articles.bizworldusa.com, forums.bizworldusa.com and blogs.bizworldusa.com. If you are interested to get a back...
View ArticleRe: Drag and drop reordering of SS3 Grid Field
thx, now it worksBut i have a litle second question. How i can create a DropDownField in my Gridfield - i cant find any documentationPosted to: Drag and drop reordering of SS3 Grid Field | Show Thread...
View ArticleRe: SilverStripe adds slashes to my anchors
thx a lotSSViewer::setOption('rewriteHashlinks', false); this works for mePosted to: SilverStripe adds slashes to my anchors | Show Thread | Post Reply
View ArticleHow to get Model Admin without Table , just to edit one Object !
Hi, I am trying to create a ModelAdmin section that edits One Object instead of having a table of Objects . If we look at the Settings Section/ModelAdmin then that is exactly what I want, When I click...
View ArticleRe: Displaying Member profiles
If you want to display members from a certain group, I use something like$group = DataList::create('Group')->byID('x') //x is the ID of the group you wantreturn $group->Members();or you could use...
View ArticleRe: Displaying Member profiles
works great! thanks so much Posted to: Displaying Member profiles | Show Thread | Post Reply
View ArticleRe: Order tabs in backend
Great, thanks. This is what I was looking for.Posted to: Order tabs in backend | Show Thread | Post Reply
View ArticleFileupload stooped working in 2.4.5
Hi there,I have encountered a strange problem with the file upload under "Files & Images". It suddenly stopped working now shows "Error 324 (net::ERR_EMPTY_RESPONSE)" in the frame in Chrome after...
View ArticleRe: Drag and drop reordering of SS3 Grid Field
Hi LuiLoop,thanks for this post was very helpfull just now... with the dropdown list, i discovered i could use an Enum data type.worked for what i needed, let me know if that works for you or if you...
View ArticleCSVBulkImporter inserting empty relational object with relational callback...
I've written three or four DataObject models as well as using the ModelAdmin and CSVBulkImporter to import data for my new models. I've seem to run across and issue that doesn't make any sense to...
View Article