I’m trying to add the Spelling Checker Plugin. It doesn’t work in safe_mode. I’m trying to change that. Let’s see if this can be spell-checked and posted.
Yes, it works!!
Here is a summary of the changes I made to the original code version Beta 1.17 14-March-2005. I hope the author of the plugin will be able to make this post obsolete by folding the changes into his plugin.
First, the conditions under which this was tested:
My hosting ISP provides PHP running in safe mode with safe_mode_exec_dir set to “.” and PHP built –with-pspell. That means that aspell is installed on the server. It is in/usr/bin/aspell.
I installed WordPress using PHP built as a cgi and called with CGIWrap using the techniques described in Securing PHP applications at Sonic.net. That may have affected which directory is “.” at time of the call, and therefore which directory I had to install the shell script named aspell that acts as a shim for the call to the system aspell.
This will only work for you if safe_mode_exec points somewhere that you can put your own shell script.
- Disable the test in spellcheck-plugin.php that blocks installation when running in safe mode.
- Bypass the exec(“which aspell”) call, which will not work in safe mode. Instead set the result variable of the call to be “aspell”. The location of the aspell command on the server is not relevant because safe mode restricts execution to files in the safe_mode_exec_dir directory.
- Create a shell script wp-contents/spell-plugin/aspell that is set to be executable and contains
#!/bin/sh
/bin/sh -c "/usr/bin/aspell $*" 2>&1
This can’t be a simple softlink because of the way that safe mode escapes the redirection in the command line. - Replace the two calls to
shell_exec()
with calls toexec()
. In the one place that uses the return string fromshell_exec
use the second argument toexec
and thejoin
function to get the same result.
Here are the diffs for the code changes I made:
diff -r ~/spell-plugin/spell-plugin.php ./wp-content/plugins/spell-plugin.php
169c169
< if(ini_get('safe_mode'))
---
> if(ini_get('xxxsafe_modexxx'))
260c260
< exec( "which aspell 2>&1", $out, $err );
---
> $out[0] = "aspell"; $err = 0;
diff -r ~/spell-plugin/spellInclude.php ./wp-content/spell-plugin/spellInclude.php
114c114
< shell_exec( $cmd );
---
> exec( $cmd );
diff -r ~/spell-plugin/spellchecker.php ./wp-content/spell-plugin/spellchecker.php
95c95,97
< if( $aspellret = shell_exec( $cmd )) {
---
> exec( $cmd, $execout );
> $aspellret = join("\n", $execout);
> if( $aspellret ) {