The following warnings occurred:
Warning [2] Undefined array key "threadviews_countguests" - Line: 745 - File: showthread.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/showthread.php 745 errorHandler->error_callback
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/inc/functions_post.php 830 postParser->parse_message
/showthread.php 916 build_postbit
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/inc/functions_post.php 861 postParser->parse_message
/showthread.php 916 build_postbit
Warning [2] Undefined property: MyLanguage::$thread_modes - Line: 46 - File: showthread.php(1650) : eval()'d code PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/showthread.php(1650) : eval()'d code 46 errorHandler->error_callback
/showthread.php 1650 eval




Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
3.3.0 and custom Editor Toolbar
#3
Let me test a bit more.

If I comment out the WYSIWYG Toolbars section then the editor works as normal, so maybe it is that.

This is ordinary 3.3.0, I did overwrite again in case I had confused it with the patch_cke_4.3.2 thing.

Plugins are Abs Link Fixer, Child Menu, Cust Title, i18nGallery, Imagizer, Multi User. I am using a editor.css. This is the entire gsconfig
PHP Code:
<?php
/**
 * GSConfig
 *
 * Edited by TRW for JanetP's Site    
 *
 * @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 */ 

# 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', 'your_new_salt_value_here');

# Default thumbnail width of uploaded image
define('GSIMAGEWIDTH''120');

# 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',"['Paste','PasteFromWord','Bold', 'Italic', 'Underline', 'NumberedList', 'BulletedList','JustifyLeft','JustifyCenter','JustifyRight',
'JustifyBlock', 'TextColor', 'BGColor', 'Link', 'Image', 'HorizontalRule', 'RemoveFormat'],
'/',
['Format', 'Source']
"
);

# 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');

# Define default timezone of server, accepts php timezone string
# valid timeszones can be found here http://www.php.net/manual/en/timezones.php
# define('GSTIMEZONE', 'America/Chicago');

# Disable loading of external CDN versions of scripts (jQuery/jQueryUI)
#define("GSNOCDN",true);

# Disable Codemirror theme editor
#define("GSNOHIGHLIGHT",true);

# Forces suppression of php errors when GSDEBUG is false, despite php ini settings
 
define('SUPPRESSERRORS',true);

# Disable check for Apache web server, default false
#define('GSNOAPACHECHECK', true);

# Disable header version check
define('GSNOVERCHECK'true);

# Enable alternate admin styles, current style constants are
# note: stylesheets are cached
# GSSTYLEWIDE = wide fluid
# define('GSSTYLE',GSSTYLEWIDE);

# Disable Sitemap generation and menu items
# define('GSNOSITEMAP',true);

# Enable auto meta descriptions from content excerpts when empty
# define('GSAUTOMETAD',true);

?>
Reply


Messages In This Thread
3.3.0 and custom Editor Toolbar - by Timbow - 2014-01-31, 23:31:53
RE: 3.3.0 and custom Editor Toolbar - by shawn_a - 2014-02-01, 00:02:02
RE: 3.3.0 and custom Editor Toolbar - by Timbow - 2014-02-01, 00:21:18
RE: 3.3.0 and custom Editor Toolbar - by shawn_a - 2014-02-01, 01:08:48
RE: 3.3.0 and custom Editor Toolbar - by shawn_a - 2014-02-01, 01:11:59
RE: 3.3.0 and custom Editor Toolbar - by shawn_a - 2014-02-01, 01:12:45
RE: 3.3.0 and custom Editor Toolbar - by Timbow - 2014-02-01, 02:19:35
RE: 3.3.0 and custom Editor Toolbar - by shawn_a - 2014-02-01, 03:21:25
RE: 3.3.0 and custom Editor Toolbar - by Timbow - 2014-02-01, 03:33:25
RE: 3.3.0 and custom Editor Toolbar - by shawn_a - 2014-02-01, 03:55:05
RE: 3.3.0 and custom Editor Toolbar - by Timbow - 2014-02-01, 08:06:26
RE: 3.3.0 and custom Editor Toolbar - by shawn_a - 2014-02-01, 08:29:32
RE: 3.3.0 and custom Editor Toolbar - by shawn_a - 2014-02-01, 08:40:07
RE: 3.3.0 and custom Editor Toolbar - by shawn_a - 2014-02-01, 13:42:55
RE: 3.3.0 and custom Editor Toolbar - by shawn_a - 2014-02-01, 13:49:54
RE: 3.3.0 and custom Editor Toolbar - by shawn_a - 2014-02-01, 13:51:53
RE: 3.3.0 and custom Editor Toolbar - by shawn_a - 2014-02-01, 14:19:02
RE: 3.3.0 and custom Editor Toolbar - by Timbow - 2014-02-03, 05:34:47
RE: 3.3.0 and custom Editor Toolbar - by shawn_a - 2014-02-03, 07:07:56



Users browsing this thread: 2 Guest(s)