We've switched to a new bug tracking system!
Project Tools has been set to read-only. Please use the new tracker going forward.
Ajax-stuff not working Issue Tools
issueid=27021 Sun 21st Dec '08 9:21am
Senior Member
Ajax-stuff not working
ajax features such as quick reply and inline edit dont work any longer

Hi,

today I upgraded from 3.8.0 Beta 4 to RC2. Since that, I noticed some problems concerning ajax-features.

Let me take Quick Reply as an example.
If everything goes "well", I see the message that my post is being saved. Then the page is reloaded with a ride-page (You'll be redirected to your post).
But if it does not go well, I see a white page with HTTP-responses, some HTML-source code and finally some unreadable signs (i guess, they come from GZip I use to compress my pages).

I tried to re-upload JS-files from folder "clientscript" which did not work.


Right now with my last try the server offered me to download a "showthread.php". It's content is pretty much what was displayed to me, see above.
I'm going to attach this file so you see what I saw.

Please feel free to test on your own, here's a link:
http://board.rellek.org/test-spam-fo...cht-40227.html
u: testuser
p: vbtest

The same server also hosts a vB 3.7.4 which does not have this issues...

Please contact me if you need more information.
(But please note, I'm usually a vB-Germany-customer, so I can't use the vb.com ticket-system)
This issue is closed. No more replies may be made.
Issue Details
Project vBulletin
Category Text Editor (WYSIWYG, etc)
Status Not a Bug
Priority 2
Affected Version 3.8.0 RC 2
Fixed Version (none)
Users able to reproduce bug 5
Users unable to reproduce bug 3
Assigned Users (none)
Tags (none)

Page 1 of 2 1 2 LastLast
Sun 21st Dec '08 10:08am
Member
 
I'm also experiencing this
Sun 21st Dec '08 11:07am
Member
 
I am also getting this when I upgraded.

There is thread about this in the support for 3.8
Sun 21st Dec '08 11:56am
Senior Member
 
Sun 21st Dec '08 8:25pm
New Member
 
Hello,

please try to modify vbseo.php file to resolve the issue:
FIND:
PHP Code:
return $outbuffer
ADD ABOVE:
PHP Code:
@header ('Content-Length: ' strlen($outbuffer)); 
Sun 21st Dec '08 8:38pm
Member
 
like a charm :) thanks!
Mon 22nd Dec '08 4:00am
Senior Member
 
Thank you, everything is fine now :)

@ vB-Team,
please set the flag to "not a bug" or something... :-)
Sat 3rd Jan '09 8:22pm
Senior Member
 
Quote Originally Posted by iojam
Hello,

please try to modify vbseo.php file to resolve the issue:
FIND:
PHP Code:
return $outbuffer
ADD ABOVE:
PHP Code:
@header ('Content-Length: ' strlen($outbuffer)); 
Excellent, thanks. Seems to have resolved my problem too and I've been racking my brain all day with this. Probably would be a good idea to post up at vbseo, I dug around there too and didn't see anything.
Wed 7th Jan '09 9:11am
Member
 
Quote Originally Posted by ericgtr
Excellent, thanks. Seems to have resolved my problem too and I've been racking my brain all day with this. Probably would be a good idea to post up at vbseo, I dug around there too and didn't see anything.
Golly, you think? I just got done apologizing to vBulletin Tech Support for blaming them.

This issue not only arises in 3.8.0 RC2 but in the latest 3.7.5 upgrade.
Thu 8th Jan '09 5:27am
Member
 
May sound silly but where is this vbseo.php file? I am searching around for it. I feel dumb.

Scratch that. I feel uber dumb. I was looking in the wrong forum altogether.
Thu 8th Jan '09 5:31am
Member
 
Worked like a charm :)
Fri 9th Jan '09 3:18pm
Senior Member
 
Right, but I never ever installed vbseo but I have upgraded to 3.8 today and came across this bug too. What should I do in this case?
Sat 10th Jan '09 1:10pm
New Member
 
Quote Originally Posted by iojam
Hello,

please try to modify vbseo.php file to resolve the issue:
FIND:
PHP Code:
return $outbuffer
ADD ABOVE:
PHP Code:
@header ('Content-Length: ' strlen($outbuffer)); 
Excellent, thanks.
your method resolve the issue
Mon 12th Jan '09 7:00am
New Member
 
I do not have vbseo.php and have the same symptoms.

Only its effectng PM's only... quick reply window is open and contains data and the when the user replies it sits there forever and finally goes to a white screen... happens in IE and FF.
This petition for a change to Awaiting Feedback was rejected
Thu 15th Jan '09 7:03am
Senior Member
 
Any news for those who don't have vbseo installed?
Thu 15th Jan '09 7:10am
Former Senior Developer, vBulletin
 
No. You should be taking it through a ticket/troubleshooting.
Thu 15th Jan '09 7:13am
Senior Member
 
I did. Zachery couldn't find anything...

Alright, sorry for bothering... :(
Sat 17th Jan '09 9:09am
New Member
 
yeah I am having similar problems with Quick Reply and I don't have VBSEO installed. The box is there but, it won't let you type in it at all. I thought that it was just me.
Wed 21st Jan '09 11:50pm
New Member
 
Quote Originally Posted by iojam
Hello,

please try to modify vbseo.php file to resolve the issue:
FIND:
PHP Code:
return $outbuffer
ADD ABOVE:
PHP Code:
@header ('Content-Length: ' strlen($outbuffer)); 
Worked for me. I'm using vb3.8.0 and vbseo 3.20. Thanks, iojam.
Mon 26th Jan '09 6:47pm
New Member
 
Quote Originally Posted by iojam
Hello,

please try to modify vbseo.php file to resolve the issue:
FIND:
PHP Code:
return $outbuffer
ADD ABOVE:
PHP Code:
@header ('Content-Length: ' strlen($outbuffer)); 
This works even with vbSEO 3.1.0?

Also, you add the second line above the first line? You dont replace the forst line with the second line?

So the original code lookes like this:

PHP Code:
$outbuffer preg_replace('#([\";]|\&quot\;)(images/)#s''$1' $vboptions['bburl2'] . '/$2'$outbuffer);
return 
$outbuffer;
}

And it should then look like this?

PHP Code:
$outbuffer preg_replace('#([\";]|\&quot\;)(images/)#s''$1' $vboptions['bburl2'] . '/$2'$outbuffer);
@
header ('Content-Length: ' strlen($outbuffer));
return 
$outbuffer;
}

Am I understanding this correctly?
Mon 26th Jan '09 8:10pm
New Member
 
I added that code, like my example and it seems to be working....

I hope I did it right lol
Closed
Page 1 of 2 1 2 LastLast