MyBB Community Forums

Full Version: Editor Missing, like many people
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
The editor is missing from my forum after upgrade.  

<link rel="alternate" type="application/rss+xml" title="{$lang->latest_threads} (RSS 2.0)" href="{$mybb->settings['bburl']}/syndication.php" />
<link rel="alternate" type="application/atom+xml" title="{$lang->latest_threads} (Atom 1.0)" href="{$mybb->settings['bburl']}/syndication.php?type=atom1.0" />
<meta http-equiv="Content-Type" content="text/html; charset={$charset}" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.js?ver=1800"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.plugins.min.js?ver=1800"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/general.js?ver=1800"></script>

{$stylesheets}
<script type="text/javascript">
<!--
	lang.unknown_error = "{$lang->unknown_error}";

	lang.select2_match = "{$lang->select2_match}";
	lang.select2_matches = "{$lang->select2_matches}";
	lang.select2_nomatches = "{$lang->select2_nomatches}";
	lang.select2_inputtooshort_single = "{$lang->select2_inputtooshort_single}";
	lang.select2_inputtooshort_plural = "{$lang->select2_inputtooshort_plural}";
	lang.select2_inputtoolong_single = "{$lang->select2_inputtoolong_single}";
	lang.select2_inputtoolong_plural = "{$lang->select2_inputtoolong_plural}";
	lang.select2_selectiontoobig_single = "{$lang->select2_selectiontoobig_single}";
	lang.select2_selectiontoobig_plural = "{$lang->select2_selectiontoobig_plural}";
	lang.select2_loadmore = "{$lang->select2_loadmore}";
	lang.select2_searching = "{$lang->select2_searching}";

	var cookieDomain = "{$mybb->settings['cookiedomain']}";
	var cookiePath = "{$mybb->settings['cookiepath']}";
	var cookiePrefix = "{$mybb->settings['cookieprefix']}";
	var deleteevent_confirm = "{$lang->deleteevent_confirm}";
	var removeattach_confirm = "{$lang->removeattach_confirm}";
	var loading_text = '{$lang->ajax_loading}';
	var saving_changes = '{$lang->saving_changes}';
	var use_xmlhttprequest = "{$mybb->settings['use_xmlhttprequest']}";
	var my_post_key = "{$mybb->post_code}";
	var rootpath = "{$mybb->settings['bburl']}";
	var imagepath = "{$theme['imgdir']}";
  	var yes_confirm = "{$lang->yes}";
	var no_confirm = "{$lang->no}";
	var MyBBEditor = null;
	var spinner_image = "{$theme['imgdir']}/spinner.gif";
	var spinner = "<img src='" + spinner_image +"' alt='' />";
// -->
</script>

My headerinclude looks fine to me.  I uninstalled all plugins (though some left templates regardless of being uninstalled) and removed all custom themes.  I reverted the default theme.  

setonfossilsclub.harrisflock.com

Any clues?  

Quick edit is not working on this website.

user: mybbtest
pass: testthesite
Try this: http://community.mybb.com/thread-158870-...pid1100165 (method number 1). Then force that theme as default.

(2014-09-08, 01:56 AM)HolyPhoenix Wrote: [ -> ]Quick edit is not working on this website.

Which website? If you mean the community forums, it works just fine for me. Which browser are you using?
(2014-09-08, 02:16 AM)Destroy666 Wrote: [ -> ]Try this: http://community.mybb.com/thread-158870-...pid1100165 (method number 1). Then force that theme as default.


(2014-09-08, 01:56 AM)HolyPhoenix Wrote: [ -> ]Quick edit is not working on this website.

Which website? If you mean the community forums, it works just fine for me. Which browser are you using?

Recreating the default theme didn't fix the issue.  I still have no editor.  

If this message is here, I was able to edit my message successfully.

Yeah this website with Chrome edit is not working(or was not, I have to try again today).  I would hit submit and the new text would not be saved.  This was more of a side note since I was trying to edit my previous message.  I'll see if I can create a support topic on this site for the issue.  

If this message is here, I was able to edit my message successfully.

I'm curious if my having sceditor plugin on previously (even though I uninstalled it) could have done something?
The editor works fine for me on your forum.
(2014-09-08, 03:05 PM)StefanT Wrote: [ -> ]The editor works fine for me on your forum.

Woah.  It works with the new user, but not my old user.  

Is there some sort of setting for disabling it per user basis that somehow got set to false?  

Turns out I had "Show the MyCode formatting options on the posting pages." unchecked and it hid sceditor as well as my smilies from view.
(2014-09-08, 03:13 PM)HolyPhoenix Wrote: [ -> ]
(2014-09-08, 03:05 PM)StefanT Wrote: [ -> ]The editor works fine for me on your forum.

Woah.  It works with the new user, but not my old user.  

Is there some sort of setting for disabling it per user basis that somehow got set to false?  


Turns out I had "Show the MyCode formatting options on the posting pages." unchecked and it hid sceditor as well as my smilies from view.

I have replied and started more threads on this subject than I can count, and it really was as simple as that setting. Geez. Is there a way to make sure this is checked by default when people are creating an account?
^ @user25 it should be already checked by default. anyway you can try below SQL queries
ALTER TABLE `mybb_users` CHANGE `showcodebuttons` `showcodebuttons` tinyint(1) NOT NULL default '1';
UPDATE `mybb_users` SET `showcodebuttons` = '1' WHERE `showcodebuttons` = '0';
see also SQL queries guidance if required