PHPSPellCheck can easily be made to act as the spellchecker for the popular PHPBB forum software.
// PHPBB3/includes/functions.php Line 4683
/**
* Generate page footer
*/
function page_footer($run_cron = true)
{
require "phpspellcheck/include.php";
$mySpell = new SpellAsYouType();
$mySpell->InstallationPath = "phpspellcheck/"; // Relative URL of phpspellcheck within your site
$mySpell->Fields = "ALL";
echo $mySpell->Activate();
...