Re: Urgent cry for help - Page re-ordering bug?: SOLVED
I know the page tree not saving on reorder has been talked about before in the past but I can't remember details.Might want to open a bug report at http://open.silverstripe.org/ with your details and...
View ArticleRe: Not sure what I need
Central image bank - can you not just create a folder in the asset directory for these specific images, than use the UploadField to attach them to the...
View Article[Solved] SS 3.03 - Date format nog working
BlogHolder.ss:$Date.FormatI18N(%e %b %Y)Config:i18n::set_locale('nl_NL');i18n::set_date_format('dd-MM-YYYY');setlocale(LC_ALL, 'nl_NL');setlocale(LC_TIME,...
View ArticleMoving site to a new server
HiI am completely new to SS. I have been tasked to move a SS site to a new server. I have access to ftp and The SSadmin panel.I have copied all files from the existing server to my computerready to...
View Articletemp index.htm page before ss loads
sorry - probably a real simple answer to this. I want to have a seasons greeting image come up prior to loading my silverstripe site.Been playing with .htaccess but cannot get it right - an index.htm...
View ArticleSilverStripe v3.0.x is too slow
I migrated a site for my client from SS v2.4.5 to v3.0.3, but the site is tooo slow on the same hardware (dedicated hosting). The new version is slower 3-6x dependent on page type. For example, when a...
View ArticleHome page product user is not working.
Dear all,I have got problem please find it in the attachment along with this post. Add product user functionality not working from Home page edit in admin panel.Another thing I want to know that how...
View ArticleRe: Strangest Bug I have ever seen
Hi, I think I already had the same kind of error - don't know if it was due to chrome. I remember I solved it writing my conditional query a little differently. Maybe you could try something like this...
View ArticleDuplicate Page in Admin SiteTree
Are there any modules or methods to get this functionality back into SS3?Posted to: Duplicate Page in Admin SiteTree | Show Thread | Post Reply
View ArticleRe: Custom select expression with DataObject::get()?
Thanks, this is what I ended up using. I was just hoping that there is an easier way to add a custom select field.Posted to: Custom select expression with DataObject::get()? | Show Thread | Post Reply
View ArticleRe: SilverStripe v3.0.x is too slow
Hi there,Have you tried profiling any of the requests to see where the slowness is coming from?There's xdebug and xhprof for PHP that might be useful for tracing.Thanks,SeanPosted to: SilverStripe...
View ArticleRe: php code into silverstripe
There is no way to add PHP into the admin panel directly from a users perspective, you will have to convert the PHP scripts into page types yourself, as per SilverStripe documentation.What sort of...
View ArticleLatest News problems
Hello,I have to get the latest post from ALL holders and show them on the homepage.The posts have a checkbox that defines if it will be on the news or not.Tought it was easy, but I don't know how to...
View ArticleRe: Latest News problems
Hi, I would try something like this (not tested) :function ultimos() { $holders = Holder::get(); $uncheckedpostslist = new ArrayList(); foreach($holders as $holdersItem) {...
View ArticleBackground Stretch
hellois it possible to integrate a Background Image with a JavaScript?like:http://srobbin.com/jquery-plugins/backstretch/thanks for your helpPosted to: Background Stretch | Show Thread | Post Reply
View ArticleShow dataobjects in dropdown menu
He guys,I have a dropdown menu and want to show some dataobject elements in the submenu in SS2.4, like this way:=== Menu1 (Page) === Menu2 (Page) === Menu3 (Page)------Submenu1 (menuelement extends...
View ArticleRe: php code into silverstripe
If you use an ModelAdmin for your DataObject, you can replace it with the RemodelAdmin.With this module, you can include in the ModelAdminPanel buttons witch call an php-file:In...
View ArticleRe: Error browsing files in BE on WinServer platform
Hi!I currently noticed that when sorting the files grid by one column first (click on that header), browsing the files works just fine... :-SHas anyone else experienced something like this? Or can...
View ArticleRe: Latest News problems
I've changed the "$holders = Holder::get(); " to "$holders = Categoria::get(); " which is my holder page type,then used <% control ultimos %> to show. that returned me an error:Server errorSorry,...
View ArticleRe: Latest News problems
First question: are you using SS3+ or a previous version ?Posted to: Latest News problems | Show Thread | Post Reply
View Article