Questions tagged [silverstripe]

Silverstripe is a free and open source PHP web development framework and Content Management System (CMS) based on the eponymous Silverstripe Framework.

Silverstripe CMS is a free and open source PHP web development framework, primarily developed and maintained by the New Zealand based company of the same name (Silverstripe Ltd.).

Silverstripe CMS is notable for being the first open source web application to become Microsoft Certified and for winning a number of awards for CMS usability.

Silverstripe CMS is built on the Silverstripe Framework (previously called Sapphire), an object-oriented PHP framework designed to let users focus on their data and business logic. The framework enables developers to easily extend the CMS.

Development Resources

The following lists contain development resources for Silverstripe programmers.

Official

Resources sponsored or hosted by Silverstripe Ltd.:

The book "SilverStripe: The Complete Guide to CMS Development" is also available from Amazon.com.

Requirements

The follow requirements are listed on the server requirements documentation page:

PHP

  • PHP 5.3.3+ (incl. PHP 7)
  • The following modules: dom, gd2, fileinfo, hash, iconv, mbstring, mysqli (or other database driver), session, simplexml, tokenizer, xml
  • Relevant database module (mysql, pgsql, sqlsrv, etc)
  • 48 MB memory (minimum)
  • php-intl extension (Silverstripe 4 only)

Database

  • MySQL 5.0+ (built in support)
  • PostgreSQL 8.3+ (with a module)
  • SQLite 3+ (with a module)
  • SQL Server 2008 (with a module)

HTTP Server

  • Apache 2.0+ with mod_rewrite and "AllowOverride All" set (preferred)
  • IIS 7+ with URL Rewrite Module
  • Lighttpd and Nginx possible but require knowledge for how to configure them
2284 questions
0
votes
1 answer

Silverstripe 4.6 ModelAdmin dynamic $menu_Title

Is it possible to dynamically change the ModelAdmins $menu_Title to e.g. Member::currentUser()->Name ? How ? Thanks.
Sepp Hofer
  • 217
  • 2
  • 12
0
votes
1 answer

Silverstripe 4.4 Browse Files in CMS / Safari / Mac / OS 10.14

How can i fix this problem? The Browse - Button in SS 4.4 (CMS / Files / Upload - Button) does not work when using Safari 14.0.1 on Mac OS 10.14. The popup - window to select files for upload does not appear. No javascript errors, no PHP…
Sepp Hofer
  • 217
  • 2
  • 12
0
votes
1 answer

Reformat code of TinyMCE in Silverstripe

When i'm putting some HTML/avascript code in TinyMCE, the code reformats or disappears after saving the page. I want to disable this. Is there any way to stop the reformatting?
quanto
  • 59
  • 5
0
votes
1 answer

New Installation of SilverStripe 4 InjectorNotFoundException

I'm using Vagrant/Homestead/Virtualbox ~ Vagrant version 2.2.10 | Homestead 10.1.1 | Virtualbox 5.2 I'm running the SilverStripe installation on PHP7.4 and my PHP CLI version is also PHP7.4 Following the SilverStripe installation instructions I've…
0
votes
1 answer

SilverStripe 4 GraphQL and GraphiQL UI not working even the procedures were followed properly from the documentation

I'm using SilverStripe 4 and applied a plug-in using composer require silverstripe/graphql. After following the instructions from the document of silverstripe/graphql from this source https://github.com/silverstripe/silverstripe-graphql, I can't…
Suomynona
  • 639
  • 1
  • 5
  • 20
0
votes
1 answer

SilverStripe 4 (cms4 / SS4): How to make Next / Previous navigation of sibling pages?

I'm looking to create a simple Next and Previous navigation on sibling pages to allow the user to click through them. They are all on a single level. I've found some docs and an add-on (link below) but these are aimed at displaying data lists no…
pinkp
  • 445
  • 2
  • 12
  • 30
0
votes
1 answer

How to add right panel as help content in Silverstripe CMS admin

We've got a project which needs in CMS help for some users, to help guide them through various complex processes. This would be for various ModelAdmin screens. Ideally we want an onscreen help & were wondering whether we can use the right "preview"…
BaronGrivet
  • 4,364
  • 5
  • 37
  • 52
0
votes
1 answer

Silverstripe 3: Override TinyMCE styles

I want to add a Youtube video to my site, which I can do via the "Content" field, and then pressing the "Insert Media" button, which is based on TinyMCE. It then asks me for the video URL, details & dimensions, etc. However, I want to add some…
0
votes
2 answers

Syntax mode for Coda not working - Regex issue

I have the following SyntaxDefinition.xml file that I am using to create syntax highlighting for SilverStripe(.ss) files. However, I get a regex error with the following code:
Te Riu Warren
  • 229
  • 2
  • 5
  • 13
0
votes
1 answer

Create email server with SilverStripe

I know I can send emails from a custom domain in Silverstripe like from 'user1@mydomain.org', but I am wondering is there a way to create email server using Silverstripe which will allow me to register new email addresses for users using the…
Mr.Fabulous
  • 116
  • 8
0
votes
1 answer

How to show manually published owned objects updated non-draft status on save?

this question explains how to add code to publish owned objects from objects which are not Versioned. Using basically the same code without the owner part (because we are using extended DataObjects not Extensions), the owned objects are published…
AlphaCactus
  • 418
  • 3
  • 8
0
votes
1 answer

How to filter by tag in Silverstripe, when using tagfield module?

I have the following page type in Silverstripe which has many CategoryTags. CategoryTag is a dataobject created with silverstripe-tagfield module. class ArticlePage extends Page { ... private static $many_many = array( 'CategoryTags'…
SilentDesigns
  • 505
  • 2
  • 7
  • 22
0
votes
1 answer

Silverstripe 4 admin add new FormField template not found error

I have tried to add a new FormField to silverstripe 4 admin called "AdminButtonGroupField". But it gives me a error like this, [User Warning] None of the following templates could be found: AdminButtonGroupField in themes "Array ( [0] =>…
kosala manojeewa
  • 329
  • 3
  • 11
0
votes
1 answer

Silverstripe won't pick up Content.ss file on server but no problem locally

I am building a module for SilverStripe. I am simply extending LeftAndMain.php and showing a template by placing the template file at templates/module/namespace/MyClass_Content.ss It is working like a charm locally and I can see all the changes I am…
Rohan
  • 13,308
  • 21
  • 81
  • 154
0
votes
1 answer

How to set a property in SiteConfig in silverstripe?

I have a created a CustomSiteConfig in silverstripe using this guide -> https://docs.silverstripe.org/en/4/developer_guides/configuration/siteconfig/#siteconfig This is how it looks like:
Rohan
  • 13,308
  • 21
  • 81
  • 154
1 2 3
99
100