MyBB Community Forums

Full Version: all links broken, point to html files
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
For some reason http://social.sehcgamers.com has completely gone bezerk.

First, my editor tools for new threads etc completely disappears, now every link on the forums pointing to threads or anything points to html files instead of to the proper php references, so all links are broken. What the hell?

(2013-06-21, 12:57 AM)asoldier Wrote: [ -> ]For some reason http://social.sehcgamers.com has completely gone bezerk.

First, my editor tools for new threads etc completely disappears, now every link on the forums pointing to threads or anything points to html files instead of to the proper php references, so all links are broken. What the hell?
So every link, instead of pointing to its respective php file and paremeters, instead points to simple html pages, which do not exist.

What the heck?!
Have you added any SEO plugins lately, mainly ones dealing with "Clean URLs"?
rename htaccess.txt at the forum root folder as .htaccess or disable search engine friendly URLs at below setting
admin panel >> configuration >> settings >> Server and Optimization Options --> Enable search engine friendly URLs?

edit: editor tools disappearance is related to jQuery conflict.
forum should load jQuery once only and noconflict code needs to be added after the load.
<script type="text/javascript">jQuery.noConflict();</script>
didn't need to change htaccess, did change settings and disabled the friendly URLs... now for the jquery fix

Can you help sort this out?

<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" />
<link rel="stylesheet" href="{$mybb->settings['bburl']}/css/colorpicker.css" type="text/css" />
<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']}/FCChat/js/embed.js"></script>
<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>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/jquery.js"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/colorpicker.js"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/eye.js"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/utils.js"></script>
<script type="text/javascript" src="{$mybb->settings['bburl']}/jscripts/profiledesign.js"></script>

<!--[if lt IE 7.]>
<script defer type="text/javascript" src="jscripts/pngfix.js"></script>
<![endif]-->
<!-- Start VideoLightBox.com HEAD section -->
        <link rel="stylesheet" href="youtube_videolb/videolightbox.css" type="text/css" />
        
            <link rel="stylesheet" type="text/css" href="youtube_videolb/overlay-minimal.css"/>
            <script src="youtube_videolb/jquery.js" type="text/javascript"></script>
<script type="text/javascript">jQuery.noConflict();</script>
            <script src="youtube_videolb/swfobject.js" type="text/javascript"></script>
<!-- End VideoLightBox.com HEAD section -->{$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>
<script type="text/javascript" src="jscripts/thx.js"></script>
<script type="text/javascript" src="http://social.sehcgamers.com/FCChat/js/embed.js"></script>{$newpmmsg}<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"><script type="text/javascript">jQuery.noConflict();</script>

saw the duplicate jquery.min.js, thanks for the help