https://www.silverstripe.org/community/forums/rss Tables https://www.silverstripe.org/community/forums/showcase-questions/show/118557 <p>Any idea how I can lock a column width <br />I set up a table 1 row + 2 columns <br />When I insert text into the first column it fill the entire area by forcing column two over to the hard right <br />ie it doesnt wrap-around <br />I selected Alignment - Centre but that does not solve my problem</p> <br /> <p data-swiftype-index="false">Posted to: Tables | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/118557" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/118557" class="replyLink">Post Reply</a></p> Tue, 02 Aug 2016 17:01:19 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/118557 Re: Upload Files https://www.silverstripe.org/community/forums/showcase-questions/show/117127#post418732 <p>Hi Mariakara, </p><p>Can you check the permissions on your"/assets" folder? you may no longer be able to write files into this folder or its child folders (E.g. Uploads). </p><p>-helenclarko</p> <br /> <p data-swiftype-index="false">Posted to: Upload Files | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/117127#post418732" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/117127" class="replyLink">Post Reply</a></p> Tue, 14 Jun 2016 07:11:59 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/117127#post418732 Upload Files https://www.silverstripe.org/community/forums/showcase-questions/show/117127 <p>Hello, I am trying to update my website which was designed in Silverstripe and for the first time in seven years it is not allowing me to upload files. Might anyone know how to fix this? Thank you, Maria</p> <br /> <p data-swiftype-index="false">Posted to: Upload Files | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/117127" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/117127" class="replyLink">Post Reply</a></p> Tue, 14 Jun 2016 03:06:32 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/117127 Site Won't Load: "Cannot Open XML data file" https://www.silverstripe.org/community/forums/showcase-questions/show/111887 <p>I have a site at www.<a href="http://cutbankairport.org/">http://cutbankairport.org/</a> that won't load and give the following error: </p><p>Error: Cannot open XML data file: <a href="http://xml.weather.yahoo.com/forecastrss?u=F&amp;p=USMT0072">http://xml.weather.yahoo.com/forecastrss?u=F&amp;p=USMT0072</a> </p><p>I'm very new to silverstripe, and am not familiar with it's nuts and bolts. Anyone have any tips? Much appreciated.</p> <br /> <p data-swiftype-index="false">Posted to: Site Won&#039;t Load: &quot;Cannot Open XML data file&quot; | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/111887" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/111887" class="replyLink">Post Reply</a></p> Thu, 21 Apr 2016 03:58:24 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/111887 Re: Custom PaginationList https://www.silverstripe.org/community/forums/showcase-questions/show/110868#post412773 <p>Try the following link for more info <a href="https://docs.silverstripe.org/en/3.2/developer_guides/templates/how_tos/pagination/">https://docs.silverstripe.org/en/3.2/developer_guides/templates/how_tos/pagination/</a> <br />It has a good example which shows how to control the Pagination controls </p><p><div class="codesnippet"><p>&lt;% if $PaginatedPages.MoreThanOnePage %&gt; <br /> &lt;% if $PaginatedPages.NotFirstPage %&gt; <br /> &lt;a class="prev" href="$PaginatedPages.PrevLink"&gt;Prev&lt;/a&gt; <br /> &lt;% end_if %&gt; <br /> &lt;% loop $PaginatedPages.Pages %&gt; <br /> &lt;% if $CurrentBool %&gt; <br /> $PageNum <br /> &lt;% else %&gt; <br /> &lt;% if $Link %&gt; <br /> &lt;a href="$Link"&gt;$PageNum&lt;/a&gt; <br /> &lt;% else %&gt; <br /> ... <br /> &lt;% end_if %&gt; <br /> &lt;% end_if %&gt; <br /> &lt;% end_loop %&gt; <br /> &lt;% if $PaginatedPages.NotLastPage %&gt; <br /> &lt;a class="next" href="$PaginatedPages.NextLink"&gt;Next&lt;/a&gt; <br /> &lt;% end_if %&gt; <br />&lt;% end_if %&gt;</p></div></p> <br /> <p data-swiftype-index="false">Posted to: Custom PaginationList | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/110868#post412773" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/110868" class="replyLink">Post Reply</a></p> Thu, 04 Feb 2016 16:52:35 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/110868#post412773 Custom PaginationList https://www.silverstripe.org/community/forums/showcase-questions/show/110868 <p>Hello,</p><p>i use the PaginationList from Lesson 15 for a DataList "ArtikelObject". Everythink works fine, but my PaginationList show me now all 226 Pages in the Pager. I would have something like this:<br>&lt;&lt; 1 .... 6 7 8(Current) 9 10 .... 226 &gt;&gt;<br>2 Links before Current und 2 Links after Current.<br>Can I prepare the Links in php or it is possible make this in Template?<br>My Php Function:<br>public function getArtikel(SS_HTTPRequest $request) {<br> $start= 0;<br> if (isset($_GET['start'])) {<br> $start = $_GET['start'];<br> }<br> $request = array();<br> $list = ArtikelObject::get()-&gt;filter(array('ArticleHolderID' =&gt; $this-&gt;ID, 'Zustand' =&gt; '2')); <br> $pages = new PaginatedList($list, $request);<br> $pages-&gt;setPageLength(10)-&gt;setPageStart($start);<br> return $pages;<br> }<br>Please help,<br>Greatings Barbara</p> <br> <p data-swiftype-index="false">Posted to: Custom PaginationList | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/110868" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/110868" class="replyLink">Post Reply</a></p> Sat, 31 Oct 2015 09:49:46 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/110868 Re: Contact Form Module https://www.silverstripe.org/community/forums/showcase-questions/show/102691#post403091 <p>Pyro, </p><p>Thank you. That helped me solve the issue. I did exactly as you said and the form is working fine now ("setting the from parameter in the email to the submitted form field value"). I appreciate the help. Next time, I'll consider using the UserForms Module. </p><p>Just so you know, i was using "Silverstripe Contact Form Module", as maintained by Uncle Cheese...<a href="http://addons.silverstripe.org/add-ons/silverstripe/contact-form">http://addons.silverstripe.org/add-ons/silverstripe/contact-form</a>. </p><p>Charles</p> <br /> <p data-swiftype-index="false">Posted to: Contact Form Module | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/102691#post403091" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/102691" class="replyLink">Post Reply</a></p> Wed, 22 Jul 2015 06:08:32 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/102691#post403091 Re: Contact Form Module https://www.silverstripe.org/community/forums/showcase-questions/show/102691#post403081 <p>Contact form module? <br />Could you post a link? It's not an 'official' one, and many developers approach these simple tasks in various ways. </p><p>It sounds like it's far more complex than it needs to be. Often for a simple contact form a good solution is simply UserForms module. <br />In any case, using a defined static constant is not what you want to be doing if you're trying to send from the submitter's supplied address. <br />It's simply a case of setting the from parameter in the email to the submitted form field value. </p><p>Beyond that it's eceedingly simple to create a small form to use without needing a whole module. I would suggest perhaps looking at the tutorials (docs.silverstripe.org) to learn more.</p> <br /> <p data-swiftype-index="false">Posted to: Contact Form Module | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/102691#post403081" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/102691" class="replyLink">Post Reply</a></p> Tue, 21 Jul 2015 22:24:23 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/102691#post403081 Contact Form Module https://www.silverstripe.org/community/forums/showcase-questions/show/102691 <p>Hello, </p><p>i am attempting to have the contact form module dynamically use the submitter's e-mail address in the "From" field when the e-mail is sent from the website. The code block i am including below mentions to define MAIL_FROM_ADDRESS in the mysite/_config.php file, but i am unsure how to do this. Any ideas? Thank you. </p><p> //You can define MAIL_FROM_ADDRESS in mysite/_config.php <br /> $sender = null; <br /> if(defined('MAIL_FROM_ADDRESS')) $sender = MAIL_FROM_ADDRESS; <br /> $email = Email::create($sender, $emailTo, $emailSubject, $html); <br /> if($replyTo) { <br /> $email-&gt;replyTo($replyTo); <br /> }</p> <br /> <p data-swiftype-index="false">Posted to: Contact Form Module | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/102691" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/102691" class="replyLink">Post Reply</a></p> Tue, 21 Jul 2015 12:40:45 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/102691 Re: images missing from the publish pages https://www.silverstripe.org/community/forums/showcase-questions/show/101636#post401295 <p>Hi Roshan, </p><p>Without Error Handling (<a href="http://doc.silverstripe.org/en/developer_guides/debugging/error_handling">http://doc.silverstripe.org/en/developer_guides/debugging/error_handling</a>), you will need to rely on your PHP logs. </p><p>The log files that you are going to be looking for to start with will be the error_log and the access_log that are generated by Apache. <br />If you are running unix, they will be in /var/log/apache2 or /var/log/httpd. </p><p>Regards <br />-Helenclarko</p> <br /> <p data-swiftype-index="false">Posted to: images missing from the publish pages | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/101636#post401295" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/101636" class="replyLink">Post Reply</a></p> Fri, 17 Apr 2015 15:38:05 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/101636#post401295 images missing from the publish pages https://www.silverstripe.org/community/forums/showcase-questions/show/101636 <p>Hi there, my website line7.co.nz had problems loading images couple weeks ago. images went missing on the uploaded folder on the CMS and did a restore from the hosting provider and still couldn't find them on the uploads folder. </p><p>is there a way i could see what went wrong from the CMS log ? does the CMS maintain a log for all user modifications ? </p><p>Regards. <br />Roshan</p> <br /> <p data-swiftype-index="false">Posted to: images missing from the publish pages | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/101636" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/101636" class="replyLink">Post Reply</a></p> Fri, 17 Apr 2015 14:35:42 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/101636 Re: Silversites https://www.silverstripe.org/community/forums/showcase-questions/show/23136#post401287 <p>Is this site <a href="http://silversites.com/">http://silversites.com</a> ?</p> <br /> <p data-swiftype-index="false">Posted to: Silversites | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/23136#post401287" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/23136" class="replyLink">Post Reply</a></p> Thu, 16 Apr 2015 17:30:31 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/23136#post401287 Re: Anyone know how to read .ss files https://www.silverstripe.org/community/forums/showcase-questions/show/11198#post400802 <p>Interesting indeed. Sorry we can't help you! This forum is for help with web development software.</p> <br /> <p data-swiftype-index="false">Posted to: Anyone know how to read .ss files | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/11198#post400802" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/11198" class="replyLink">Post Reply</a></p> Fri, 20 Mar 2015 00:52:42 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/11198#post400802 Re: Anyone know how to read .ss files https://www.silverstripe.org/community/forums/showcase-questions/show/11198#post400801 <p>Yes I've done a long Google search on the topic. This device - Sharp Fontwriter 750 - allowed you to create word processing files (.wp) and spread sheet files (.ss). There is a conversion utility out there for converting the .wp files - but nothing for the .ss files. I've come to a blank on that one.</p> <br /> <p data-swiftype-index="false">Posted to: Anyone know how to read .ss files | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/11198#post400801" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/11198" class="replyLink">Post Reply</a></p> Fri, 20 Mar 2015 00:44:02 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/11198#post400801 Re: Anyone know how to read .ss files https://www.silverstripe.org/community/forums/showcase-questions/show/11198#post400798 <p><a href="https://www.youtube.com/watch?v=Wx4-wMBmfls">https://www.youtube.com/watch?v=Wx4-wMBmfls</a> </p><p>Did you try google? <br />Because fontwriter files are apparently .fw from what I saw. </p><p><a href="http://semiprime.com/fontwriter/">http://semiprime.com/fontwriter/</a> might have what you want - but you might have to use the wayback machine as it just times out for me. </p><p>.ss could be many things: <br /><ol><li>SilverStripe template file (plain text) <br /></li><li>Scheme programming language source file (plain text) <br /></li><li>dnaLIMS fragment analysis in Bioinformatic Tools for DNA Research <br /></li><li>Bitmap graphics (Splash) <br /></li><li>Windows 95 screensaver <br /></li><li>A Sam Spade script, a free integrated network query tool for Windows 95, 98, NT and Windows 2000 used to track down spam <br /></li><li>XShipWars sound scheme file <br /></li><li>Protein data used by program called Ribbons (and other biochemistry applications) <br /></li><li>Snappy Configuration File <br /></li><li> Oberlin DRAGN Graph Algorithm <br /></li><li>FileViewPro <br /></li></ol> </p><p>I suggest opening with some kind of inspector to see if you can decipher the header to get more info. Some kind of hex editor should allow this. <br />You'll need to know what you're doing though.</p> <br /> <p data-swiftype-index="false">Posted to: Anyone know how to read .ss files | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/11198#post400798" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/11198" class="replyLink">Post Reply</a></p> Fri, 20 Mar 2015 00:11:45 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/11198#post400798 Re: Anyone know how to read .ss files https://www.silverstripe.org/community/forums/showcase-questions/show/11198#post400797 <p>I know this is a old thread - but I was wondering if anyone came up with an answer to this? I too have found some old disks from a Sharp Fontwriter 7, and I'd like to be able to convert these .ss files and read them. They don't open in Excel or Notepad (just display gibberish). Anyone got any ideas?</p> <br /> <p data-swiftype-index="false">Posted to: Anyone know how to read .ss files | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/11198#post400797" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/11198" class="replyLink">Post Reply</a></p> Thu, 19 Mar 2015 23:32:14 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/11198#post400797 Re: Fatal error: 'continue' operator with non-constant operand is no longer supported https://www.silverstripe.org/community/forums/showcase-questions/show/100786#post399935 <p>This is not really the right section for this question , so I guess that's why we overlooked it... </p><p>I suppose you are on SilverStripe 2.4? That version doesn't really support PHP 5.4 or higher, so in that case the best thing would be to downgrade to PHP 5.3 (and flush your cache). </p><p>Edit: I found the forum post you mention, I think... Note: you dindn't just copy that, with the plusses and all? Stupid question, i know, but just to make sure? :)</p> <br /> <p data-swiftype-index="false">Posted to: Fatal error: &#039;continue&#039; operator with non-constant operand is no longer supported | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/100786#post399935" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/100786" class="replyLink">Post Reply</a></p> Wed, 11 Feb 2015 01:39:32 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/100786#post399935 Fatal error: 'continue' operator with non-constant operand is no longer supported https://www.silverstripe.org/community/forums/showcase-questions/show/100786 <p>I am duplicating an existing website done in SilverStripe to be used on another domain (edited content as required).</p><p>When uploading the files which currently work on one domain, I get this error:</p><p>Fatal error: 'continue' operator with non-constant operand is no longer supported in /var/www/vhosts/getfit.school.nz/httpdocs/home/sapphire/core/ManifestBuilder.php on line 201</p><p>I found one forum that said to split the code across two lines to look like this</p><p>// locate and include the exclude files<br> $topLevel = scandir($baseDir);<br> foreach($topLevel as $file) {<br>- if($file[0] == '.') continue<br>+ if($file[0] == '.') {<br>+ continue;<br>+ }</p><p> $fullPath = '';<br> $fullPath = $baseDir . '/' . $file;</p><p>However that did not work...... any solutions?</p> <br> <p data-swiftype-index="false">Posted to: Fatal error: 'continue' operator with non-constant operand is no longer supported | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/100786" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/100786" class="replyLink">Post Reply</a></p> Sun, 08 Feb 2015 12:04:00 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/100786 Re: New forum look and feel (not dev friendly :( ) https://www.silverstripe.org/community/forums/showcase-questions/show/74680?start=8#post373723 <p>ClarkePaul, <br />Thanks for your help. </p><p>Enabling "Usabilla" within Ghostery (FF Addon) <br />I can see now the BIG "forward button" ! </p><p>Thanks for your help </p><p>Bests regards <br />Friendly, </p><p>jpalsu <br />&gt;&lt;((((°&gt; &lt;°))))&gt;&lt; <br />Euskadi, I Love it ! <br />Maite dut Euskal Herria <br />Le Pays Basque, J'aime</p> <br /> <p data-swiftype-index="false">Posted to: New forum look and feel (not dev friendly :( ) | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/74680?start=8#post373723" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/74680" class="replyLink">Post Reply</a></p> Fri, 03 Oct 2014 02:51:43 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/74680?start=8#post373723 Re: New forum look and feel (not dev friendly :( ) https://www.silverstripe.org/community/forums/showcase-questions/show/74680?start=8#post373687 <p>We have a big "Feedback" button attached to the bottom of the page, otherwise there is a "Get in touch" link in the footer. If you don't see the Feedback link then maybe it's blocked with ad blocker or something similar as it is a third party service.</p> <br /> <p data-swiftype-index="false">Posted to: New forum look and feel (not dev friendly :( ) | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/74680?start=8#post373687" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/74680" class="replyLink">Post Reply</a></p> Thu, 02 Oct 2014 09:52:11 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/74680?start=8#post373687 Re: New forum look and feel (not dev friendly :( ) https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post373656 <p>ClarkePaul, <br />Thanks for your answer. <br />I understand the reasons for change. </p><p>But Rss is a great utility... <br />The old forums RSS feed was "http://www.silverstripe.org/community/forums/rss" <br />And now it doesn't work... </p><p>I don't see the "forward button" ! <br />Where is it ? </p><p>Thanks for your help </p><p>Bests regards <br />Friendly, </p><p>jpalsu <br />&gt;&lt;((((°&gt; &lt;°))))&gt;&lt; <br />Euskadi, I Love it ! <br />Maite dut Euskal Herria <br />Le Pays Basque, J'aime</p> <br /> <p data-swiftype-index="false">Posted to: New forum look and feel (not dev friendly :( ) | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post373656" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/74680" class="replyLink">Post Reply</a></p> Wed, 01 Oct 2014 20:36:52 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post373656 Re: New forum look and feel (not dev friendly :( ) https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post373653 <p>Hi, there is currently a bug with RSS feeds which we are hoping to release a fix for tomorrow so bare with us. The ability to get notifications for a post shouldn't have changed from the old experience (you have the option to subscribe to threads once you respond) but the RSS feed has always been hidden from the interface (I don't know why that is - I hope to see if RSS needs to be visible on the front-end). As this launch was an initial basic upgrade of the site without additional features we hope to see more improvements in the near future. </p><p>The whole experience is not that different from the old experience but the visual appearance of the forum has changed. We gathered quite a lot of feedback from the community in regards to how the old site appeared and the consensus was that it didn't connect to the software or reflect the community it should represent (CMS authors, developers, web companies, designers, businesses using SilverStripe... ). </p><p>The two main reasons for change was that the old site was unmaintainable without doing a complete upgrade and that the user experience (navigating and the content) was bad and needed improving for a larger user base than just developers. </p><p>FYI - the feedback button at the bottom is the best place to give recommendations/feedback, and feel free to keep using the forum to gather opinions of others. </p><p>Cheers</p> <br /> <p data-swiftype-index="false">Posted to: New forum look and feel (not dev friendly :( ) | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post373653" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/74680" class="replyLink">Post Reply</a></p> Wed, 01 Oct 2014 16:19:35 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post373653 Re: New forum look and feel (not dev friendly :( ) https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post373652 <p>Hi all, </p><p>I am also disappointed... </p><p>1/ There is no RSS, Neither for SilverStripe.org, nor SS.com, nor SS Forums... <br /> Why ? </p><p>2/ For me, the new forum and blog are too slows, and less readable (for me)... </p><p>What was the real need to change ? </p><p>Bests regards <br />Friendly, </p><p>jpalsu <br /><strong>&gt;&lt;((((°&gt; &lt;°))))&gt;&lt;</strong> <br />Euskadi, I Love it ! <br />Maite dut Euskal Herria <br />Le Pays Basque, J'aime</p> <br /> <p data-swiftype-index="false">Posted to: New forum look and feel (not dev friendly :( ) | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post373652" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/74680" class="replyLink">Post Reply</a></p> Wed, 01 Oct 2014 09:55:49 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post373652 Re: New forum look and feel (not dev friendly :( ) https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post373280 <p>Thanks! </p><p>Where would you guys rather have us post bugs and recommendations concerning the new site? I don't really think this topic is the right place... </p><p>Anyhow one minor css thingy - text is running out of bounds here: <a href="http://www.silverstripe.org/community/forums/installing-silverstripe/show/75207#post373235">this post</a> </p><p>EDIT: Also noticed that links are no longer displayed as links - with or without formatting...</p> <br /> <p data-swiftype-index="false">Posted to: New forum look and feel (not dev friendly :( ) | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post373280" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/74680" class="replyLink">Post Reply</a></p> Fri, 26 Sep 2014 20:21:43 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post373280 Re: New forum look and feel (not dev friendly :( ) https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post373236 <p>Hi guys, we've made some quick changes as per some of the recommendations. There can be more improvements around color and contrast but we will do more of that over time.</p> <br /> <p data-swiftype-index="false">Posted to: New forum look and feel (not dev friendly :( ) | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post373236" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/74680" class="replyLink">Post Reply</a></p> Fri, 26 Sep 2014 09:44:53 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post373236 Re: New forum look and feel (not dev friendly :( ) https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post372955 <p>Great new site setup, congratulations!! Obviously there will always be some small things to tweak :) </p><p>One such would be the admin options on the forums, that are placed very close together. On touch devices (iPad in my case), it's a bit of a gamble which link you'll hit, which might have unwanted sideeffects :)</p> <br /> <p data-swiftype-index="false">Posted to: New forum look and feel (not dev friendly :( ) | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post372955" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/74680" class="replyLink">Post Reply</a></p> Tue, 23 Sep 2014 00:40:46 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post372955 Re: New forum look and feel (not dev friendly :( ) https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post372878 <p>Thanks for your input. I agree we can do better with the color contrast so I've added this as a bug. </p><p>With regards to some of the positioning of information, we are now having to deal with smaller form factors so we wanted to find layouts which are more consistent across devices without impacting the usability. With the old forum we were duplicating user details for each post so this was cleaned up a bit and we decided to simplify info into the one place. In the end it came down to simplicity of the structure but we did consider leaving user details on the right side and only appearing between posts for smaller screens. Moving the user details to the right should be an easy enough for just larger screens so I'll add this as a recommendation. </p><p>No need to do a poll atm as there are loads of improvements and feedback that didn't make the go live day which we hope to get to in the future.</p> <br /> <p data-swiftype-index="false">Posted to: New forum look and feel (not dev friendly :( ) | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post372878" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/74680" class="replyLink">Post Reply</a></p> Mon, 22 Sep 2014 14:19:45 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/74680#post372878 New forum look and feel (not dev friendly :( ) https://www.silverstripe.org/community/forums/showcase-questions/show/74680 <p>Hi all, </p><p>I'm really disappointed in a new SS forum design - it bacame pretty much hard to read :( </p><p>1. Firstly - list of topics and colors of fonts - absolutely non readable ! <br />if you try to go through from top to bottom - you'll see that most readable lines are user nicknames in red , which takes all of the attention . <br />Font color is fine for another Bootrap 4 pages site, but not enough contrast for a proper forum reading. <br />Suggestion - move date of creation with nickname to separate column, topics should be one under other, and probably use darker font. </p><p>2.Inside the topic - again, the max ammount of posts that fints the screen at a time (im on a full HD) - 2-3 posts. theres pleanty of room on the right side which is just wasted in white... Basically you can't track answers easily, and always have to skip author info and their images (which is NOT smth that is essential on forum). <br />Suggestion - again, keep author info in separate column, compact messages a bit, so that answers are one under another. </p><p>I understand you wanted the forum to look neat and accurate, but for developer important thing is getting required information fast . Old forum was way much better in a way of formatting. Any developer who sees this topic - please say your opinion, Im I right or not ? :) Or SS guys - just do a Poll and see results. :) </p><p>Cheers.</p> <br /> <p data-swiftype-index="false">Posted to: New forum look and feel (not dev friendly :( ) | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/74680" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/74680" class="replyLink">Post Reply</a></p> Sat, 20 Sep 2014 03:33:23 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/74680 Re: Adding payment to registration. https://www.silverstripe.org/community/forums/showcase-questions/show/13875#post371020 <p>PayPal has some decent and very well document steps to do this here: <br /><a href="https://developer.paypal.com/docs/">https://developer.paypal.com/docs/</a> </p><p>However, I can say that you would need to create a account on Paypal, then you would find a "My Buttons" editor somewhere on the account page. This allows you to create and edit buttons to use for different kinds of payments. </p><p>PayPal has various ways of making payments, two of the main being: <br />1. Using a hosted button on PayPal, in which case you basically only tell Paypal API which button to use <br />2. Use a custom button, which will send information to PayPal. </p><p>Using 1. Would for instance have a static stored amount on PayPal and cannot change. If you are advertising rent which would not change. Using 2. would allow you to specify an amount and send it to Paypal, but is more prone to interception and manipulation from third parties. You can however overcome that by verifing the amount paid by using a redirect link on the PayPal button, so that after paying it would re-post information to your site about the payment made. </p><p>Once you created the button on PayPal, you are able to copy the form and button html code to paste into your site, which will post the data to paypal. </p><p>One more note, you can use developer.paypal.com to make testing accounts and spend money like craaaaaaazy!! Though I never got those shoes delivered that I ordered... </p><p>Hope that helps!</p> <br /> <p data-swiftype-index="false">Posted to: Adding payment to registration. | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/13875#post371020" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/13875" class="replyLink">Post Reply</a></p> Sat, 06 Sep 2014 02:29:20 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/13875#post371020 Re: Custom pagetype template issue https://www.silverstripe.org/community/forums/showcase-questions/show/28371#post371019 <p>Hi, </p><p>Every template needs a corresponding *.php file. </p><p>i.e. You want to create a page that shows Products </p><p><div class="codesnippet"><p>class PageProduct extends Page{ <br />} </p><p>class PageProduct_Controller extends Page_Controller{ </p><p>}</p></div> </p><p>Then you need to create a corresponding template file called PageProduct.ss. </p><p>Same thing with inheritance. You can create children for a page by creating a function, adding it to the allowed actions and creating a *.ss file with the name PageProduct_functionName.ss. As soon as you redirect to that function it will call that child page. </p><p>Furthermore, you should only flush=all to clear cached images. Any time you add, or include a template, and only then, do you have to flush ON THAT PAGE (important) by doing /url/products?flush or /url/viewProduct?flush (the 1 is no longer required). </p><p>One more thing to note, it is very important that you put all the template (.ss) files in the layout folder. The way Silverstripe is built, it always loads the Page.ss from themes, and where the $Layout is called in that page, it will look for a corresponding *.ss file in the layout folder. So if PageProduct was loaded, it will load Page.ss and include PageProduct.ss in the $Layout variable. </p><p>Hope that helps!</p> <br /> <p data-swiftype-index="false">Posted to: Custom pagetype template issue | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/28371#post371019" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/28371" class="replyLink">Post Reply</a></p> Sat, 06 Sep 2014 02:14:55 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/28371#post371019 Re: Help please.. https://www.silverstripe.org/community/forums/showcase-questions/show/17485#post371017 <p>You can create the database before installation of your website, and add the db_name to the site installation, or you can change the database later on by editing the config details (config.php): </p><p>i.e. database = mydatabase </p><p><div class="codesnippet"><p>$databaseConfig = array( <br />&nbsp;&nbsp;&nbsp;"type" =&gt; 'MySQLDatabase', <br />&nbsp;&nbsp;&nbsp;"server" =&gt; 'server domain', //localhost if on own computer <br />&nbsp;&nbsp;&nbsp;"username" =&gt; 'myusername', <br />&nbsp;&nbsp;&nbsp;"password" =&gt; 'mypassword', <br />&nbsp;&nbsp;&nbsp;"database" =&gt; 'mydatabase', <br />&nbsp;&nbsp;&nbsp;"path" =&gt; '' <br />);</p></div> </p><p>Furthermore, Silverstripe has full ORM functionality, so you never have to worry about the database after that. If for example you wanted to add fields to the database, you do it using php code in the silverstripe object.php file. </p><p>You want to add a Company Type to a company object <br /><div class="codesnippet"><p>&lt;?php </p><p>class Company extends DataObject{ <br /> private static $db = array( <br /> "Type"=&gt;"Varchar(100)" <br /> } <br />}</p></div> </p><p>Compiling it using url/dev/build will create the extra field in the object on its own. </p><p>Here is a full guide: <br /><a href="http://doc.silverstripe.com/framework/en/topics/datamodel">http://doc.silverstripe.com/framework/en/topics/datamodel</a></p> <br /> <p data-swiftype-index="false">Posted to: Help please.. | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/17485#post371017" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/17485" class="replyLink">Post Reply</a></p> Sat, 06 Sep 2014 02:03:36 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/17485#post371017 Re: Help please.. https://www.silverstripe.org/community/forums/showcase-questions/show/17485#post356098 <p>it's right, you should know PHP to create database in SilverStripe.</p> <br /> <p data-swiftype-index="false">Posted to: Help please.. | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/17485#post356098" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/17485" class="replyLink">Post Reply</a></p> Tue, 27 May 2014 21:30:44 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/17485#post356098 Re: Custom pagetype template issue https://www.silverstripe.org/community/forums/showcase-questions/show/28371#post326911 <p>Note that that isn't an official SilverStripe tutorial despite the logo. This tutorial doesn't support version 3.1, and the template should really use &lt;% loop %&gt; in stead of &lt;% control %&gt;. The official SilverStripe tutorials are here: <a href="http://doc.silverstripe.org/framework/en/">http://doc.silverstripe.org/framework/en/</a> (look at 5 for relation management) </p><p>After changing templates, you should just ?flush=1, never mind the dev/build, that is for updating the DataBase and in the newest versions of SilverStripe doesn't seem to flush the template cache anymore (if I'm correct, not toally shure about that) </p><p>Beside that: hard to tell what goes wrong, based on your information alone... Check for version and typo's/omissions in code and filenames I'd suggest :) </p><p>Martine</p> <br /> <p data-swiftype-index="false">Posted to: Custom pagetype template issue | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/28371#post326911" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/28371" class="replyLink">Post Reply</a></p> Mon, 09 Dec 2013 02:11:37 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/28371#post326911 Custom pagetype template issue https://www.silverstripe.org/community/forums/showcase-questions/show/28371 <p>Hello to all :) I just started using SilverStripe. I followed this tutorial <a href="http://www.silverstriperesources.com/articles/silverstripe-3-many-many-a-comprehensive-example/">http://www.silverstriperesources.com/articles/silverstripe-3-many-many-a-comprehensive-example/</a>, everything is working fine except for the template part. </p><p>I created the ProductCategoryPage.ss file in the layouts folder and added the given code but its not getting displayed in the site(I did dev/build?flush=all),the template code is working when I add it to the layouts/page.ss so I think the ProductCategoryPage.ss is not getting included. Am I doing anything wrong?Can someone please help me out.</p> <br /> <p data-swiftype-index="false">Posted to: Custom pagetype template issue | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/28371" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/28371" class="replyLink">Post Reply</a></p> Sun, 08 Dec 2013 03:28:43 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/28371 Re: I don't want to get combined and minified files for Admin section https://www.silverstripe.org/community/forums/showcase-questions/show/25635#post326493 <p>Chances that all owners of individual SilverStripe modules will monitor these forums are not very high. </p><p>So if a question is not answered, like in this case, you could maybe refer to the Github repository and see if you can post an issue/question there.</p> <br /> <p data-swiftype-index="false">Posted to: I don&#039;t want to get combined and minified files for Admin section | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/25635#post326493" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/25635" class="replyLink">Post Reply</a></p> Thu, 05 Dec 2013 01:31:43 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/25635#post326493 I don't want to get combined and minified files for Admin section https://www.silverstripe.org/community/forums/showcase-questions/show/25635 <p>For mysite i have installed module called 'silverstripe-css-js-munger-master' for combining and minifying JS and CSS files to reduce http request and Increase the Performance of the site.. </p><p>Its combining and minifying both Mainsite(FrontEnd) and Admin section as well.. I don't want to get combined and minified files for Admin section.. Is there anyway to do this.. </p><p>how to do this... </p><p>Advice or Guidance are appreciated! </p><p>-Arun</p> <br /> <p data-swiftype-index="false">Posted to: I don&#039;t want to get combined and minified files for Admin section | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/25635" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/25635" class="replyLink">Post Reply</a></p> Thu, 21 Nov 2013 00:52:47 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/25635 Re: Greatful for SS 3.1 https://www.silverstripe.org/community/forums/showcase-questions/show/23873#post324547 <p>@alienn - We don't deploy 3.0 for the performance issues. Last 8 months we've only deployed 3.1 beta versions without any major issues (though we include test suites with our applications so the likelihood of breaking things is lower)</p> <br /> <p data-swiftype-index="false">Posted to: Greatful for SS 3.1 | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/23873#post324547" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/23873" class="replyLink">Post Reply</a></p> Sat, 28 Sep 2013 17:21:26 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/23873#post324547 Re: Greatful for SS 3.1 https://www.silverstripe.org/community/forums/showcase-questions/show/23873#post324501 <p>how its go so far? <br />ss3.1 is ready for production use?</p> <br /> <p data-swiftype-index="false">Posted to: Greatful for SS 3.1 | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/23873#post324501" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/23873" class="replyLink">Post Reply</a></p> Thu, 26 Sep 2013 02:31:09 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/23873#post324501 Greatful for SS 3.1 https://www.silverstripe.org/community/forums/showcase-questions/show/23873 <p>I juist build a new website in Silverstripe 3, but after trying to run it on a commercial web host instead of my MacBook, the speed made me cry... And I often got a message like service disconnected from the shared hosting account (ultimate from Godaddy). This of course made me run some tests on the MacBook, which opened my eyes a bit: SS3 has really thousands upon thousands of requests to build the pages. It was clear that running the current site would not cut it. Luckily I read just in time that most problems should be solved in SS 3.1 in a post by Ingo Schommer. </p><p>As the site should be usable immediately, I had avoided the beta version before. The speed issue however made me change my mind. The upgrade was quite painless. I had to change all public statics such as $db to private statics, upgrade some modules that had 3.1 versions (and rewrite some too), change &lt;% control in the templates and after about 2 hours all was set. Amazing. 70 per cent faster! It truly made my day. </p><p>The website by the way, now transferring to its final server and I will probably discover some glitches in the coming days, is <a href="http://www.energieprojecten.nl/">www.energieprojecten.nl</a> . </p><p>By the way, having recently bought a Windows RT device, I am also very happy with the backend. It works like a charm in both touch mode as well as with the keyboard of my Lenovo Yoga 11. </p><p>Keep up the good work folks!</p> <br /> <p data-swiftype-index="false">Posted to: Greatful for SS 3.1 | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/23873" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/23873" class="replyLink">Post Reply</a></p> Wed, 29 May 2013 23:36:53 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/23873 Silversites https://www.silverstripe.org/community/forums/showcase-questions/show/23136 <p>Hi Silverstripers </p><p>I have developed a new hosting/cms platform using Silverstripe and Amazon S3 to enable anyone to instantly create and host a Silverstripe website. The service is called Silversites. </p><p>Currently I have released only the core features but I have lots more planned. Before I go ahead and develop all of these features I need to get some feedback from the community and potential users. </p><p>Please take a look at Silversites by going to <a href="http://silversites.co/">http://silversites.co</a> and get in touch here or on the website. All suggestions and comments are welcome. </p><p>Thanks <br />Liam</p> <br /> <p data-swiftype-index="false">Posted to: Silversites | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/23136" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/23136" class="replyLink">Post Reply</a></p> Fri, 15 Mar 2013 13:59:32 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/23136 Re: University Research with tool. Software metrics https://www.silverstripe.org/community/forums/showcase-questions/show/21773#post319541 <p>Hi, </p><p>Sorry for not replying to your question sooner. I did take a look at the website you refer to but unfortunately I only speak about six words of Italien, and I don't know about the other moderators/members of these forums nor the SilverStripe core developers. </p><p>So It's not really clear, at least to me, what data you wish to collect and how, what the Web Framework Point stands for and how or if it would benefit SilverStripe or otherwise be of interest to its developers/users now or in the long run. Maybe you could elaborate a bit more? </p><p>Martine</p> <br /> <p data-swiftype-index="false">Posted to: University Research with tool. Software metrics | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/21773#post319541" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/21773" class="replyLink">Post Reply</a></p> Tue, 29 Jan 2013 02:49:45 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/21773#post319541 University Research with tool. Software metrics https://www.silverstripe.org/community/forums/showcase-questions/show/21773 <p>Dear all, <br />We are Erika Corona and Daniele Grechi, research fellows at the DIEE of Cagliari and at the DITEN of Genoa. <br />We would like to know if it is possible to create a post on your forum about a university project, which has the objective of collecting web projects data made with your web CMF framework. <br />We propose to the developers, actively involved in your forum, the use of an interactive tool we are testing: Web Framework Points (beta). <br />All the information about such research project are available at the following link <a href="http://narciso.dibe.unige.it:8080/opencms/opencms/software-metrics/">http://narciso.dibe.unige.it:8080/opencms/opencms/software-metrics/</a> and the tool will be available in the coming weeks. <br />Moreover our study group is available to provide further information at the following e-mail address: <a href="mailto:progettometrichesoft@hotmail.it">progettometrichesoft@hotmail.it</a>. <br />We would like to inform you that the data collected will be used only for scientific purposes. <br />Kind regards <br />Erika Corona <br />Daniele Grechi</p> <br /> <p data-swiftype-index="false">Posted to: University Research with tool. Software metrics | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/21773" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/21773" class="replyLink">Post Reply</a></p> Wed, 19 Dec 2012 23:39:35 +1300 https://www.silverstripe.org/community/forums/showcase-questions/show/21773 Re: File Extensions https://www.silverstripe.org/community/forums/showcase-questions/show/13874#post307824 <p>Nevermind, got it</p> <br /> <p data-swiftype-index="false">Posted to: File Extensions | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/13874#post307824" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/13874" class="replyLink">Post Reply</a></p> Fri, 16 Sep 2011 11:13:42 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/13874#post307824 Re: File Extensions https://www.silverstripe.org/community/forums/showcase-questions/show/13874#post307823 <p>I have a related issue. I was able to get Uplodify working with executable files but they won't show up in the CMS folders. That makes linking to them a little difficult for some of my users. Is there a way that SS will show .exe and .msi files in the file tree?</p> <br /> <p data-swiftype-index="false">Posted to: File Extensions | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/13874#post307823" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/13874" class="replyLink">Post Reply</a></p> Fri, 16 Sep 2011 11:05:20 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/13874#post307823 Re: Not accepted site for showcase https://www.silverstripe.org/community/forums/showcase-questions/show/17997#post307729 <p>I'm with you in case of security implementations. <br />When checking /Security/... links you can identify SS sites often how the forms are generated, I was meaning that.</p> <br /> <p data-swiftype-index="false">Posted to: Not accepted site for showcase | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/17997#post307729" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/17997" class="replyLink">Post Reply</a></p> Tue, 13 Sep 2011 22:32:37 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/17997#post307729 Re: Not accepted site for showcase https://www.silverstripe.org/community/forums/showcase-questions/show/17997#post307708 <p>I don't think /Security/ links are a reliable indicator of a SS-based website because any other framework could be using the same URL segments. </p><p>You can remove the generator meta tag if you like, I believe it's overridden in _config.php. Do a search for it on this forum - there's a thread of mine about it that got an answer from Willr. </p><p>I don't think revealing which CMS you're using is a problem. Many hugely popular sites are known to run on Wordpress and it's not a security issue. Sure, any hacker could go check out the source code and look for vulnerabilities, but it all really comes down to how well you've locked down your server and implemented security measures in your application.</p> <br /> <p data-swiftype-index="false">Posted to: Not accepted site for showcase | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/17997#post307708" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/17997" class="replyLink">Post Reply</a></p> Tue, 13 Sep 2011 08:49:32 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/17997#post307708 Re: Not accepted site for showcase https://www.silverstripe.org/community/forums/showcase-questions/show/17997#post307694 <p>so they only accept sites with the "generator" meta tag :-) <br />I think they should check som /Security/* links </p><p>It's good practice to hide the used CMS.</p> <br /> <p data-swiftype-index="false">Posted to: Not accepted site for showcase | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/17997#post307694" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/17997" class="replyLink">Post Reply</a></p> Tue, 13 Sep 2011 02:40:15 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/17997#post307694 Re: Not accepted site for showcase https://www.silverstripe.org/community/forums/showcase-questions/show/17997#post307618 <p>There is a meta tag in the head part of your website's source code that identifies SS. </p><p><div class="codesnippet"><p>&lt;meta name="generator" content="SilverStripe - <a href="http://silverstripe.org&quot;">http://silverstripe.org"</a> /&gt;</p></div> </p><p>If you have a website profiler installed, you can pull a lot of useful information about what a website's running on. See the attached screenshot of a profiler I ran on my client's site in Chrome. It can be pretty interesting going around looking into what others are using. =D</p> <br /> <p data-swiftype-index="false">Posted to: Not accepted site for showcase | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/17997#post307618" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/17997" class="replyLink">Post Reply</a></p> Sat, 10 Sep 2011 06:28:17 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/17997#post307618 Not accepted site for showcase https://www.silverstripe.org/community/forums/showcase-questions/show/17997 <p>I understand that new submissions to the showcase first must be verified ... <br />I sent in 2 URLs but only 1 was accepted. Both are SS sites. </p><p>How do you check if a site is made with SS?</p> <br /> <p data-swiftype-index="false">Posted to: Not accepted site for showcase | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/17997" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/17997" class="replyLink">Post Reply</a></p> Sat, 10 Sep 2011 00:54:54 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/17997 Re: Help please.. https://www.silverstripe.org/community/forums/showcase-questions/show/17485#post306324 <p>What Sphere says is very accurate - but I understand that this is very strange - if you have an assignment I am guessing that create a database means creates a database <em>with tables and data in SQL</em>. </p><p>Silverstripe is the first time that I've not had to use SQL to create a basic database structure and manage the data (although within my code there is direct SQL). </p><p>Hope this helps!</p> <br /> <p data-swiftype-index="false">Posted to: Help please.. | <a href="https://www.silverstripe.org/community/forums/showcase-questions/show/17485#post306324" class="showLink">Show Thread</a> | <a href="https://www.silverstripe.org/community/forums/showcase-questions/reply/17485" class="replyLink">Post Reply</a></p> Sun, 31 Jul 2011 21:12:57 +1200 https://www.silverstripe.org/community/forums/showcase-questions/show/17485#post306324