Assuming latex2html is installed and working properly, the most
common cause for this error is that the path to certain required
programs (e.g. latex) has not been provided to WeBWorK.
Near the bottom of the script .../courseScripts/displayMacros.pl
you will find sub makeL2H {
my ($TMPPROBDIR,$psvn) =@_; $ENV{'PATH'} .= ':/usr/local/bin'; [...] system("/usr/local/bin/latex2html ...
Edit $ENV{'PATH'} adding the necessary path(s). For most
systems this should be set to ':/usr/bin' or ':/usr/local/bin' or
maybe ':/usr/bin:/usr/local/bin'. Also edit the call to latex2html
if necessary.
Finally check the error logs (both apache's and WeBWorK's) to see
what went wrong. If you are still having problems, we can provide
more detailed debugging information, but the above solves 90% of
the problems (see "WW setup problem", http://webhost.math.rochester.edu/webworkdocs/discuss/msgReader$578 , for a related problem).
<| Post or View Comments |>
|