Hello, [im using GS v3.1]
If i try to add pictures to a new gallery, it says: " You are not logged in"
....and yes.... i already searched in this forum or in google about this problem, but it always says:
So i opened the gsconfig.php- file and searched for the GSCOOKIESITEWIDE stuff...
i didnt found it, thats why i added by my own:
and i even made sure to type in the entire name of the website (www.ABCDE.com)
..... but it still says: "You are not logged in"
So what did i do wrong?
Heres my entire gsconfig.php code:
If i try to add pictures to a new gallery, it says: " You are not logged in"
....and yes.... i already searched in this forum or in google about this problem, but it always says:
Quote:"enable sitewide cookies in your gsconfig.php - remove the # in front of define('GSCOOKIEISSITEWIDE', TRUE);"
So i opened the gsconfig.php- file and searched for the GSCOOKIESITEWIDE stuff...
i didnt found it, thats why i added by my own:
Code:
# Make login cookie available sitewide.
define('GSCOOKIEISSITEWIDE', TRUE);
and i even made sure to type in the entire name of the website (www.ABCDE.com)
..... but it still says: "You are not logged in"
So what did i do wrong?
Heres my entire gsconfig.php code:
Quote:<?php
/**
* GSConfig
*
* The base configurations for GetSimple
*
* @package GetSimple
*/
/** Prevent direct access */
if (basename($_SERVER['PHP_SELF']) == 'gsconfig.php') {
die('You cannot load this page directly.');
};
/*****************************************************************************/
/** Below are constants that you can use to customize how GetSimple operates */
# Make login cookie available sitewide.
define('GSCOOKIEISSITEWIDE', TRUE);
# Extra salt to secure your password with. Default is empty for backwards compatibility.
#define('GSLOGINSALT', 'your_unique_phrase');
# Turn off auto-generation of SALT and use a custom value. Used for cookies & upload security.
#define('GSUSECUSTOMSALT', TRUE);
# Default thumbnail width of uploaded image
#define('GSIMAGEWIDTH', '200');
# Change the administrative panel folder name
#define('GSADMIN', 'admin');
# Turn on debug mode
#define('GSDEBUG', TRUE);
# Ping search engines upon sitemap generation?
define('GSDONOTPING', 1);
# Turn off CSRF protection. Uncomment this if you keep receiving the error message "CSRF error detected..."
#define('GSNOCSRF', TRUE);
# Set override CHMOD mode
#define('GSCHMOD', 0755);
# Enable Canonical Redirects?
#define('GSCANONICAL', 1);
# Use Uploadify to upload files?
#define('GSNOUPLOADIFY', 1);
# WYSIWYG editor height (default 500)
#define('GSEDITORHEIGHT', '400');
# WYSIWYG toolbars (advanced, basic or [custom config])
define('GSEDITORTOOL',"['Cut','Copy','Paste','PasteFromWord','-','Undo','Redo','Find','Replace','-','SelectAll'],
['Bold', 'Italic', 'Underline', 'NumberedList', 'BulletedList','JustifyLeft','JustifyCenter','JustifyRight',
'JustifyBlock', 'Table', 'TextColor', 'BGColor', 'Link','Unlink', 'Image', 'RemoveFormat', 'Source'],
'/',
['Styles','Format','Font','FontSize']
");
# WYSIWYG editor language (default en)
#define('GSEDITORLANG', 'en');
# WYSIWYG Editor Options
#define('GSEDITOROPTIONS', '');
# Set email from address
#define('GSFROMEMAIL', 'noreply@get-simple.info');
# Autosave within edit.php. Value is the autosave interval in seconds
#define('GSAUTOSAVE', 900);
# Enable the External API to be shown on settings page
#define('GSEXTAPI', 1);
# Set PHP locale
# http://php.net/manual/en/function.setlocale.php
#setlocale(LC_ALL, 'en_US');
# Disable loading of external CDN versions of scripts (jQuery/jQueryUI)
#define("GSNOCDN",true);
?>