Page 1 of 1

ArrowChat freezing on phpFox

PostPosted: 17 Sep 2012, 08:04
by Jason
If you are having trouble with ArrowChat freezing on phpFox, follow these instructions:

Open the /static/jscript/main.js file

Find:
$('*').unbind();


Replace with:
$('#main_core_body_holder *').unbind();


phpFox has fixed this. This fix only applies to version 3.4 and below.

PostPosted: 20 Sep 2012, 08:15
by tamman
Worked perfectly! Thank You

PostPosted: 12 Nov 2012, 06:34
by SCarrier
Did not fix for me.

PostPosted: 19 Nov 2012, 02:48
by tselaty
Sadly, this causes another problem where users are unable to interact with feed items as they're loaded in after the page load (eg: commenting).

This is because the loadInit function unbinds everything on the page, which is pretty silly.

/static/jscript/main.js

Replace the loadInit's:
$("*").unbind();
with
$("#main_core_body_holder *").unbind();

PostPosted: 19 Nov 2012, 13:04
by Jason
tselaty wrote:Sadly, this causes another problem where users are unable to interact with feed items as they're loaded in after the page load (eg: commenting).

This is because the loadInit function unbinds everything on the page, which is pretty silly.

/static/jscript/main.js

Replace the loadInit's:
$("*").unbind();
with
$("#main_core_body_holder *").unbind();

Well, that explains it. Thank you for the fix!

PostPosted: 07 Jan 2013, 09:11
by pcosmin
can u please be more specific? which line ? i have searched for 30 min and i didn't find it

PostPosted: 07 Jan 2013, 12:05
by Jason
pcosmin wrote:can u please be more specific? which line ? i have searched for 30 min and i didn't find it

Are you looking line-by-line? That would take a while :)

Press Ctrl+F on your keyboard and paste the code in there. It will jump to it instantly. Make sure you don't add any spaces.

PostPosted: 07 Jan 2013, 13:01
by pcosmin
:) ..great,i found it.. i never knew about this shortcut with ctrl+f ..and i work on websites since 2009 :) ..thanks a lot Jason.

Topic Closed

PostPosted: 16 Dec 2014, 00:26
by Staff Bot
[b]This thread has been locked because the last post is greater than six months old. There is a good chance that the information in this thread is outdated. Please open a new topic if you wish to discuss this further.[/b]