MyBB Community Forums

Full Version: Quick Reply Hangs since 1.6.4
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
A few members have been reporting that there have been issues with the quick reply since upgrading to 1.6.4. The Loading... Please Wait just stays there forever. I have been able to reproduce this on Chrome on Mac, but not on Chrome on Windows.

On a side note, after making a like, the same loading screen pops up but then the user is taken to the Thanks... redirect page.
Can you please paste your showthread_quickreply template here ?
Here's one from a modified BlazeBB theme.

<br />
<form method="post" action="newreply.php?tid={$tid}&amp;processed=1" name="quick_reply_form" id="quick_reply_form">
	<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
	<input type="hidden" name="subject" value="RE: {$thread['subject']}" />
	<input type="hidden" name="action" value="do_newreply" />
	<input type="hidden" name="posthash" value="{$posthash}" id="posthash" />
	<input type="hidden" name="quoted_ids" value="" id="quoted_ids" />
	<input type="hidden" name="lastpid" id="lastpid" value="{$last_pid}" />
	<input type="hidden" name="from_page" value="{$page}" />
	<input type="hidden" name="tid" value="{$tid}" />
	<input type="hidden" name="method" value="quickreply" />

	<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
		<thead>
			<tr>
				<td class="thead" colspan="2">
					<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['quickreply']}.gif" id="quickreply_img" class="expander" alt="[-]" title="[-]" /></div>
					<div><strong>{$lang->quick_reply}</strong></div>
				</td>
			</tr>
		</thead>
		<tbody style="{$collapsed['quickreply_e']}" id="quickreply_e">
			<tr>
				<td class="trow1" valign="top" width="22%">
					<strong>{$lang->message}</strong><br />
					<span class="smalltext">{$lang->message_note}<br /><br />
					<label><input type="checkbox" class="checkbox" name="postoptions[signature]" value="1" {$postoptionschecked['signature']} />&nbsp;<strong>{$lang->signature}</strong></label><br />
					<label><input type="checkbox" class="checkbox" name="postoptions[disablesmilies]" value="1" />&nbsp;<strong>{$lang->disable_smilies}</strong></label>{$closeoption}</span><br />{$clickablesmilies}
				</td>
				<td class="trow1">
					<div style="width: 95%">
						<textarea style="width: 100%; padding: 4px; margin: 0;" rows="18" cols="80" name="message" id="message" tabindex="1"></textarea>
{$codebuttons}
					</div>
					<div class="editor_control_bar" style="width: 95%; padding: 4px; margin-top: 3px; display: none;" id="quickreply_multiquote">
						<span class="smalltext">
							{$lang->quickreply_multiquote_selected} <a href="./newreply.php?tid={$tid}&amp;load_all_quotes=1" onclick="return Thread.loadMultiQuoted();">{$lang->quickreply_multiquote_now}</a> {$lang->or} <a href="javascript:Thread.clearMultiQuoted();">{$lang->quickreply_multiquote_deselect}</a>.
						</span>
					</div>
				</td>
			</tr>
			{$captcha}
			<tr>
				<td colspan="2" align="center" class="tfoot"><input type="submit" class="button" value="{$lang->post_reply}" tabindex="2" accesskey="s" id="quick_reply_submit" /> <input type="submit" class="button" name="previewpost" value="{$lang->preview_post}" tabindex="3" /></td>
			</tr>
		</tbody>
	</table>
</form>
URL?? Test account??
Username: Donny
Password: pikachu1

Seems to be working right now on this computer. Odd. I recently deactivated patches. It seems to work on some computers and not on other ones.
It's now not working for me on this computer either. Is it a javascript problem?
IIRC, javascript was updated in 1.6.4. Have you tried reuploading the javascript files?
I have. I did the complete upload.
I just tried the provided test account and the quick reply does not hang after submitting a post. Everything works just fine.

Are any other users experiencing this? If not, and considering that just before it was working for you, I'd say this is an issue with your internet connection.
If you use Chrome or Firefox or something, open Firebug/developer tools when you view the page and then try and submit a post, it'll show you any javascript errors though. Ultimately if it works for some people it's not missing/broken code, otherwise it wouldn't work at all, if it's an intermittent connection problem it could be anything. I mean even here sometimes quick reply or quick edit spins forever, there's no javascript errors or anything, may just be that the browser just doesn't get a response from the server telling it the request went through.
(2011-07-29, 10:19 PM)faviouz Wrote: [ -> ]I just tried the provided test account and the quick reply does not hang after submitting a post. Everything works just fine.

Are any other users experiencing this? If not, and considering that just before it was working for you, I'd say this is an issue with your internet connection.

I doubt it's my connection. From the same connection, I'm going from yes to no, and a lot of the members are, including the forum owner herself.

(2011-07-29, 10:26 PM)MattRogowski Wrote: [ -> ]If you use Chrome or Firefox or something, open Firebug/developer tools when you view the page and then try and submit a post, it'll show you any javascript errors though. Ultimately if it works for some people it's not missing/broken code, otherwise it wouldn't work at all, if it's an intermittent connection problem it could be anything. I mean even here sometimes quick reply or quick edit spins forever, there's no javascript errors or anything, may just be that the browser just doesn't get a response from the server telling it the request went through.

Seems to be a prototype issue according to Developer Tools. The error comes up immediately after hitting "Add Reply." See attachment.
Pages: 1 2 3