MyBB Community Forums

Full Version: NEED HELP QUICK! +REP
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I cannot click ANYTHING in my admin cp. My cookies are right and everything.

I can click mostly everything, just not the "option" button next to themes. I need help ASAP.
it appears that javascript is not loaded for admin panel pages. is it blocked by a browser extension ?
is everything normal at the forum side - like collapse & expansion of categories, inline moderation ..
can we have your forum url
(2013-10-11, 01:38 AM).m. Wrote: [ -> ]it appears that javascript is not loaded for admin panel pages. is it blocked by a browser extension ?
is everything normal at the forum side - like collapse & expansion of categories, inline moderation ..
can we have your forum url

EVERYTHING is normal
http://sintation.com/
navigate to headerinclude template (ungrouped templates) of the theme you are using

find <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
add after above (in a new line) :
<script type="text/javascript">jQuery.noConflict();</script>

save the template and check
(2013-10-11, 01:53 AM).m. Wrote: [ -> ]navigate to headerinclude template (ungrouped templates) of the theme you are using

find <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
add after above (in a new line) :
<script type="text/javascript">jQuery.noConflict();</script>

save the template and check

I can't! I cannot click options...

Edit: just noticed I cannot click into the box to edit the text either...

EDIT AGAIN! It just cleared everything out of HeaderInclude
http://sintation.com/
Check there
Your Headerinclude template is empty.

Go to ACP>Templates & Styles>Templates>YOUR THEME>Ungrouped Templates>Headerinclude(Click on the hyperlink)

Replace everything with:

<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}
@Rob Zombie, would you like to PM me temporary access to admin panel to fix it
(2013-10-11, 02:05 AM).m. Wrote: [ -> ]@Rob Zombie, would you like to PM me temporary access to admin panel to fix it

Skype?

(2013-10-11, 02:04 AM)Arbaz Wrote: [ -> ]Your Headerinclude template is empty.

Go to ACP>Templates & Styles>Templates>YOUR THEME>Ungrouped Templates>Headerinclude(Click on the hyperlink)

Replace everything with:

<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}

Didn't help at all, thank you though.
^ you can revert headerinclude template to original. see this --> Reverting Templates