MyBB Community Forums

Full Version: This webpage is not available (smf -> mybb) [solved]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!
I'm using:
* latest mybb installation (clean)
* latest merge system package
* smf 2.0 (clean installation, no mods)
*localhost + wamp server (locally on my computer)

Everything merges fine except posts - when I try to merge posts, I get
"This webpage is not available
The connection to localhost was interrupted.
Error 101 (net::ERR_CONNECTION_RESET): The connection was reset."

Could someone be kind enough to look into this problem and maybe help me?
I tried two times changing 'post count in one page' from 1000 to 100 but I had no luck.

Okay, if someone steps onto this problem:

my SO found the problem and solution:


find function marked as
// These functions can have significant load or crash if the string passed is too long.
if(strlen($string) < 1024*5)
 {
  return (preg_match('#^(?:
              [\x09\x0A\x0D\x20-\x7E]
            | [\xC2-\xDF][\x80-\xBF]
            |  \xE0[\xA0-\xBF][\x80-\xBF]
            | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2}
            |  \xED[\x80-\x9F][\x80-\xBF]
            |  \xF0[\x90-\xBF][\x80-\xBF]{2}
            | [\xF1-\xF3][\x80-\xBF]{3}
            |  \xF4[\x80-\x8F][\x80-\xBF]{2}
        )*$#xs', $string) != 0);
 }
into functions.php file and disable it.