24
Just let you know that your website is back up and running and the error has been fixed.
if anyone else finds that they have a problem with users registering then check to see if you have a captcha directory in the Frameworks Folder:
Look in the config file for the following lines:
le="color: #000000"><?php if(! @include_once dirname(__FILE__)."/language/{$language}.php") { require_once dirname(__FILE__)."/language/english.php"; }
and change it to the following:
le="color: #000000"><?php if ( !file_exists( dirname( __FILE__ ) . "/language/{$language}.php" ) ) { if ( file_exists( dirname( __FILE__ ) . "/language/english.php" ) ) { include dirname( __FILE__ ) . "/language/english.php"; } } else { include dirname( __FILE__ ) . "/language/{$language}.php"; }