Disclaimer. I don’t know step one about writing php code, infact can just about spell .php 3 out of 4 times correctly with references, so edit at your own risk. LOL
I am using WP 2.7.1, mostly the default setting, and default directory structure.
Error # 1
Warning: require(/******/blog/wp-content/spell-plugin/spellInclude.php)
[function.require]: failed to open stream: No such file or directory in
**********/blog/wp-content/plugins/spell-plugin.php on line 36
——
spellInclude.php is not in the /wp-content/spell-plugin subdirectory, it is in the wp-content/plugins/spell-checker subdirectory. In note pad I just used find and replace to replace spell-plugin with plugins/spell-checker.
Takes us to error # 2
Warning: require_once (/******/blog/wp-content/wp-config.php) [function.require-once]: failed to open stream: No such file or directory in *******/blog/wp-content/plugins/spell-checker/spellInclude.php on line 7
——-
wp-config.php is not in /blog/wp-content, it is in /blog. In the spellInclude.php file I changed
require_once (dirname(dirname(__FILE__)) . “wp-config.php”);
To read
require_once (dirname(dirname(dirname(__FILE__))) . “wp-config.php”);
After these changes I was able to get the Spell Checker widget to activate. I have made the changes I want to the Spell Check config page in my Admin Dashboard, and I see the spell check icon when I post a new comment. What I can’t figure out, from the Install instructions on the WP plugin page, is how do I get the spell checker to work for comments?
Hope someone can HELP!!!!MJI