MyBB Community Forums

Full Version: text editer function not showing....
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
mybb 1.6.4 text editor function not showing


[Image: dez3PJ.png]

and i am read in any post that some change in tamplate
Quote:RE: TextEditor doesn't Appear
1. Go to Admin CP > Templates & Style > Templates > Your Template Set > Ungrouped Templates > headerinclude.

2. Find:


<script src="http://www.google.com/jsapi" type="text/javascript"></script><script type="text/javascript">google.load('jquery', '1.3.2');</script>
3. Replace with:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>


but there not any such code in my template ...
my haderinclude template
<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->settings['bburl']}/jscripts/prototype.js?ver=1400"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/general.js?ver=1400"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/popup_menu.js?ver=1400"></script>
{$stylesheets}
<script LANGUAGE="JavaScript">
function CC_noErrors() {
return true;
}

window.onerror = CC_noErrors;
</script> 
<script type="text/javascript">
<!--
	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 imagepath = "{$theme['imgdir']}";
// -->
</script>
<script type="text/javascript" src="jscripts/thx.js"></script>{$newpmmsg}


so how can i solve that problem ...

(2011-09-17, 11:30 AM)royal_kerry Wrote: [ -> ]mybb 1.6.4 text editor function not showing


[Image: dez3PJ.png]

and i am read in any post that some change in tamplate
Quote:RE: TextEditor doesn't Appear
1. Go to Admin CP > Templates & Style > Templates > Your Template Set > Ungrouped Templates > headerinclude.

2. Find:


<script src="http://www.google.com/jsapi" type="text/javascript"></script><script type="text/javascript">google.load('jquery', '1.3.2');</script>
3. Replace with:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>


but there not any such code in my template ...
my haderinclude template
<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->settings['bburl']}/jscripts/prototype.js?ver=1400"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/general.js?ver=1400"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/popup_menu.js?ver=1400"></script>
{$stylesheets}
<script LANGUAGE="JavaScript">
function CC_noErrors() {
return true;
}

window.onerror = CC_noErrors;
</script> 
<script type="text/javascript">
<!--
	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 imagepath = "{$theme['imgdir']}";
// -->
</script>
<script type="text/javascript" src="jscripts/thx.js"></script>{$newpmmsg}


so how can i solve that problem ...

Disable all plugins and see if the options return then switch them on again (one at a time is best) to perhaps find the conflict ...
thank's for replay i am try to disable all plugin but not solve but now my problem gone away far from my forum .

with Admin CP, so go to Admin CP > Configuration > Settings > Clickable Smilies and BB Code > Clickable MyCode Editor > On.

thank's for support Smile
Ensure that in new thread template you have the following codes
<tr>
<td class="trow2" valign="top"><strong>{$lang->your_message}</strong>{$smilieinserter}</td>
<td class="trow2">
<textarea name="message" id="message" rows="20" cols="70" tabindex="2">{$message}</textarea>
{$codebuttons}
{$multiquote_external}
</td>
</tr>
(2011-09-17, 11:43 AM)sunjava1 Wrote: [ -> ]Ensure that in new thread template you have the following codes
<tr>
<td class="trow2" valign="top"><strong>{$lang->your_message}</strong>{$smilieinserter}</td>
<td class="trow2">
<textarea name="message" id="message" rows="20" cols="70" tabindex="2">{$message}</textarea>
{$codebuttons}
{$multiquote_external}
</td>
</tr>

bro my problem solve after

Admin CP, so go to Admin CP > Configuration > Settings > Clickable Smilies and BB Code > Clickable MyCode Editor > On.

anyway thank's for quick support Smile i am new in mybb
Yeah Its good!