2013-12-16, 02:59 PM
Hello All,
I am facing a big problem on my forum.
I recently installed a wysiwyg editor http://mods.mybb.com/view/ckeditor-wysiwyg-editor
And then uninstalled it. But since then the shoutbox would stay stuck at "loading", and the images too won't load.
Though i checked that the images are in the correct folder
They do open if i open them from their direct links. or by right clicking and selecting "open image in new tab"
So i figured it could be an issue raised due to some jquery error, and found out that i need to check for multiple jquery entries in my headerinclude file
This is where i am stuck right now
This has messed up my head for good 2-3 hours now.
Appreciate it, even if you are taking out the time at having a look at my problem.
I am facing a big problem on my forum.
I recently installed a wysiwyg editor http://mods.mybb.com/view/ckeditor-wysiwyg-editor
And then uninstalled it. But since then the shoutbox would stay stuck at "loading", and the images too won't load.
Though i checked that the images are in the correct folder
They do open if i open them from their direct links. or by right clicking and selecting "open image in new tab"
So i figured it could be an issue raised due to some jquery error, and found out that i need to check for multiple jquery entries in my headerinclude file
This is where i am stuck right now
<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=1603"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/general.js?ver=1603"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/popup_menu.js?ver=1600"></script>
{$stylesheets}
<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>
{$newpmmsg}
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/tabcontent.js">
/***********************************************
* Tab Content script v2.2- copyright Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
</script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link href='http://fonts.googleapis.com/css?family=Roboto:400,500,500italic,400italic' rel='stylesheet' type='text/css'>
<script>
jQuery.noConflict();
jQuery(document).ready(function($) {
if ($('.pm_count').text() != '0') {
$('.pm_count').css({backgroundColor: "#fff", color: "#202020"});
}
currentPage = $(document).find("title").text();
if (currentPage.indexOf('Search') != -1)
{
$('.menu li a.search').addClass('active');
}
else if (currentPage.indexOf('Member List') != -1)
{
$('.menu li a.memberlist').addClass('active');
}
else if (currentPage.indexOf('Help Documents') != -1)
{
$('.menu li a.help').addClass('active');
}
else if (currentPage.indexOf('NonEx') == -1)
{
$('.menu li a.forums').addClass('active');
}
//$('ul.navigation li:first-child').text(
// $('ul.navigation li:first-child').text().replace('-', ' ')
//);
});</script>
Can anyone please help me out with this.This has messed up my head for good 2-3 hours now.
Appreciate it, even if you are taking out the time at having a look at my problem.