1

I've been trying to get DocBlox working on windows. I'm running wamp server with PHP version 5.3.9. I've enabled XSL and its showing in phpinfo as well as if I run a test script, XSLTProcessor is available.

I installed DocBlox from PEAR. It runs, however I get the error that the XSL writer was unable to find your XSLTprocessor.

Any ideas? Thank you!

David
  • 499
  • 2
  • 8
  • 15

1 Answers1

1

The error that you are receiving means that php does not recognize the xsl extension. Php has got a separate ini file for CLI and web; and I presume that you have enabled the xsl extension for apache only.

You can verify this by executing php -i in your command prompt and check if the xsl extension is enabled there. If not then add your dll to the right config for your WAMP.

mvriel
  • 674
  • 6
  • 6