Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Spell Checker
blizeH
✭✭
... isn't functioning correctly, it doesn't seem to matter what you type now, it'll search for spelling corrections, idle for about 10 seconds and return saying that it didn't find any problems, huge shame because the spell checker was bloody fantastic!
Using the v1.0 pre-release btw.
Using the v1.0 pre-release btw.
0
This discussion has been closed.
Comments
/bangs head against desk
Why's my Vanilla installation breaking so much all of a sudden? We've had no problems for 5 months or maybe even more, yet all of a sudden everything seems to be breaking.
<?php // Thanks to: // Marcin 'nosferathoo' Puchalski // Johan Sijbesma // James Edgington // Stephen Wald $google = "www.google.com"; $lang=$_GET['lang']; $path="/tbproxy/spell?lang=$lang"; $data = file_get_contents('php://input'); $store = ""; $fp = fsockopen("ssl://".$google, 443, $errno, $errstr, 30); if ($fp) { $out = "POST $path HTTP/1.1\r\n"; $out .= "Host: $google\r\n"; $out .= "Content-Length: " . strlen($data) . "\r\n"; $out .= "Content-type: application/x-www-form-urlencoded\r\n"; $out .= "Connection: Close\r\n\r\n"; $out .= $data; fwrite($fp, $out); while (!feof($fp)) { $store .= fgets($fp, 128); } fclose($fp); } print $store; ?>
'var g = new GoogieSpell("./' . $ExtPath . 'googiespell/", "' .
to this:
'var g = new GoogieSpell("/' . $ExtPath . 'googiespell/", "' .
and your image paths will work as expected.