https://www.silverstripe.org/community/forums/rss Member Profile: user relationship form null ID https://www.silverstripe.org/community/forums/all-other-modules/show/122393 <p>Fatal error: Call to a member function Services() on null</p><p><strong>it's correct?<br>Member::get()-&gt;byId($this-&gt;urlParams['ID'])-&gt;Services()-&gt;map('Title','Title') <br>thanks for the help!</strong></p><p></p><div class="codesnippet"><p>class MemberProfileViewer extends Page_Controller {</p><p> // ...</p><p>public function form() {</p><p> $fields = new FieldList(<br> CheckboxSetField::create(<br> $name = "ServiceID",<br> $title = "Select",<br> $source = Member::get()-&gt;byId($this-&gt;urlParams['ID'])-&gt;Services()-&gt;map('Title','Title')<br> ),<br> )</p><p> $actions = FieldList::create(<br> FormAction::create('form', 'Send')<br> -&gt;setUseButtonTag(true)<br> -&gt;addExtraClass('btn btn-primary')<br> );</p><p> $validator = new RequiredFields('ServiceID');</p><p> $form = new Form($this, 'form', $fields, $actions, $validator);<br> $form-&gt;setFormMethod('POST', true);<br> return $form;<br>}</p><p>public function doform($data, $form) {<br> $form-&gt;sessionMessage(<br> "Thank you, you will be contacted as soon as possible by our consultant.", 'good'<br> );</p><p> $submission = new RequestForm();<br> $form-&gt;saveInto($submission);<br> $submission-&gt;write();</p><p> return $this-&gt;redirectBack();</p><p>}</p></div> <br> <p data-swiftype-index="false">Posted to: Member Profile: user relationship form null ID | <a href="https://www.silverstripe.org/community/forums/all-other-modules/show/122393" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/all-other-modules/reply/122393" class="replyLink">Post Reply</a></p> Tue, 03 Oct 2017 05:23:22 +1300 https://www.silverstripe.org/community/forums/all-other-modules/show/122393 injecting a new method into SiteTree to add functionality to page_type_classes()?? https://www.silverstripe.org/community/forums/data-model-questions/show/122392 <p>Morning, injecting a new method into SiteTree to add functionality to page_type_classes(). For some reason CMSMain::PageTypes() is now returning the name of the injector as the class name for all page types?</p> <br /> <p data-swiftype-index="false">Posted to: injecting a new method into SiteTree to add functionality to page_type_classes()?? | <a href="https://www.silverstripe.org/community/forums/data-model-questions/show/122392" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/data-model-questions/reply/122392" class="replyLink">Post Reply</a></p> Mon, 02 Oct 2017 23:34:46 +1300 https://www.silverstripe.org/community/forums/data-model-questions/show/122392 TinyMCE not defined Silverstripe 3.6.2 or 4 (beta 3) https://www.silverstripe.org/community/forums/general-questions/show/122379 <p>I installed SilverStripe on my shared server and everything went fine, requirements met, etc. </p><p>Right after the install, I deleted the install files and tried to edit my new site. Everything works fine in the back-end except when I want to edit a page. Here's an idea of what I get : </p><p><a href="https://imgur.com/a/pQ1JJ">https://imgur.com/a/pQ1JJ</a> </p><p>I don't bother with .map files not loading since I looked on the SS official demo site and it fails to load to same files. So the problem seems to come with the tinymce-cms-17db2fb8cf.js file. However I can't see what's wrong with it... The file's there and permissions are OK... </p><p>The URL of this site is <a href="http://www.steveforest.space/">http://www.steveforest.space</a> </p><p>Thanks</p> <br /> <p data-swiftype-index="false">Posted to: TinyMCE not defined Silverstripe 3.6.2 or 4 (beta 3) | <a href="https://www.silverstripe.org/community/forums/general-questions/show/122379" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/122379" class="replyLink">Post Reply</a></p> Mon, 02 Oct 2017 04:51:52 +1300 https://www.silverstripe.org/community/forums/general-questions/show/122379 Embded PDF's https://www.silverstripe.org/community/forums/general-questions/show/122299 <p>So I am trying to embed a PDF onto a page and it will just not work. For instance, I go into the HTML editor and directly add "&lt;embed src="study/sample.pdf" type="application/pdf" height="300px" width="100%"&gt;". For some reason when I hit save it gets changed to "&lt;p&gt;&lt;object width="100%" height="300px" data="study/sample.pdf" type="application/x-shockwave-flash"&gt;&lt;param name="src" value="study/sample.pdf" /&gt;&lt;/object&gt;&lt;/p&gt;". </p><p>I'm unsure as to why it is being changed to "application/x-shockwave-flash". I have application/pdf set in my mime.types. What am I missing? Do I not have an appropriate PDF viewer, so it's defaulting to shockwave? What can I do to fix this issue. </p><p>OS: Devuan jessie (debian spinoff without system.d)</p> <br /> <p data-swiftype-index="false">Posted to: Embded PDF&#039;s | <a href="https://www.silverstripe.org/community/forums/general-questions/show/122299" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/122299" class="replyLink">Post Reply</a></p> Sat, 30 Sep 2017 04:07:41 +1300 https://www.silverstripe.org/community/forums/general-questions/show/122299 Re: Blank gray screen when creating new pages and GridField Items https://www.silverstripe.org/community/forums/general-questions/show/122097#post424590 <p>Some times I use .htaccess code to display error on my local development machine and it's work for me. <br /><div class="codesnippet"><p>php_flag display_startup_errors on <br />php_flag display_errors on <br />php_flag html_errors on</p></div> </p><p>Put This code before silverstripe code start. <br />Thanks for <a href="https://stackoverflow.com/questions/6127980/enabling-error-display-in-php-via-htaccess-only#6128036">this post</a> on stackoverflow</p> <br /> <p data-swiftype-index="false">Posted to: Blank gray screen when creating new pages and GridField Items | <a href="https://www.silverstripe.org/community/forums/general-questions/show/122097#post424590" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/122097" class="replyLink">Post Reply</a></p> Fri, 29 Sep 2017 17:38:00 +1300 https://www.silverstripe.org/community/forums/general-questions/show/122097#post424590 Friendly URLs Install Error 4.0.0 Beta 3 https://www.silverstripe.org/community/forums/installing-silverstripe/show/122292 <p>I'm just installing SilverStripe. I had 3.6.2 working on a Windows 2016 server, PHP 7.1 and Apache 2.4. I decided to try out 4.0.0 Beta 3, so I deleted 3.6.2 and started from scratch, same directory name, everything else the same. The install script for the beta said that friendly urls weren't working, check mod_rewrite and so on. I re-checked, and it was still setup properly in Apache. So I deleted the beta and reinstalled 3.6.2 from scratch again, same directory, and it works fine. I don't think I'll continue with the beta, but just wanted to let someone know.</p> <br /> <p data-swiftype-index="false">Posted to: Friendly URLs Install Error 4.0.0 Beta 3 | <a href="https://www.silverstripe.org/community/forums/installing-silverstripe/show/122292" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/installing-silverstripe/reply/122292" class="replyLink">Post Reply</a></p> Fri, 29 Sep 2017 06:50:59 +1300 https://www.silverstripe.org/community/forums/installing-silverstripe/show/122292 Form Validation: Require that one item of a SelectionGroup is selected https://www.silverstripe.org/community/forums/form-questions/show/122286 <p>I want customers to rate a product from 1-4. I've made a form with a SelectionGroup containing 4 SelectionGroup_Item fields. I'm trying to validate if the customer has made a selection. Server-side it seems to work, the form only goes through when an option is selected. But no error-message is shown if none are selected, so the customer is left in the dark as to why their form wasn't sent. </p><p>Any ideas? Thanks very much! </p><p><div class="codesnippet"><p>$gradeBoxes = array( <br /> new SelectionGroup_Item($this-&gt;Note4, '', $this-&gt;Note4), <br /> new SelectionGroup_Item($this-&gt;Note3, '', $this-&gt;Note3), <br /> new SelectionGroup_Item($this-&gt;Note2, '', $this-&gt;Note2), <br /> new SelectionGroup_Item($this-&gt;Note1, '', $this-&gt;Note1), <br />); <br />$gradeField = new SelectionGroup('Grade', $gradeBoxes); <br />$gradeField-&gt;setCustomValidationMessage('Please select one.'); <br />$fields-&gt;push($gradeField); <br />$required = new RequiredFields(array('Grade')); <br />$form = new Form($this, 'FeedbackForm', $fields, $actions, $required);</p></div></p> <br /> <p data-swiftype-index="false">Posted to: Form Validation: Require that one item of a SelectionGroup is selected | <a href="https://www.silverstripe.org/community/forums/form-questions/show/122286" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/form-questions/reply/122286" class="replyLink">Post Reply</a></p> Fri, 29 Sep 2017 02:52:44 +1300 https://www.silverstripe.org/community/forums/form-questions/show/122286 adding custom code-blocks? https://www.silverstripe.org/community/forums/general-questions/show/122285 <p>hi there. </p><p>can i build and add custom (HTML)blocks to the left sidebar and drag&amp;drop them to build up my site? just like the standard blocks e.g. gallery, image, video etc. </p><p>and can i make a header-backgroundimage editable (not inside the 'standard' content box)? or would i have to use TWO content-boxes on the same page? is that possible at all? </p><p>thanks and greetings, michael</p> <br /> <p data-swiftype-index="false">Posted to: adding custom code-blocks? | <a href="https://www.silverstripe.org/community/forums/general-questions/show/122285" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/122285" class="replyLink">Post Reply</a></p> Fri, 29 Sep 2017 00:42:18 +1300 https://www.silverstripe.org/community/forums/general-questions/show/122285 Re: New Features https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/show/7323?start=32#post424575 <p>Hello, thanks for sharing this </p><p>_______________________ <br />24*7 <a href="https://www.ozassignmenthelp.com.au/">assignment help</a></p> <br /> <p data-swiftype-index="false">Posted to: New Features | <a href="https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/show/7323?start=32#post424575" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/reply/7323" class="replyLink">Post Reply</a></p> Thu, 28 Sep 2017 21:38:41 +1300 https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/show/7323?start=32#post424575 Re: File Upload Error with Video Files Over 30M https://www.silverstripe.org/community/forums/customising-the-cms/show/120829#post424564 <p>I'm getting the same error when trying to upload the MP4 files, some of them are around 80MB. Does anyone know how to fix this issue?</p> <br /> <p data-swiftype-index="false">Posted to: File Upload Error with Video Files Over 30M | <a href="https://www.silverstripe.org/community/forums/customising-the-cms/show/120829#post424564" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/customising-the-cms/reply/120829" class="replyLink">Post Reply</a></p> Thu, 28 Sep 2017 12:48:15 +1300 https://www.silverstripe.org/community/forums/customising-the-cms/show/120829#post424564 Request taking too long to get processed https://www.silverstripe.org/community/forums/general-questions/show/122265 <p>Hey community. </p><p>I am looking for help here as I couldnt come up with an answer yet. </p><p>I have a site in SilverStripe and the requests are taking too long to get processed. </p><p>When a request is made from the browser , it is in pending status (Browser) like for 7 seconds, and in the server I can see 3 processes running during that period of time: </p><p>/opt/plesk/php/5.3/bin/php-cgi -&gt; CPU = 88.3% <br />/usr/bin/mysqld -&gt; CPU = 12.7% <br />/usr/bin/mysqld (yes .. twice) -&gt; CPU = 12.2% <br />as soon as I get the response back from the server, this processes are down again. </p><p>SilverStripe version = 3.1 <br />Linux Ubuntu 16.04 </p><p>Any help is welcome, I dont know if that is actually a silverstripe issue or maybe some configuration server issue.</p> <br /> <p data-swiftype-index="false">Posted to: Request taking too long to get processed | <a href="https://www.silverstripe.org/community/forums/general-questions/show/122265" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/122265" class="replyLink">Post Reply</a></p> Wed, 27 Sep 2017 07:29:39 +1300 https://www.silverstripe.org/community/forums/general-questions/show/122265 Re: Blank gray screen when creating new pages and GridField Items https://www.silverstripe.org/community/forums/general-questions/show/122097#post424552 <p>I have both silverstripe and PHP logging enabled, I think. Still no errors. </p><p>IN _config.php: <br />Director::set_environment_type("dev"); <br />if(!Director::isDev()) { <br /> // log errors and warnings <br /> SS_Log::add_writer(new SS_LogFileWriter('../silverstripe-errors-warnings.log'), SS_Log::WARN, '&lt;='); </p><p> // or just errors <br /> SS_Log::add_writer(new SS_LogFileWriter('../silverstripe-errors.log'), SS_Log::ERR); </p><p> // or notices (e.g. for Deprecation Notifications) <br /> SS_Log::add_writer(new SS_LogFileWriter('../silverstripe-errors-notices.log'), SS_Log::NOTICE); <br />} </p><p>my php.ini in /etc/php/7.0/apache2/ <br />log_errors = On <br />error_log = /var/log/php_errors.log <br />error_reporting = E_ALL | E_STRICT</p> <br /> <p data-swiftype-index="false">Posted to: Blank gray screen when creating new pages and GridField Items | <a href="https://www.silverstripe.org/community/forums/general-questions/show/122097#post424552" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/122097" class="replyLink">Post Reply</a></p> Wed, 27 Sep 2017 01:48:04 +1300 https://www.silverstripe.org/community/forums/general-questions/show/122097#post424552 Re: Redirect to https adds "/framework/main.php?url=/" in the url https://www.silverstripe.org/community/forums/general-questions/show/121746#post424551 <p>Forgot to reply to my own post :).</p><p>It looks like the .htaccess content I've posted was the way to solve it. I guess there is some kind of browser cache (even tho I cleared them all). Or even on SS I don't know. I noticed that some browsers (I'll go deeper : some sessions on chrome ^^') were redirecting to the right URL, but my main chrome session didn't... So I left it that way and a few days later, even my session did redirect to the right URL.</p><p>So the part to add at the top of your .htaccess is definitely this : </p><p></p><div class="codesnippet"><p>RewriteEngine On<br>RewriteCond %{HTTPS} off<br>RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]</p></div> <br> <p data-swiftype-index="false">Posted to: Redirect to https adds "/framework/main.php?url=/" in the url | <a href="https://www.silverstripe.org/community/forums/general-questions/show/121746#post424551" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/121746" class="replyLink">Post Reply</a></p> Wed, 27 Sep 2017 01:45:01 +1300 https://www.silverstripe.org/community/forums/general-questions/show/121746#post424551 Re: Redirect to https adds "/framework/main.php?url=/" in the url https://www.silverstripe.org/community/forums/general-questions/show/121746#post424550 <p>When using: </p><p>Director::forceSSL(); <br />Director::forceWWW(); </p><p>Or htaccess conditions then going to a URL the first time it will always add "/framework/main.php?url=/" to the end</p> <br /> <p data-swiftype-index="false">Posted to: Redirect to https adds &quot;/framework/main.php?url=/&quot; in the url | <a href="https://www.silverstripe.org/community/forums/general-questions/show/121746#post424550" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/121746" class="replyLink">Post Reply</a></p> Wed, 27 Sep 2017 01:31:19 +1300 https://www.silverstripe.org/community/forums/general-questions/show/121746#post424550 Re: Blank gray screen when creating new pages and GridField Items https://www.silverstripe.org/community/forums/general-questions/show/122097#post424549 <p>Have you checked your log file for error. try <a href="https://docs.silverstripe.org/en/3/developer_guides/debugging/error_handling/">Silverstripe Error Handling</a> to locate the exact error.</p> <br /> <p data-swiftype-index="false">Posted to: Blank gray screen when creating new pages and GridField Items | <a href="https://www.silverstripe.org/community/forums/general-questions/show/122097#post424549" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/122097" class="replyLink">Post Reply</a></p> Tue, 26 Sep 2017 23:55:30 +1300 https://www.silverstripe.org/community/forums/general-questions/show/122097#post424549 Re: Redirect to https adds "/framework/main.php?url=/" in the url https://www.silverstripe.org/community/forums/general-questions/show/121746#post424548 <p>In mysite/_config.php place the below code. <br /><div class="codesnippet"><p>//Force SSL <br />Director::forceSSL();</p></div></p> <br /> <p data-swiftype-index="false">Posted to: Redirect to https adds &quot;/framework/main.php?url=/&quot; in the url | <a href="https://www.silverstripe.org/community/forums/general-questions/show/121746#post424548" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/121746" class="replyLink">Post Reply</a></p> Tue, 26 Sep 2017 23:46:22 +1300 https://www.silverstripe.org/community/forums/general-questions/show/121746#post424548 SS 3.6.1 assets directory keeps returning to incorrect permissions. https://www.silverstripe.org/community/forums/hosting-requirements/show/122263 <p>I have a site that worked perfectly on its dev server and then moved to its production server, the assets directory keeps getting its file permissions changed back. Causing 403 errors for uploads (ie I change the permissions and some time later they get reset). </p><p>The webhost ran up another clean install of SS3.6.1 on the same server and it had the same problem. You can not upload images etc. </p><p>The server is currently running: </p><p>SilverStripe 3.6 <br />Apache 2.2 current patch <br />PHP 5.4.5 current security patch <br />MySQL 5.5.57 current patch <br />FreeBSD 10.3 current patch </p><p>The host thought they had fixed it by adding: <br /><div class="codesnippet"><p>umask (022);</p></div> </p><p>To the top of framework/main.php, however this has allowed files to upload through the CMS, but it still shows a 403 error on the front end. </p><p>Never had this issue with getting SS to work on a server before, so wondering if anyone else has encountered it and what you did to rectify it.</p> <br /> <p data-swiftype-index="false">Posted to: SS 3.6.1 assets directory keeps returning to incorrect permissions. | <a href="https://www.silverstripe.org/community/forums/hosting-requirements/show/122263" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/hosting-requirements/reply/122263" class="replyLink">Post Reply</a></p> Tue, 26 Sep 2017 18:25:29 +1300 https://www.silverstripe.org/community/forums/hosting-requirements/show/122263 SS4: Permissions issue with assets on remote server https://www.silverstripe.org/community/forums/general-questions/show/122262 <p>Hey, </p><p>Having an issue with the silverstripe/assets module and unsure if it's just my server being configured incorrectly seeing as no one else seems to be having this issue. <br />After pushing a site to our production server I noticed all published images were getting a 403 Forbidden error. After a lot of digging found this was caused due to the .htaccess file that the module generates being written with a 600 permission. <br />I would have thought at a minimum it would need atleast 640 access? <br />If anyone can give me some guidance on whether this might just be an issue with the module or whether i'm just an idiot it would be much appreciated. </p><p>Thanks in advance.</p> <br /> <p data-swiftype-index="false">Posted to: SS4: Permissions issue with assets on remote server | <a href="https://www.silverstripe.org/community/forums/general-questions/show/122262" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/122262" class="replyLink">Post Reply</a></p> Tue, 26 Sep 2017 16:45:26 +1300 https://www.silverstripe.org/community/forums/general-questions/show/122262 Re: Redirect to https adds "/framework/main.php?url=/" in the url https://www.silverstripe.org/community/forums/general-questions/show/121746#post424545 <p>Did you have any luck with this?</p> <br /> <p data-swiftype-index="false">Posted to: Redirect to https adds &quot;/framework/main.php?url=/&quot; in the url | <a href="https://www.silverstripe.org/community/forums/general-questions/show/121746#post424545" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/121746" class="replyLink">Post Reply</a></p> Tue, 26 Sep 2017 14:59:41 +1300 https://www.silverstripe.org/community/forums/general-questions/show/121746#post424545 Re: Date for 4.0 final? https://www.silverstripe.org/community/forums/upgrading-silverstripe/show/122080#post424544 <p>Hello NicoleW, </p><p>thank's for your answer! <br />I've checked V4 beta 3. There are some issues/remarks. Were can I best report?</p> <br /> <p data-swiftype-index="false">Posted to: Date for 4.0 final? | <a href="https://www.silverstripe.org/community/forums/upgrading-silverstripe/show/122080#post424544" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/upgrading-silverstripe/reply/122080" class="replyLink">Post Reply</a></p> Mon, 25 Sep 2017 20:31:17 +1300 https://www.silverstripe.org/community/forums/upgrading-silverstripe/show/122080#post424544 Re: Silverstripe 4.0.0 Beta 3, Post install warning https://www.silverstripe.org/community/forums/installing-silverstripe/show/122095#post424543 <p>Ok, got it! </p><p>System tries to chmod "assets/.htaccess" to 0600. <br />In fact it is already 0600 but the owner of this (and all other) files of the installation <br />is owned by a "hosting user" != www-data. <br />I could fix it as root user... </p><p>@developers: please take into account, other installations may not have root rights on their hostings...</p> <br /> <p data-swiftype-index="false">Posted to: Silverstripe 4.0.0 Beta 3, Post install warning | <a href="https://www.silverstripe.org/community/forums/installing-silverstripe/show/122095#post424543" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/installing-silverstripe/reply/122095" class="replyLink">Post Reply</a></p> Mon, 25 Sep 2017 20:26:05 +1300 https://www.silverstripe.org/community/forums/installing-silverstripe/show/122095#post424543 How to use Cache for REST API data? https://www.silverstripe.org/community/forums/general-questions/show/122261 <p>Hello all, sorry if this is duplicate question. <br />I wanted to cache api data for improve load time and I also read document <a href="https://docs.silverstripe.org/en/3/developer_guides/performance/partial_caching/">Partial Caching</a>. <br />But I am quite confused with how to apply these steps for data which is return by the api. </p><p>I tried with default example in my Result.ss include. <br /><div class="codesnippet"><p>&lt;% cached %&gt; <br />&lt;% loop $SearchResult %&gt; <br />&lt;div class="item"&gt; <br /> &lt;h2&gt;$Title&lt;/h2&gt; <br /> &lt;p&gt;$StartDate&lt;/p&gt; <br /> &lt;p&gt;$Description&lt;/p&gt; <br />&lt;/div&gt; <br />&lt;% end_loop %&gt; <br />&lt;% end_cached %&gt;</p></div> </p><p>which also store cache on first load but when I try to submit ajax filter form It shows the same record.</p> <br /> <p data-swiftype-index="false">Posted to: How to use Cache for REST API data? | <a href="https://www.silverstripe.org/community/forums/general-questions/show/122261" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/122261" class="replyLink">Post Reply</a></p> Mon, 25 Sep 2017 20:11:51 +1300 https://www.silverstripe.org/community/forums/general-questions/show/122261 https://www.silverstripe.org/community/forums/general-questions/show/122236 <p><a href="http://www.ptmim.org/forums/topic/2017kansas-city-chiefs-live/">Kansas City Chiefs vs Los Angeles Chargers Live</a></p><p><a href="https://www.worldsupporter.org/en/blogs/51547-livekansas-city-chiefs-live">Kansas City Chiefs vs Los Angeles Chargers Live</a></p><p><a href="http://www.himsslearn.org/forum/thread/84390">Kansas City Chiefs vs Los Angeles Chargers Live</a></p><p><a href="http://www.blurb.com/bookstore/invited/7182363/bbeb2cf330a1f351a41a0be48ab42cd4a7039c5d">Kansas City Chiefs vs Los Angeles Chargers Live</a></p><p><a href="https://www.gala-global.org/jobs/wtch%E2%84%A2-cincinnati-bengals-vs-green-bay-packers-live-online-streaming-nfl-football-week-3-0">Bengals vs Packers Live Stream NFL Football</a></p><p><a href="https://www.gala-global.org/jobs/livebengals-vs-packers-live-stream-nfl-football-sep-24th-2017">Bengals vs Packers Live Stream NFL Football</a></p><p><a href="https://www.gala-global.org/jobs/watchnflcincinnati-bengals-vs-green-bay-packers-live-online-streaming-nfl-football-week-3">Bengals vs Packers Game Live</a></p><p><a href="https://www.gala-global.org/jobs/2017-bengals-vs-packers-live-stream-nfl-football-sep-24th-2017">Bengals vs Packers Game Live</a></p><p><a href="https://www.worldsupporter.org/en/blogs/51626-2017kansas-city-chiefs-vs-los-angeles-chargers-live-stream">Kansas City Chiefs vs Los Angeles Chargers Live Stream</a></p><p><a href="http://www.himsslearn.org/forum/thread/84444">Kansas City Chiefs vs Los Angeles Chargers Live Stream</a></p><p><a href="http://www.blurb.com/bookstore/invited/7182428/d2c62dea1ac8c705e307ef9322f656e479525572">Kansas City Chiefs vs Los Angeles Chargers Live Stream</a></p><p><a href="http://www.blurb.com/bookstore/invited/7182420/12ec92e91f6e1d4964d7f417dcaef6f489363c33">Watch Chiefs vs Chargers Online</a></p><p><a href="https://www.gala-global.org/jobs/live-streaming-kansas-city-chiefs-vs-los-angeles-chargers-live">Chiefs vs Chargers Streaming</a></p><p><a href="http://www.himsslearn.org/forum/thread/84482">Watch Chiefs vs Chargers Live</a></p><p><a href="http://www.wsumed.com/forums/topic/tvkansas-city-chiefs-vs-los-angeles-chargers-week-3-game-preview/">watch Chiefs vs Chargers Live</a></p><p><a href="http://www.blurb.com/bookstore/invited/7182482/aec2118f48f36b5ef11a65dea2f67281c11d7274">Chiefs vs Chargers live stream</a></p><p><a href="http://www.blurb.com/bookstore/invited/7182481/5cd31b2333ec069dea395db9fe17ad8596257f6e">Chiefs vs Chargers live stream</a></p><p><a href="http://www.blurb.com/bookstore/invited/7182483/3d105ace7ed2214303ba798d6bfdc0c1e2081332">Chiefs vs Chargers live stream</a></p><p><a href="https://www.worldsupporter.org/en/blogs/51751-online-live">[watch]Kansas City Chiefs vs Los Angeles Chargers Game Live</a></p><p><a href="http://www.himsslearn.org/forum/thread/84507">[watch]Kansas City Chiefs vs Los Angeles Chargers Game Live</a></p><p><a href="https://www.gala-global.org/jobs/2017live-streamingkansas-city-chiefs-vs-los-angeles-chargers-nfl">[watch]Kansas City Chiefs vs Los Angeles Chargers Game Live</a></p><p><a href="http://www.blurb.com/bookstore/invited/7182529/4fee2390873737d7aa41f42bec6c21341be5e159">[watch]Kansas City Chiefs vs Los Angeles Chargers Game Live</a></p> <br> <p data-swiftype-index="false">Posted to: | <a href="https://www.silverstripe.org/community/forums/general-questions/show/122236" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/122236" class="replyLink">Post Reply</a></p> Mon, 25 Sep 2017 08:34:01 +1300 https://www.silverstripe.org/community/forums/general-questions/show/122236 Re: How to translate fields labels https://www.silverstripe.org/community/forums/general-questions/show/14254?start=8#post424382 <p>A note to self (as I have tried to Google this before, and now I did it again, and most definitively will do it again):</p><p>For some reason SilverStripe does not look for field translations in the lang files automatically. Or if it does, I don't know how I should define the fields in the language files so that SilverStripe would find them. I'm using SilverStripe 3.6.1.</p><p>Anyway, here is a workaround. Put this to any class inherited from DataObject:</p><p></p><div class="codesnippet"><p>public function fieldLabel($name)<br>{<br>   $label = parent::fieldLabel($name);<br>   $label = _t($this-&gt;class.'.'.$name, $label); //Try to translate the field<br>   return $label;<br>}</p></div><p>And then you can translate your fields in your mysite/lang/en.yml (or whatever language file):<br></p><div class="codesnippet"><p>en:<br> Title: MyTitle<br> AnotherField: AnotherTranslation</p></div><p>Please do note that the fieldnames are case sensitive, so "Title", "AnotherField" or whatever you have must be written as-is. Also remember to run ?flush=all after editing your language file.</p><p>EDIT:</p><p>It seems that my workaround does not translate summary fields. But I found this:</p><p><a href="http://www.balbuss.com/translating-statics-fields-and-labels/#TranslatingFieldlabels">http://www.balbuss.com/translating-statics-fields-and-labels/#TranslatingFieldlabels</a><br></p><div class="codesnippet"><p>class MyExample extends DataObject implements i18nEntityProvider {</p><p>static $db = array(<br> 'Name' =&gt; 'Varchar',<br> ...<br>);</p><p>function fieldLabels($includerelations = true) {<br> $labels = parent::fieldLabels($includerelations);</p><p> // add a translation to the $labels array for each db field<br> // if $includerelations == true (and it normally is) you need to add <br> // the db_ prefix, cause that's what SS will look for<br> foreach($this-&gt;stat('db') as $key =&gt; $value) {<br> $labels[$key] = _t("MyExample.db_{$key}", $key);<br> }</p><p> return $labels;<br>}</p></div> <br> <p data-swiftype-index="false">Posted to: How to translate fields labels | <a href="https://www.silverstripe.org/community/forums/general-questions/show/14254?start=8#post424382" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/14254" class="replyLink">Post Reply</a></p> Sat, 23 Sep 2017 04:39:25 +1200 https://www.silverstripe.org/community/forums/general-questions/show/14254?start=8#post424382 Re: jQuery is not defined https://www.silverstripe.org/community/forums/general-questions/show/10598?start=8#post424377 <p>Casino online<br><a href="https://www.gclub28.com/">[color=#262626]gclub[/color]</a></p> <br> <p data-swiftype-index="false">Posted to: jQuery is not defined | <a href="https://www.silverstripe.org/community/forums/general-questions/show/10598?start=8#post424377" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/10598" class="replyLink">Post Reply</a></p> Fri, 22 Sep 2017 16:14:48 +1200 https://www.silverstripe.org/community/forums/general-questions/show/10598?start=8#post424377 Re: Emails not displaying correctly. Suspected Email Function issue. https://www.silverstripe.org/community/forums/data-model-questions/show/119043#post424376 <p>Better way (without hacking core) is to put this in your config.yml: </p><p><div class="codesnippet"><p>Mailer: <br /> default_message_encoding: 'base64'</p></div></p> <br /> <p data-swiftype-index="false">Posted to: Emails not displaying correctly. Suspected Email Function issue. | <a href="https://www.silverstripe.org/community/forums/data-model-questions/show/119043#post424376" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/data-model-questions/reply/119043" class="replyLink">Post Reply</a></p> Fri, 22 Sep 2017 11:36:24 +1200 https://www.silverstripe.org/community/forums/data-model-questions/show/119043#post424376 Re: Date for 4.0 final? https://www.silverstripe.org/community/forums/upgrading-silverstripe/show/122080#post424375 <p>We're aiming for stable release by the end of the year, if not sooner.</p> <br /> <p data-swiftype-index="false">Posted to: Date for 4.0 final? | <a href="https://www.silverstripe.org/community/forums/upgrading-silverstripe/show/122080#post424375" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/upgrading-silverstripe/reply/122080" class="replyLink">Post Reply</a></p> Fri, 22 Sep 2017 09:15:50 +1200 https://www.silverstripe.org/community/forums/upgrading-silverstripe/show/122080#post424375 Blank gray screen when creating new pages and GridField Items https://www.silverstripe.org/community/forums/general-questions/show/122097 <p>I am running version 3.6.1. When i create a new page or a new object in a grid field the right pane in the CMS is solid gray. I have to fresh the page to get the content to actually come up. Any admin navigation also results in a gray right hand pane unless i hit refresh. I can't find any errors anywhere.</p> <br /> <p data-swiftype-index="false">Posted to: Blank gray screen when creating new pages and GridField Items | <a href="https://www.silverstripe.org/community/forums/general-questions/show/122097" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/122097" class="replyLink">Post Reply</a></p> Fri, 22 Sep 2017 06:01:11 +1200 https://www.silverstripe.org/community/forums/general-questions/show/122097 Silverstripe 4.0.0 Beta 3, Post install warning https://www.silverstripe.org/community/forums/installing-silverstripe/show/122095 <p>Hi all!<br>Today I did a test install of Silverstripe 4.0.0 Beta 3.<br>Installtion works fine, but afterwarts I get this warning:</p><p>[Warning] chmod(): Operation not permitted<br>GET /<br>Line 349 in /var/www/silver40.beta3/vendor/league/flysystem/src/Adapter/Local.php</p><p>All files and directories of my installation are:<br>- owned by www-user:www-user<br>- rights are set to 0664 for files<br>- rights are set to 0777 for all dirs</p><p>This warning comes up on all pages and backend too.</p><p>What is wrong here?<br>Thank yout!</p> <br> <p data-swiftype-index="false">Posted to: Silverstripe 4.0.0 Beta 3, Post install warning | <a href="https://www.silverstripe.org/community/forums/installing-silverstripe/show/122095" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/installing-silverstripe/reply/122095" class="replyLink">Post Reply</a></p> Fri, 22 Sep 2017 01:06:05 +1200 https://www.silverstripe.org/community/forums/installing-silverstripe/show/122095 Re: jQuery is not defined https://www.silverstripe.org/community/forums/general-questions/show/10598?start=8#post424365 <p>I have been noticed, If JS codes haven not been changed, you've got this sort of errors. <br />it could be possibly from the bad html mark up (e.g. missing div or '&lt;div' ) something like this :)</p> <br /> <p data-swiftype-index="false">Posted to: jQuery is not defined | <a href="https://www.silverstripe.org/community/forums/general-questions/show/10598?start=8#post424365" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/10598" class="replyLink">Post Reply</a></p> Thu, 21 Sep 2017 12:07:43 +1200 https://www.silverstripe.org/community/forums/general-questions/show/10598?start=8#post424365 Date for 4.0 final? https://www.silverstripe.org/community/forums/upgrading-silverstripe/show/122080 <p>Hi main developer! </p><p>Is there a roughly date for V 4.0 final release? </p><p>I have to do some modifications in a 3.6.1 installation for a customer website. <br />My customer wants to know it its better to wait for cms next version... </p><p>Any assumptions about that? <br />Thank you! </p><p>Cheers, elruo</p> <br /> <p data-swiftype-index="false">Posted to: Date for 4.0 final? | <a href="https://www.silverstripe.org/community/forums/upgrading-silverstripe/show/122080" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/upgrading-silverstripe/reply/122080" class="replyLink">Post Reply</a></p> Thu, 21 Sep 2017 01:36:09 +1200 https://www.silverstripe.org/community/forums/upgrading-silverstripe/show/122080 "SilverStripe Framework requires a $databaseConfig defined." after trying to switch to a new theme. https://www.silverstripe.org/community/forums/themes-2/show/122079 <p>Hi, I am a relative newbie to web programming and have only been working with Silverstripe for the last week. </p><p>Having followed the online tutorials and installed SS onto my server, I started working on creating a new theme. I copied over the Simple theme files to a new folder under Themes (without altering the CSS), changed config.yml and added new text to page.ss in the templates folder, uploading these files via Filezilla. Switching themes in the online CMS caused the website to switch to a minimal display with a blue header banner and no navigation bar. The text I'd added to page.ss didn't appear. </p><p>So far perhaps you're thinking that I've confused issues by editing via the online back end and also via the server. I dunno. </p><p>I went back and forth seeing if I could change anything, but to no avail. Then I read something on a forum about changing config.php within mysite here- <a href="https://www.silverstripe.org/community/forums/themes-2/show/111758">https://www.silverstripe.org/community/forums/themes-2/show/111758</a>. So I did that and ?flush=all. SInce then all that I get when I try to view the site is the message "SilverStripe Framework requires a $databaseConfig defined". </p><p>I have tried re-uploading the installation folder anew, but I am still getting the same message. I can appreciate that this problem could lie in any one of a number of things I've done, but I haven't a clue and it's extremely annoying, especially after following all of the rules of setting up a new theme.</p> <br /> <p data-swiftype-index="false">Posted to: &quot;SilverStripe Framework requires a $databaseConfig defined.&quot; after trying to switch to a new theme. | <a href="https://www.silverstripe.org/community/forums/themes-2/show/122079" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/themes-2/reply/122079" class="replyLink">Post Reply</a></p> Wed, 20 Sep 2017 19:26:49 +1200 https://www.silverstripe.org/community/forums/themes-2/show/122079 Static Publishing on Large Sites https://www.silverstripe.org/community/forums/all-other-modules/show/122078 <p>My company uses SilverStripe v3.1.21, along with the Subsite module to display and administer a number of clients' websites that sell products. This results in close to 200 subsites and a page count in the tens of thousands. The websites are very slow to load and tools such as Google's PageSpeed tell us page speeds are poor. We've already done step like combining and minimising the JS and compressing resources such as imaging, which gave some improvements, however the pages remain slow. The system was handed to us in this state and further hardware upgrades are not on the table as an option, nor are gaining additional resources for redevelopment. </p><p>We've taken a look at the static publish module (<a href="https://github.com/silverstripe/silverstripe-staticpublisher">https://github.com/silverstripe/silverstripe-staticpublisher</a>) and found that when we generating static pages the pages become fast and get a good score on the various tools, however the process to regenerate all of these pages takes over 14 hours, which is unacceptable given these products are updated from an external source daily. We also find that the regeneration process is a memory hog, as the module builds all of the pages in memory before dumping to file, causing the process to crash. We've had to alter the process to go subsite-by-subsite just to make it run. </p><p>We then took a look at the static publishing queue module (<a href="https://github.com/silverstripe/silverstripe-staticpublishqueue">https://github.com/silverstripe/silverstripe-staticpublishqueue</a>), which seemed to address our issues by having it queue pages as needed for regeneration, making it much more responsive to changes. However, the module seems to be very buggy and often crashes when generating pages. </p><p>Has anyone had experience using these modules (or similar) with larger sites and may be able to provide any pointers or ideas on how to implement static publishing successfully?</p> <br /> <p data-swiftype-index="false">Posted to: Static Publishing on Large Sites | <a href="https://www.silverstripe.org/community/forums/all-other-modules/show/122078" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/all-other-modules/reply/122078" class="replyLink">Post Reply</a></p> Wed, 20 Sep 2017 16:39:14 +1200 https://www.silverstripe.org/community/forums/all-other-modules/show/122078 Search not displaying results when searching for blog articles including forward-slash https://www.silverstripe.org/community/forums/blog-module-forum/show/122077 <p>Hi team, I'm not sure if this is the Blog modules fault at all but my Silverstripe site isn't returning blog articles that include results with a forward slash in the title or content. Specifically the query is <div class="codesnippet"><p>AS/NZS</p></div> </p><p>The article turns up as a result if I search with any other word or sentence that's included, but not if I specifically search for the above query. </p><p>I have <div class="codesnippet"><p>FulltextSearchable::enable();</p></div> enabled. </p><p>Is this something common with Silverstripe search? Any chance of shedding some light on the subject? Cheers</p> <br /> <p data-swiftype-index="false">Posted to: Search not displaying results when searching for blog articles including forward-slash | <a href="https://www.silverstripe.org/community/forums/blog-module-forum/show/122077" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/blog-module-forum/reply/122077" class="replyLink">Post Reply</a></p> Wed, 20 Sep 2017 16:29:16 +1200 https://www.silverstripe.org/community/forums/blog-module-forum/show/122077 User selected parameters on Reports https://www.silverstripe.org/community/forums/customising-the-cms/show/122076 <p>I'm having difficulty figuring out how to add a date range to my report. Ideally I want the report to show all records in a 24-hour period. </p><p>This is what I have so far: </p><p><div class="codesnippet"><p>class DailyReport extends SS_Report { </p><p> // the name of the report <br /> public function title() { <br /> return 'Auckland List'; <br /> } </p><p> // what we want the report to return <br /> public function sourceRecords($params = null) { <br /> return NomineeList::get()-&gt;where(array( <br /> '"Venue"' =&gt; 'Auckland' <br /> ))-&gt;sort('Shared'); <br /> } </p><p> function parameterFields() { <br /> $fields = DateField::create('Created', 'Report Day'); <br /> return $fields; <br /> } </p><p> // which fields on that object we want to show <br /> public function columns() { <br /> $fields = array( <br /> 'RunnersFirstName' =&gt; 'First Name', <br /> 'RunnersLastName' =&gt; 'Last Name', <br /> 'RunnersEmail' =&gt; 'Email', <br /> 'Address' =&gt; 'Address', <br /> 'Message' =&gt; 'Message', <br /> 'Name' =&gt; 'Nominated by', <br /> 'Email' =&gt; 'Nominator\'s Email', <br /> 'Shared' =&gt; 'Shared' <br /> ); </p><p> return $fields; <br /> } <br />}</p></div></p> <br /> <p data-swiftype-index="false">Posted to: User selected parameters on Reports | <a href="https://www.silverstripe.org/community/forums/customising-the-cms/show/122076" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/customising-the-cms/reply/122076" class="replyLink">Post Reply</a></p> Wed, 20 Sep 2017 16:17:38 +1200 https://www.silverstripe.org/community/forums/customising-the-cms/show/122076 Site Search should include my custom dataobjects fields https://www.silverstripe.org/community/forums/all-other-modules/show/122060 <p>I was wondering if the Site Search can be used to search on my custom developed DataObjects fields. For e.g. I have a Profile Module that has the Designation (Plain Text Field), Company Name/Employer (Plain Text Field), Biography (WYSIWYG). </p><p>I dont want to use Solr or Elastic Search or any other FulltextSearch Engine for now. </p><p>Kindly let me know how we can achieve this with the available functionality with in SS (ver 3.2 - 3.5) ?? </p><p>Thanks</p> <br /> <p data-swiftype-index="false">Posted to: Site Search should include my custom dataobjects fields | <a href="https://www.silverstripe.org/community/forums/all-other-modules/show/122060" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/all-other-modules/reply/122060" class="replyLink">Post Reply</a></p> Tue, 19 Sep 2017 12:57:58 +1200 https://www.silverstripe.org/community/forums/all-other-modules/show/122060 WordPress ditching React over patent clause issue https://www.silverstripe.org/community/forums/connect-with-other-silverstripe-members/show/122059 <p>Wasn't sure where to address this so I'll address it here. Read this recently: </p><p><a href="https://techcrunch.com/2017/09/15/wordpress-to-ditch-react-library-over-facebook-patent-clause-risk/">https://techcrunch.com/2017/09/15/wordpress-to-ditch-react-library-over-facebook-patent-clause-risk/</a> </p><p>Considering that the SilverStripe 4.0 CMS module is largely driven by React, I'm wondering how much of an issue this is. Will the patent clause put it at risk? If so, perhaps maybe the SilverStripe team should consider switching to Vue.js which, in my opinion, is likely to be a better library in the long run anyways. </p><p>Thoughts?</p> <br /> <p data-swiftype-index="false">Posted to: WordPress ditching React over patent clause issue | <a href="https://www.silverstripe.org/community/forums/connect-with-other-silverstripe-members/show/122059" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/connect-with-other-silverstripe-members/reply/122059" class="replyLink">Post Reply</a></p> Tue, 19 Sep 2017 12:28:13 +1200 https://www.silverstripe.org/community/forums/connect-with-other-silverstripe-members/show/122059 Silverstripe CMS login not showing input or password fields https://www.silverstripe.org/community/forums/form-questions/show/122053 <p>I've just started using the Silverstripe framework and up until now the templates have been showing the CMS admin login page. Today something's changed and now I can't login to the CMS dashboard because the login form doesn't show the username or password fields - just the login button and password retrieval link!! I've tried to find a similar issue that's been solved and can't find anything in any of the forums.</p> <br /> <p data-swiftype-index="false">Posted to: Silverstripe CMS login not showing input or password fields | <a href="https://www.silverstripe.org/community/forums/form-questions/show/122053" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/form-questions/reply/122053" class="replyLink">Post Reply</a></p> Tue, 19 Sep 2017 08:49:58 +1200 https://www.silverstripe.org/community/forums/form-questions/show/122053 https://www.silverstripe.org/community/forums/general-questions/show/121984 <p><a href="http://www.ozarkcountytimes.com/calendar/community/event_74d3ab08-9ae4-11e7-98dc-5cb9017bdfe0.html">UCLA vs Memphis week 3 college football live</a> </p><p><a href="http://www.ozarkcountytimes.com/calendar/community/event_a5f3fae4-9ae4-11e7-a9bf-5cb9017bdf48.html">UCLA vs Memphis week 3 college football live</a> </p><p><a href="http://www.ozarkcountytimes.com/calendar/community/event_b5c2e6e2-9ae4-11e7-992d-308d99b27af4.html">UCLA vs Memphis week 3 college football live</a> </p><p><a href="http://www.ozarkcountytimes.com/calendar/community/event_cf487a6e-9ae4-11e7-95a5-5cb9017b9fe4.html">UCLA vs Memphis week 3 college football live</a> </p><p><a href="http://www.ozarkcountytimes.com/calendar/community/event_950e2dda-9ae4-11e7-a4e8-5cb9017bb5c0.html">UCLA vs Memphis week 3 college football live</a> </p><p><a href="http://www.ozarkcountytimes.com/calendar/community/event_e51b6cd4-9ae4-11e7-896a-5cb9017beffc.html">UCLA vs Memphis week 3 college football live</a> </p><p><a href="https://www.gamnesia.com/journals/entry/espnlivecollege">UCLA vs Memphis week 3 college football live</a> </p><p><a href="https://www.cmog.org/sites/default/files/residency-application/Watch%20Link%20cbc.pdf">WATCH@LIVE! Air Force Falcons vs Michigan Wolverines Live ...</a> </p><p><a href="https://www.cmog.org/sites/default/files/residency-application/Watch%20Link%20gbdgv.pdf">WATCH@LIVE! Air Force Falcons vs Michigan Wolverines Live ...</a> </p><p><a href="https://www.cmog.org/sites/default/files/residency-application/Watch%20Linkfgvfgd.pdf">WATCH@LIVE! Air Force Falcons vs Michigan Wolverines Live ...</a> </p><p><a href="https://www.cmog.org/sites/default/files/residency-application/%2540%2521LIVE-STREAM%2521%2540Air%20Force%20vs%20Michigan%20football%202017%20live%20stream.pdf">Fox++tV= Air Force vs Michigan Live stream Online TV Channel/Ncaa</a> </p><p><a href="https://www.cmog.org/sites/default/files/residency-application/Air-Force-live_0.pdf">Fox++tV= Air Force vs Michigan Live stream Online TV Channel/Ncaa</a> </p><p><a href="https://www.cmog.org/sites/default/files/residency-application/Air%20Force_0.pdf">Fox++tV= Air Force vs Michigan Live stream Online TV Channel/Ncaa</a></p> <br /> <p data-swiftype-index="false">Posted to: | <a href="https://www.silverstripe.org/community/forums/general-questions/show/121984" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/121984" class="replyLink">Post Reply</a></p> Sun, 17 Sep 2017 02:00:09 +1200 https://www.silverstripe.org/community/forums/general-questions/show/121984 How to pair same pages with different translation? https://www.silverstripe.org/community/forums/general-questions/show/121957 <p>I would like to pair two similar pages with different translation. Now when I'm on the page without existing translations I can't click in menu on other language to show this page in other languages. I know i can create translation, but is there any way to do this without that? (Because i would create probably 30 pages from the beginning.) Also I would like to change the webpage setting or modify it in SilverStripe menu and not through connecting to server.</p> <br /> <p data-swiftype-index="false">Posted to: How to pair same pages with different translation? | <a href="https://www.silverstripe.org/community/forums/general-questions/show/121957" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/121957" class="replyLink">Post Reply</a></p> Thu, 14 Sep 2017 19:57:53 +1200 https://www.silverstripe.org/community/forums/general-questions/show/121957 Re: Prestashop Integration https://www.silverstripe.org/community/forums/e-commerce-modules/show/6518#post424214 <p>Hi , I am a prestashop user, and when I started making <br />my webstore I have used digital sales module which <br />protects web from different DDos attacks and stripe <br />payment module. <br />Digital Sales: <a href="https://www.modulesshop.com/en/prestsashop-modules/16-virtual-digital-files-products-prestashop.html">https://www.modulesshop.com/en/prestsashop-modules/16-virtual-digital-files-products-prestashop.html</a> <br />Stripe: <a href="https://addons.prestashop.com/en/payment-card-wallet/24996-stripe-official.html">https://addons.prestashop.com/en/payment-card-wallet/24996-stripe-official.html</a></p> <br /> <p data-swiftype-index="false">Posted to: Prestashop Integration | <a href="https://www.silverstripe.org/community/forums/e-commerce-modules/show/6518#post424214" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/e-commerce-modules/reply/6518" class="replyLink">Post Reply</a></p> Wed, 13 Sep 2017 02:05:42 +1200 https://www.silverstripe.org/community/forums/e-commerce-modules/show/6518#post424214 Blog page not adding https://www.silverstripe.org/community/forums/blog-module-forum/show/121912 <p>I am trying to add a blog to a SilverStripe site using the Blog Module. </p><p>The package seemed to install fine via </p><div class="codesnippet"><p>composer require silverstripe/blog</p></div> and dev/build returned no errors. The ‘Blog’ page type is also available from the ‘Add page’ menu.<p>After adding a ‘Blog’ page, the site doesn’t redirect to http://localhost:8888/example/admin/pages/edit/show and simply remains on the http://localhost:8888/example/admin/pages/add/ page.<br>From what I can tell, the only result from this action is an ‘ARCHIVED’ page being added to the sitetree.</p><p>Have ?flush=all etc as per other suggestions to no avail and other page types are still being added fine.</p><p>Does anyone have any idea what might be going on here?</p><p>Currently using:<br></p><div class="codesnippet"><p>"silverstripe/cms": "3.6.1",<br> "silverstripe/framework": "3.6.1",<br> "phpunit/PHPUnit": "~3.7@stable"<br> "silverstripe/blog": "2.4.6"</p></div><p>[Edit 13/09/2017]</p><p>While simply adding a 'Blog' page produces no observable errors, adding a generic 'Page' and changing the page type to 'Blog' produces the following error in the php_error.log:</p><p></p><div class="codesnippet"><p>PHP Warning: require_once(/Applications/MAMP/htdocs/example/blog/_config.php): failed to open stream: No such file or directory in /Applications/MAMP/htdocs/example/framework/core/manifest/ConfigManifest.php on line 141</p></div><p></p><div class="codesnippet"><p>PHP Fatal error: require_once(): Failed opening required '/Applications/MAMP/htdocs/example/blog/_config.php' (include_path='/Applications/MAMP/htdocs/example/vendor/phpunit/phpunit-mock-objects:/Applications/MAMP/htdocs/example/vendor/phpunit/php-token-stream:/Applications/MAMP/htdocs/example/vendor/phpunit/php-code-coverage:/Applications/MAMP/htdocs/example/vendor/phpunit/phpunit:/Applications/MAMP/htdocs/example/vendor/symfony/yaml:.:/Applications/MAMP/htdocs/example/framework:/Applications/MAMP/htdocs/example/framework/parsers:/Applications/MAMP/htdocs/example/framework/thirdparty:.:/Applications/MAMP/bin/php/php5.6.30/lib/php') in /Applications/MAMP/htdocs/example/framework/core/manifest/ConfigManifest.php on line 141</p></div> <br> <p data-swiftype-index="false">Posted to: Blog page not adding | <a href="https://www.silverstripe.org/community/forums/blog-module-forum/show/121912" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/blog-module-forum/reply/121912" class="replyLink">Post Reply</a></p> Tue, 12 Sep 2017 10:03:36 +1200 https://www.silverstripe.org/community/forums/blog-module-forum/show/121912 Returning $this->customise with an #anchor https://www.silverstripe.org/community/forums/customising-the-cms/show/121911 <p>OK so I've been racking my brains to figure out the best way of achieving this and wonder if anyone has any experience of ideas?!? </p><p>We've heavily extended a version of MemberProfiles for a MemberDirectory based website and are providing a number of DataObjects within a front-end tab structure for editing. Part of this is an event calendar. Naturally, users what to be able to search for event within specific data criteria. Functionality wise, we've got it all working, but ONLY if we return $this-&gt;customise. This wouldn't normally be an issue, however using the Zurb Foundation 6 framework to display the data within a tab structure, we need to direct the users back to the URL with an #anchor appended to ensure the correct tab re-opens on page launch. </p><p>We can achieve the #anchor and correct page launch using a GET method, but the results won't populate (we assume because MemberProfilePage.php already uses the index() function? Then the $this-&gt;customise will produce the results, but not reload the page on the correct tab (always default). </p><p>So.... is there a way of adding an #anchor to the customise() or renderWith() based on this existing return code? <br />return $this-&gt;customise(array('eventResults' =&gt; $eventResults))-&gt;renderWith(array('MemberProfilePage_profile', 'MemberProfilePage')); </p><p>Any help would be massively appreciated as we're cutting it fine for beta testing and have 2 other little quirks that need addressing :( </p><p>Thanks guys <br />Antony</p> <br /> <p data-swiftype-index="false">Posted to: Returning $this-&gt;customise with an #anchor | <a href="https://www.silverstripe.org/community/forums/customising-the-cms/show/121911" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/customising-the-cms/reply/121911" class="replyLink">Post Reply</a></p> Tue, 12 Sep 2017 05:59:28 +1200 https://www.silverstripe.org/community/forums/customising-the-cms/show/121911 SilverStripe 4.0.0 Beta 3 Release Announcement https://www.silverstripe.org/community/forums/releases-and-announcements/show/121910 <p>SilverStripe 4.0.0 Beta 3 has been released! </p><p>This release includes many user interface, batch asset management, versioning, and campaign admin improvements. </p><p>You can check out our recent blog post <a href="https://www.silverstripe.org/blog/4-0-0-beta3-lets-stabilise">4.0.0-beta3: Let's stabilise!</a> to see a preview of these changes, or you can head on over to <a href="https://ss4-demo.silverstripe.org/">the demo site</a> to try these out for yourself. </p><p>For upgrading notes and other information please check <a href="https://docs.silverstripe.org/en/4/changelogs/4.0.0">https://docs.silverstripe.org/en/4/changelogs/4.0.0</a>, or the beta3 upgrade log at <a href="https://docs.silverstripe.org/en/4/changelogs/beta/4.0.0-beta3">https://docs.silverstripe.org/en/4/changelogs/beta/4.0.0-beta3</a>. </p><p>To get setup, you can install this using composer (as below): </p><p><div class="codesnippet"><p>composer create-project silverstripe/installer ./ss40 4.0.0-beta3</p></div> </p><p>You can also download pre-built zip / tar from <a href="https://www.silverstripe.org/download/">https://www.silverstripe.org/download/</a>. </p><p>Kind Regards, </p><p>Damian Mooyman | Principal Developer <br />SilverStripe </p><p>Announcement: <a href="https://groups.google.com/forum/#!topic/silverstripe-announce/FQtJSV6vKHg">https://groups.google.com/forum/#!topic/silverstripe-announce/FQtJSV6vKHg</a></p> <br /> <p data-swiftype-index="false">Posted to: SilverStripe 4.0.0 Beta 3 Release Announcement | <a href="https://www.silverstripe.org/community/forums/releases-and-announcements/show/121910" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/releases-and-announcements/reply/121910" class="replyLink">Post Reply</a></p> Mon, 11 Sep 2017 17:23:27 +1200 https://www.silverstripe.org/community/forums/releases-and-announcements/show/121910 who lives in Delray Beach in Palm Beach County, said his wife https://www.silverstripe.org/community/forums/all-other-modules/show/121906 <p><a href="http://scout.com/nfl/patriots/Board/103160/Contents/Line-Seahawks-vs-Packers-live-online-Streaming-107248629">Seahawks vs Packers live online</a> <br /><a href="http://scout.com/nfl/patriots/Board/103160/Contents/Free-TvSeattle-Seahawks-vs-Green-Bay-Packers-2017-Live-107248635">Seattle Seahawks vs Green Bay Packers 2017 Live</a> <br /><a href="http://scout.com/nfl/patriots/Board/103160/Contents/2017Seahawks-vs-Packers-Live-Game-107248639">Seahawks vs Packers Live Game</a> <br /><a href="https://icma.org/sites/default/files/NonFlash.pdf">Carolina Panthers vs San Francisco 49ers live</a> <br /><a href="https://icma.org/sites/default/files/ZA.pdf">Carolina Panthers vs San Francisco 49ers live</a> <br /><a href="https://icma.org/sites/default/files/Nflgame.pdf">Panthers vs 49ers game live NFL Game Pas</a> <br /><a href="http://scout.com/nfl/patriots/Board/103160/Contents/Packers-vs-Seahawks-Live-107249144">Packers vs Seahawks Live</a> <br /><a href="http://scout.com/nfl/patriots/Board/103160/Contents/PutkiSeattle-Seahawks-vs-Green-Bay-Packers-2017-Live-Stream-TV-107249146">Seattle Seahawks vs Green Bay Packers 2017 Live</a> <br /><a href="http://scout.com/nfl/patriots/Board/103160/Contents/Online-Packers-vs-Seahawks-NFL-game-Live-Online-107249150">Packers vs Seahawks NFL game Live Online</a> <br /><a href="https://icma.org/sites/default/files/vivo%20tv.pdf">Seahawks vs Packers live</a> <br /><a href="https://icma.org/sites/default/files/soto%20maruf%20tv.pdf">Seahawks vs Packers live</a> <br /><a href="https://icma.org/sites/default/files/holl%202017%20tv.pdf">Seahawks vs Packers live</a> <br /><a href="https://icma.org/sites/default/files/game%20pass%202017.pdf">Seahawks vs Packers live</a> <br /><a href="https://icma.org/sites/default/files/49_Game_live.pdf">Panthers vs 49ers Live</a> <br /><a href="https://icma.org/sites/default/files/AppppleTV.pdf">Panthers vs 49ers Live</a> <br /><a href="https://icma.org/sites/default/files/Foltoooo.pdf">Panthers vs 49ers Live</a> <br /><a href="https://icma.org/sites/default/files/HighhhQuality.pdf">Panthers vs 49ers Live</a> <br /><a href="https://icma.org/sites/default/files/SanFrancisco.pdf">Panthers vs 49ers Live</a> <br /><a href="https://icma.org/sites/default/files/All-Cliar.pdf">Green Bay Packers vs Seattle Seahawks Live Stream</a> <br /><a href="https://icma.org/sites/default/files/Sansilk.pdf">Packers vs Seahawks Live Stream</a> <br /><a href="https://icma.org/sites/default/files/pantine.pdf">Packers vs Seahawks 2017 Live Stream</a> <br /><a href="https://icma.org/sites/default/files/bedarmiajo.pdf">Seattle Seahawks vs Green Bay Packers live</a> <br /><a href="https://icma.org/sites/default/files/flgam.pdf">Panthers vs 49ers game live</a> <br /><a href="https://icma.org/sites/default/files/hhhhhhh_0.pdf">Carolina Panthers vs San Francisco 49ers live streaming</a> <br /><a href="https://icma.org/sites/default/files/watch_1.pdf">Carolina Panthers vs San Francisco 49ers live streaming</a> <br /><a href="https://icma.org/sites/default/files/66666.pdf">Carolina Panthers vs San Francisco 49ers live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/live-ports-carolina-panthers-vs-san-francisco-49ers-live-stream-nfl-online-free-hd-watch-web-tv-september-online-10-2017.pdf">Carolina Panthers vs San Francisco 49ers live streaming</a> <br /><a href="http://scout.com/nfl/jets/Board/103176/Contents/online-Tv-Seahawks-vs-Packers-live-Stream-Football-107250127">Seahawks vs Packers live</a> <br /><a href="http://scout.com/nfl/jets/Board/103176/Contents/ESPN-TV-Seahawks-vs-Packers-live-Streaming-NFL-Football-Watch--107250137">Seahawks vs Packers live</a> <br /><a href="http://scout.com/nfl/jets/Board/103176/Contents/OnlineSeahawks-vs-Packers-live-online-107250150">Seahawks vs Packers live</a> <br /><a href="http://scout.com/nfl/jets/Board/103176/Contents/Live-FOX-Seahawks-vs-Packers-live-Stream-How-to-watch-NFL-107250176">Seahawks vs Packers live</a> <br /><a href="https://icma.org/sites/default/files/Vuuulo.pdf">Panthers vs 49ers Live</a> <br /><a href="https://icma.org/sites/default/files/honty.pdf">Panthers vs 49ers game live</a> <br /><a href="https://icma.org/sites/default/files/golla.pdf">Panthers vs 49ers game live</a> <br /><a href="https://icma.org/sites/default/files/foxonline_0.pdf">Panthers vs 49ers game live</a> <br /><a href="https://icma.org/sites/default/files/foxgame.pdf">Panthers vs 49ers game live</a> <br /><a href="https://icma.org/sites/default/files/foxcc.pdf">Panthers vs 49ers game live</a> <br /><a href="https://icma.org/sites/default/files/dada.pdf">Panthers vs 49ers game live</a> <br /><a href="https://icma.org/sites/default/files/cpycddao.pdf">Panthers vs 49ers game live</a> <br /><a href="https://icma.org/sites/default/files/talu.pdf">Carolina Panthers vs San Francisco 49ers live streaming</a> <br /><a href="https://icma.org/sites/default/files/balu.pdf">Carolina Panthers vs San Francisco 49ers live streaming</a> <br /><a href="https://icma.org/sites/default/files/halu.pdf">Carolina Panthers vs San Francisco 49ers live streaming</a> <br /><a href="https://icma.org/sites/default/files/black.pdf">Packers vs Seahawks Live Stream</a> <br /><a href="https://icma.org/sites/default/files/hugg%20tui.pdf">Seahawks vs Packers live</a> <br /><a href="https://icma.org/sites/default/files/ddc.pdf">Seahawks vs Packers live</a> <br /><a href="https://icma.org/sites/default/files/kuttha.pdf">Panthers vs 49ers game live</a> <br /><a href="https://icma.org/sites/default/files/ball%20%206.pdf">Seahawks vs Packers live</a> <br /><a href="https://icma.org/sites/default/files/holl_3.pdf">Seahawks vs Packers live</a> <br /><a href="https://icma.org/sites/default/files/pp.pdf">Seahawks vs Packers live</a> <br /><a href="https://icma.org/sites/default/files/tula.pdf">Carolina Panthers vs San Francisco 49ers live streaming</a> <br /><a href="https://icma.org/sites/default/files/malu.pdf">Carolina Panthers vs San Francisco 49ers live streaming</a> <br /><a href="https://icma.org/sites/default/files/lobon.pdf">Packers vs Seahawks Live Stream</a> <br /><a href="https://icma.org/sites/default/files/biscop.pdf">Green Bay Packers vs Seattle Seahawks Live</a> <br /><a href="https://icma.org/sites/default/files/silk.pdf">Packers vs Seahawks Live 2017</a> <br /><a href="https://icma.org/sites/default/files/gamenfl.pdf">Panthers vs 49ers game live</a> <br /><a href="https://icma.org/sites/default/files/gamepass_2.pdf">Panthers vs 49ers game live</a> <br /><a href="https://icma.org/sites/default/files/gametv.pdf">Panthers vs 49ers game live</a> <br /><a href="https://icma.org/sites/default/files/N.B.C.pdf">Seahawks vs Packers Live</a></p> <br /> <p data-swiftype-index="false">Posted to: who lives in Delray Beach in Palm Beach County, said his wife | <a href="https://www.silverstripe.org/community/forums/all-other-modules/show/121906" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/all-other-modules/reply/121906" class="replyLink">Post Reply</a></p> Mon, 11 Sep 2017 08:37:11 +1200 https://www.silverstripe.org/community/forums/all-other-modules/show/121906 to find a prime spot for fireworks viewing at the end of the day. https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/show/121905 <p><a href="https://icma.org/sites/default/files/WATCH%2049ers%20v%20Panthers%20FreeFootballLiveStreamingForIpad.pdf">Panthers vs 49ers game live</a><br><a href="https://icma.org/sites/default/files/soooos.pdf">jaguars vs texans game live stream</a><br><a href="https://icma.org/sites/default/files/vk.pdf">jaguars vs texans game live stream</a><br><a href="http://scout.com/nfl/jets/Board/103176/Contents/liVENew-York-Giants-vs-Dallas-Cowboys-stream-Online-107245742">Giants vs Cowboys Live</a><br><a href="http://scout.com/nfl/jets/Board/103176/Contents/WATCHNFL-LIVE-Giants-vs-Cowboys-Live-Stream-107245740">Giants vs Cowboys Live</a><br>[url=https://icma.org/sites/default/files/Co<a href="http://wwwwboys.pdf">wwwwboys.pdf</a>]Giants vs Cowboys Live<br><a href="https://oehha.ca.gov/media/filefield_paths/free_18.pdf">Carolina Panthers vs San Francisco 49ers live streaming</a><br><a href="https://icma.org/sites/default/files/LiveTBS-Carolina-Panthers-vs-San-Francisco-49ers-Live-Stream-NFL-Football-Web-Game-Online-HD-TV-Telecast-September-10-2017.pdf">Panthers vs 49ers game live</a><br><a href="https://icma.org/sites/default/files/hhhhhhh_0.pdf">Carolina Panthers vs San Francisco 49ers live streaming</a><br><a href="http://scout.com/nfl/jets/Board/103176/Contents/onlineTvPanthers-vs-49ers-live-107245707">Panthers vs 49ers live</a><br><a href="http://scout.com/nfl/jets/Board/103176/Contents/TvPanthers-vs-49ers-live-107245815">Panthers vs 49ers live</a><br><a href="http://scout.com/nfl/jets/Board/103176/Contents/GameTodayPanthers-vs-49ers-live-107245950">Panthers vs 49ers live</a><br><a href="http://scout.com/nfl/jets/Board/103176/Contents/onlineTvPanthers-vs-49ers-live-107246146">Panthers vs 49ers live</a><br><a href="http://scout.com/nfl/jets/Board/103176/Contents/FOX-Tv-Panthers-vs-49ers-gAme-Live-Stream-Football-107246625">Panthers vs 49ers game live</a><br><a href="http://scout.com/nfl/jets/Board/103176/Contents/WATCH-Tv-Panthers-vs-49ers-game-live-107246704">Panthers vs 49ers game live</a><br><a href="http://scout.com/nfl/jets/Board/103176/Contents/LIVEPanthers-vs-49ers-game-live-107246775">Panthers vs 49ers game live</a><br><a href="https://icma.org/sites/default/files/NewYYYYYork.pdf">Giants vs Cowboys Live</a><br><a href="https://icma.org/sites/default/files/4999999ers.pdf">49ers Game live</a><br><a href="https://icma.org/sites/default/files/pantttttthers.pdf">49ers Game live</a><br><a href="https://icma.org/sites/default/files/weeeeeeek-1.pdf">49ers Game live</a><br><a href="https://icma.org/sites/default/files/NFL%20Mobile%20app.pdf">Panthers vs 49ers game live</a><br><a href="http://scout.com/nfl/jets/Board/103176/Contents/live-watchLlive-Panthers-vs-49ers-live-streaming-107247315">Panthers vs 49ers live streaming</a><br><a href="http://scout.com/nfl/jets/Board/103176/Contents/Game-pass2017-Panthers-vs-49ers-live-online-107247325">Panthers vs 49ers live streaming</a><br><a href="https://icma.org/sites/default/files/66666.pdf">Carolina Panthers vs San Francisco 49ers live streaming</a><br><a href="https://icma.org/sites/default/files/FuboTV.pdf">Panthers vs 49ers game live on FuboTV</a><br><a href="http://scout.com/nfl/jets/Board/103176/Contents/GAME-Carolina-Panthers-vs-San-Francisco-49ers-live-107247017">Carolina Panthers vs San Francisco 49ers live</a><br><a href="http://scout.com/nfl/jets/Board/103176/Contents/NFL-LIVE-PASS-Carolina-Panthers-vs-San-Francisco-49ers-live-107247340">Carolina Panthers vs San Francisco 49ers live</a><br><a href="http://scout.com/nfl/jets/Board/103176/Contents/GAMEPASS-Carolina-Panthers-vs-San-Francisco-49ers-live-107247456">Carolina Panthers vs San Francisco 49ers live</a><br><a href="https://icma.org/sites/default/files/vuttuo.pdf">Panthers vs 49ers game live</a><br><a href="https://www.picatic.com/event15050729014072">San Francisco 49ers Game live</a><br><a href="https://icma.org/sites/default/files/LOPPYY.pdf">Panthers vs 49ers game live NFL Game Pas</a><br><a href="https://icma.org/sites/default/files/KAKABABU.pdf">Panthers vs 49ers game live NFL Game Pas</a><br><a href="https://icma.org/sites/default/files/gametime_watch__fox.pdf">Panthers vs 49ers game live NFL Game Pas</a></p> <br> <p data-swiftype-index="false">Posted to: to find a prime spot for fireworks viewing at the end of the day. | <a href="https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/show/121905" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/reply/121905" class="replyLink">Post Reply</a></p> Mon, 11 Sep 2017 07:55:00 +1200 https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/show/121905 of the storm; Reuters reported that each of United https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/show/121891 <p><a href="https://icma.org/sites/default/files/MMMMMMY.pdf">Minnesota vs Oregon State live stream</a> <br /><a href="https://icma.org/sites/default/files/CCCCCCCCCCC.pdf">Minnesota vs Oregon State live stream</a> <br /><a href="http://content.mobicip.com/content/live-gamepass-minnesota-vs-oregon-state-live-streaming-today">Minnesota vs Oregon State live streaming</a> <br /><a href="http://content.mobicip.com/content/fs1live-minnesota-vs-oregon-state-live-stream-now-watch-now-0">Minnesota vs Oregon State live streaming</a> <br /><a href="http://www.coastlab2018.com/sites/default/files/resumenes/RTV.pdf">Minnesota vs Oregon State live streaming</a> <br /><a href="http://www.coastlab2018.com/sites/default/files/resumenes/live%20tv.pdf">Minnesota vs Oregon State live streaming</a> <br /><a href="http://www.coastlab2018.com/sites/default/files/resumenes/HBO_0.pdf">Minnesota vs Oregon State live streaming</a> <br /><a href="http://www.coastlab2018.com/sites/default/files/resumenes/game%20paass%202017.pdf">Minnesota vs Oregon State live streaming</a> <br /><a href="https://icma.org/sites/default/files/DVD.pdf">Minnesota vs Oregon State live stream</a> <br /><a href="https://icma.org/sites/default/files/COX.pdf">Minnesota vs Oregon State live stream</a> <br /><a href="https://icma.org/sites/default/files/DVD.pdf">Minnesota vs Oregon State live stream</a> <br /><a href="https://icma.org/sites/default/files/COX.pdf">Minnesota vs Oregon State live stream</a> <br /><a href="https://icma.org/sites/default/files/OTP.pdf">Minnesota vs Oregon State live stream</a> <br /><a href="https://icma.org/sites/default/files/OMG.pdf">Minnesota vs Oregon State live stream</a> <br /><a href="https://icma.org/sites/default/files/PX.pdf">Minnesota vs Oregon State live stream</a> <br /><a href="https://icma.org/sites/default/files/NCC.pdf">Minnesota vs Oregon State live stream</a></p> <br /> <p data-swiftype-index="false">Posted to: of the storm; Reuters reported that each of United | <a href="https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/show/121891" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/reply/121891" class="replyLink">Post Reply</a></p> Sun, 10 Sep 2017 14:11:35 +1200 https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/show/121891 Bland sees the offer of a free service as a ploy to cover liability. https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/show/121881 <p><a href="http://scout.com/nfl/patriots/Board/103153/Contents/OnlineNew-Hampshire-vs-Georgia-Southern-live-107151722">New Hampshire vs Georgia Southern live</a> <br /><a href="https://icma.org/sites/default/files/Foxxxxxxxxxxxxxx.pdf">Arkansas vs TCU live Stream</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/kkkkkkkkk_0.pdf">Louisiana vs Tulsa live</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/game_online.pdf">Louisiana vs Tulsa live</a> <br /><a href="http://scout.com/nfl/patriots/Board/103153/Contents/LIvETvNew-Hampshire-vs-Georgia-Southern-live-107152006">New Hampshire vs Georgia Southern live</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/mi-kisu-ja.pdf">Louisiana vs Tulsa live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/livestream-new-hampshire-vs-georgia-southern-live.pdf">New Hampshire vs Georgia Southern live</a> <br /><a href="https://icma.org/sites/default/files/YYYYYYYYY.pdf">Louisiana vs Tulsa live</a> <br /><a href="https://icma.org/sites/default/files/NCCCC2.pdf">Louisiana vs Tulsa live</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/es3.pdf">Nebraska vs Oregon live</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/week-3.pdf">Nebraska vs Oregon live</a> <br /><a href="http://scout.com/nfl/patriots/Board/103153/Contents/Nebraska-vs-Oregon-live-Stream-2017-Football-107152727">Nebraska vs Oregon live</a> <br /><a href="http://scout.com/nfl/patriots/Board/103153/Contents/ESPNNebraska-vs-Oregon-Live-Football-Online-Game-Day-107152731">Nebraska vs Oregon live</a> <br /><a href="http://scout.com/nfl/patriots/Board/103153/Contents/WatchNebraska-vs-Oregon-live-107152735">Nebraska vs Oregon live</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/newhampshire-vs-georgia-southern-live-stream-free.pdf">New Hampshire vs Georgia Southern live</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/new_game.pdf">New Hampshire vs Georgia Southern live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/uuuu_0.pdf">New Hampshire vs Georgia Southern live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/kaki.pdf">Louisiana vs Tulsa live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/dowloadas_live.pdf">Louisiana vs Tulsa live streaming</a></p> <br /> <p data-swiftype-index="false">Posted to: Bland sees the offer of a free service as a ploy to cover liability. | <a href="https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/show/121881" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/reply/121881" class="replyLink">Post Reply</a></p> Sun, 10 Sep 2017 08:00:46 +1200 https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/show/121881 if they’ve ever used Equifax’s products, which include https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/show/121880 <p><a href="https://oehha.ca.gov/media/filefield_paths/hot_nca.pdf">Villanova vs Temple live</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/game-09.pdf">Villanova vs Temple live</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/fewh3.pdf">Villanova vs Temple live</a> <br /><a href="http://scout.com/nfl/patriots/Board/103153/Contents/LiveOnline-Stream-TCU-vs-Arkansas-TV-Football-107148855">TCU vs Arkansas live</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/2fv3gr4.pdf">Villanova vs Temple live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/skylive_holl.pdf">indiana vs virginia live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/ma_tv_hd_bujle.pdf">indiana vs virginia live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/gamepass.pdf">indiana vs virginia live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/ai_ai_tora_tv_dike.pdf">indiana vs virginia live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/fubotv.pdf">TCU vs Arkansas live online</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/sooo3.pdf">tulane vs navy live stream</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/put.pdf">tulane vs navy live stream</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/savannah_live.pdf">Savannah State vs Appalachian State live streaming</a> <br /><a href="https://icma.org/sites/default/files/KABU.pdf">tulane vs navy live stream</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/o.r.g.pdf">TCU vs Arkansas live</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/savannah_live.pdf">Savannah State vs Appalachian State live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/football_tv.pdf">Savannah State vs Appalachian State live streaming</a> <br /><a href="https://icma.org/sites/default/files/CCCC.pdf">tulane vs navy live stream</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/fantu.pdf">TCU vs Arkansas live stream</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/v85.pdf">Villanova vs Temple live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/temple-vs-villanova-live-streaming.pdf">Villanova vs Temple live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/magi.pdf">Villanova vs Temple live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/ballll.pdf">Villanova vs Temple live streaming</a>\ <br /><a href="https://oehha.ca.gov/media/filefield_paths/segrsdgs.pdf">Louisiana vs Tulsa live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/game_online_2017.pdf">Louisiana vs Tulsa live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/fox6.pdf">TCU vs Arkansas live</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/pppp.pdf">Savannah State vs Appalachian State live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/oooo.pdf">Savannah State vs Appalachian State live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/ffff.pdf">Savannah State vs Appalachian State live streaming</a> <br /><a href="https://icma.org/sites/default/files/YOY.pdf">tulane vs navy live stream</a> <br /><a href="https://icma.org/sites/default/files/ESPN_0.pdf">tulane vs navy live stream</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/ccccc.pdf">Savannah State vs Appalachian State live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/ounsto.pdf">indiana vs virginia live streaming</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/max.pdf">TCU vs Arkansas live</a> <br /><a href="https://oehha.ca.gov/media/filefield_paths/orge.pdf">TCU vs Arkansas live</a></p> <br /> <p data-swiftype-index="false">Posted to: if they’ve ever used Equifax’s products, which include | <a href="https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/show/121880" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/reply/121880" class="replyLink">Post Reply</a></p> Sun, 10 Sep 2017 07:46:37 +1200 https://www.silverstripe.org/community/forums/dataobjectmanager-module-forum/show/121880 Re: Blank Pages in CMS https://www.silverstripe.org/community/forums/general-questions/show/119611#post424141 <p>Hi there, </p><p>no I haven't. it's been happening probably for years now and I've just accepted that I have to refresh the page after creating or deleting anything, I use it so little on this particular system that I just tolerate it.</p> <br /> <p data-swiftype-index="false">Posted to: Blank Pages in CMS | <a href="https://www.silverstripe.org/community/forums/general-questions/show/119611#post424141" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/general-questions/reply/119611" class="replyLink">Post Reply</a></p> Fri, 08 Sep 2017 16:43:48 +1200 https://www.silverstripe.org/community/forums/general-questions/show/119611#post424141