Page 1 of 1

Weird Characters

Posted: Sat Sep 25, 2004 9:19 pm
by Cammet
I am writting a bulletin board type script. Occasionally when i press submit to submit a new message instead of getting the next page i get a page filed with weird characters this also happens sometimes when i hit the back button after the page has been submitted. here are the chartacters.

---------------------------------------------------------------------------
‹íZ{oÛ8ÿ?Ÿ‚Õb×Àîú!;vœ¬¬Âyø®@ÚæbïÅ^aPmq#‰:’vš~úR”,Ùq®i¼hŠ3aØ¢IÎ g~œ‡$'”qä8!ÁüH*#âN¨h˜è”ŽÎB,9c±ÓÌFœ˜HŒB)Ó:ùÏ‚.ÖK$Id}rŸ ùYo`IòI6ƒß

Posted: Sat Sep 25, 2004 9:34 pm
by John Cartwright
When dealing with a company's software, it is best to ask their support forum for the best results.

Posted: Sat Sep 25, 2004 9:45 pm
by Cammet
I thought i would post it here because i honestly thought it would be php related, thought i might have a error in my script causeing this kind of output?

Posted: Sun Sep 26, 2004 12:39 am
by feyd
looks kinda like compressed output. Check the compressor it's using.. maybe you accidentally echo'd out data when it needed to go through the compressor, thus creating an error'd buffer for the browser to read.. This happens here, because we use gzip compressed output.. so if I had added some debugging code that echo's.. I get a bunch of binary "garbage" after my debug text.

Posted: Sun Sep 26, 2004 9:52 am
by Cammet
Thanks :) Seems To Of just done the trick :)