MyBB Community Forums

Full Version: Rep system not working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
MyBB version: 1.8.26

Link: https://xdotspy.xyz/forum

Problem is that where the Rate button is, href is set to javascript void. I guess that needs to be changed in order for the rep system to work
The href is correct, clicking it triggers some javascript so it suggests a javascript issue on the board. Can you provide a test account?
(2021-05-23, 07:07 PM)Matt Wrote: [ -> ]The href is correct, clicking it triggers some javascript so it suggests a javascript issue on the board. Can you provide a test account?
Yes here is the test account:

NotZiggy
Testing6666@
Hm, can you go to ACP > Templates & Style > Templates > find the template set for your theme > Ungrouped Templates > headerinclude > can you paste the contents of that here (inside a [code] tag) please?
(2021-05-23, 07:20 PM)Matt Wrote: [ -> ]Hm, can you go to ACP > Templates & Style > Templates > find the template set for your theme > Ungrouped Templates > headerinclude > can you paste the contents of that here (inside a
 tag) please?[/quote]
[code]<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=1823"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.plugins.min.js?ver=1821"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/general.js?ver=1821"></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 templates = {
		modal: '{$jsTemplates['modal']}',
		modal_button: '{$jsTemplates['modal_button']}'
	};

	var cookieDomain = "{$mybb->settings['cookiedomain']}";
	var cookiePath = "{$mybb->settings['cookiepath']}";
	var cookiePrefix = "{$mybb->settings['cookieprefix']}";
	var cookieSecureFlag = "{$mybb->settings['cookiesecureflag']}";
	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='' />";
	var modal_zindex = 9999;
// -->
</script>
Okay, can you go to ACP > Configuration > Site Details > make sure the Board URL setting is https:// and not http://
(2021-05-23, 07:28 PM)Matt Wrote: [ -> ]Okay, can you go to ACP > Configuration > Site Details > make sure the Board URL setting is https:// and not http://
ok I did this

Ok this solved the problem thank you for solving this problem.