User Tools

Site Tools


playground:playground

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
playground:playground [2013/11/18 15:50]
Timbow
playground:playground [2014/02/07 10:28]
datiswous [Advanced Configuration: gsconfig.php]
Line 14: Line 14:
  
   * Please make sure you are contactable,​ through the forum or the PM system or by email or through your own site. If there is a problem with your files and you can't be contacted they may be deleted.   * Please make sure you are contactable,​ through the forum or the PM system or by email or through your own site. If there is a problem with your files and you can't be contacted they may be deleted.
-  * Please open a support thread in the GetSimple Forum.+  * Please open a support thread in the GetSimple Forum. use it for additional screenshots and instructions.
   * All files must be in .zip format.   * All files must be in .zip format.
   * The screenshot for the themes comes from a file called screenshot.png within your theme'​s /images/ folder. There is no other way to get a screenshot of your theme attached to your Extend listing. Make sure this file is included in your ZIP file.   * The screenshot for the themes comes from a file called screenshot.png within your theme'​s /images/ folder. There is no other way to get a screenshot of your theme attached to your Extend listing. Make sure this file is included in your ZIP file.
 +  * We have an [[http://​get-simple.info/​wiki/​plugins:​extend_api|API]] so developers can pull data from our database on their plugins, themes or language files.
 +
 +
 +
 +
 +====== Advanced Configuration:​ gsconfig.php ======
 +
 +The file ''​[[http://​code.google.com/​p/​get-simple-cms/​source/​browse/​trunk/​temp.gsconfig.php|gsconfig.php]]''​ is located in the root of your GetSimple installation. You can further configure your site by enabling/​changing some of these constants.
 +
 +
 +===GSEDITORLANG===
 +sets the WYSIWYG editor language (default en)
 +<​code>#​ WYSIWYG editor language (default en)
 +#​define('​GSEDITORLANG',​ '​en'​);</​code>​
 +
 +====GSEDITOROPTIONS====
 +allows you to set additional WYSIWYG Editor Options
 +<​code>#​ WYSIWYG Editor Options
 +#​define('​GSEDITOROPTIONS',​ ''​);</​code>​
 +
 +====GSUSECUSTOMSALT====
 +turns off auto-generation of SALT and use a custom value. Used for cookies & upload security.
 +<​code>#​ Turn off auto-generation of SALT and use a custom value. Used for cookies & upload security.
 +#​define('​GSUSECUSTOMSALT',​ '​your_new_salt_value_here'​);</​code>​
 +
 +====GSFROMEMAIL====
 +allows you to specify the from email address on any outgoing emails that get generated by your GS install
 +<​code>#​ Set email from address
 +#​define('​GSFROMEMAIL',​ '​noreply@get-simple.info'​);</​code>​
 +
 +====setlocale====
 +is a PHP function that you can specify here. This should allow you to set your server'​s locale ​  
 +<​code>#​ Set PHP locale
 +# http://​php.net/​manual/​en/​function.setlocale.php
 +#​setlocale(LC_ALL,​ '​en_US'​);</​code>​
 +
 +
 +**__Since 3.2:__**
 +
 +**GSNOVERCHECK** - Disable persistant header version checking
 +
 +**GSTIMEZONE** - Timezone string for server default timezone
 +
 +**GSNOSITEMAP** - Disable sitemap generation
 +
 +**GSSTYLE** - Set an alternative style, eg. GSSTYLEWIDE
 +
 +**GSDEBUGINSTALL** - Debugging, Prevent removal of install files for debugging installs
 +
 +**GSSUPPRESSERRORS** - reproduce previous GS behavior ragarding php error supression
 +
 +**GSAUTOMETAD** - (since 3.2.2) Enable automatically generated excerpt for meta description (if empty)
 +
 +**__Obsolete Settings:​__** ​
 +
 +**GSPAGER** turns on paging on certain pages such as "All Pages"
 +<​code>#​ Turn on paging for long lists of pages
 +#​define('​GSPAGER',​ TRUE);</​code>​
 +
 +**GSSTORAGE** was never used, there are no other storage structures
 +<​code>#​ Data saving method. Default is XML
 +#​define('​GSSTORAGE',​ '​xml'​);</​code>​
 +
 +**GSCOOKIEISSITEWIDE** if set to TRUE, it allows the frontend of your site to know if you are logged in or not. [deprecated as of 3.1]
 +<​code>#​ Make login cookie available sitewide.
 +#​define('​GSCOOKIEISSITEWIDE',​ TRUE);</​code>​
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
playground/playground.txt ยท Last modified: 2014/05/09 09:24 (external edit)