MyBB Community Forums

Full Version: Broken link 404. + HTTPS Mixed content
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,
I have 2 issues and i would appreciate any answer and help,thanks.

Issue 1: I have broken link which doesn’t exist in my site. Picture: https://prnt.sc/w8jp3r
https://www.grparrow.com/images/netpen/js/share.js
(Note that i don’t have file with name share.js in the specific location )

Issue 2: I have HTTPS mixed content.
HTTPS mixed content found.
http://localhost/netpen/member.php on https://www.grparrow.com/portal.php
Picture of the situation: https://prnt.sc/w8jp3r

How to fix the issues?
Hi,

Issue 1:
in headerinclude template of your theme, find:
<script type="text/javascript" src="{$mybb->settings['bburl']}/images/netpen/js/share.js"></script>

And delete it (all the line above).

Issue 2:
in portal_welcome_guesttext template of your theme, find:
<form method="post" action="http://localhost/netpen/member.php" style="padding-bottom: 10px;padding-left: 10px;"><input type="hidden" name="action" value="do_login" /><input type="hidden" name="url" value="/portal.php" />

And replace it with:
<form method="post" action="{$mybb->settings['bburl']}/member.php" style="padding-bottom: 10px;padding-left: 10px;"><input type="hidden" name="action" value="do_login" /><input type="hidden" name="url" value="/portal.php" />


Tip: find another Theme (NetPen Theme Last Updated 2018-02-10, 01:37 AM)
Hello ,it worked,thanks for the answer and for your help.