MyBB Community Forums

Full Version: Quick Reply's Loading Icon loading forever
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Great day for everyone. This is my first post and apparently, I'm coming for some assistance.

I had been reading the forum already for the same issue as mine which can be found on these links:
...apparently, it didn't helped me that much.

Problem Description:
Please visit http://webforums.ph/ and login as test / test101 (user/pass). Post anything on any thread using the "quick reply" form and you'll see the loading image staying there. (The forum is posted fine though), so only removing of the image and refreshing of the page is missing.

I didn't really meant to bother you with this error but it beats me to it. With MyBB's support's experience, I hope you can point out what I probably messed up.


Hoping for some response.
Do you happen to be running some other form of Javascript or jQuery on your forum? Possible drop down menu, etc?

Does your inline post moderation work as usual, does your edit drop down box appear?
As far as JS, the only one running on the background is that "fit on page" plugin. However, I have removed this already and the issue is still reproducible.

My inline post moderation is fine. Everything is fine except this loading image that's showing like forever.
(2011-03-26, 06:53 AM)rangana Wrote: [ -> ]As far as JS, the only one running on the background is that "fit on page" plugin. However, I have removed this already and the issue is still reproducible.

My inline post moderation is fine. Everything is fine except this loading image that's showing like forever.

Definitely a Javascript issue, I'm investigating right now.
(2011-03-26, 06:58 AM)The Elite Wrote: [ -> ]Send me the content of your headerinclude template so I can be sure please.

Here's the content of my headerinclude.
{$mmt_keywords}
{$mmt_description}
<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=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>
{$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>{$newpmmsg}
<script type="text/javascript" src="jscripts/shoutbox.js?ver=121"></script>


Thanks!
Have you tried disabling the Facebook like button on posts? Do you still have that problem then?
Amazing! That caused it. Removing the FB Like indeed fixed the issue. But do you have an idea why?

That FB like was a customization I did, but I was very meticulous doing it so instead of using FBML, I opted the iframe method and had this running:
<?php
$uri = $_SERVER['REQUEST_URI'];
$url = 'http://webforums.ph'.$uri;
$url = urlencode($url);

echo '<iframe src="http://www.facebook.com/plugins/like.php?href='.$url.'&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=tahoma&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:485px; height:20px;" allowTransparency="true"></iframe>';
?>

Do you see something wrong on it?
Can you enable it again please? So I can investigate a bit further?
Actually, I turned it back on and this time, I used the XFBML version and it worked. My bad. I guess the issue can now be marked as solved.

Thanks for Aries and "The Elite" for helping me point out the issue. Much appreciated!
Good that it's working now Wink
Pages: 1 2 3