I'm using XAMPP Server 1.7.7

While opening the php file, i receive the error

Fatal error: Class 'XSLTProcessor' not found

link|improve this question

2  
Interesting. Do you also have a question? ;-) – VolkerK Oct 28 '11 at 14:39
PHP Was not compiled with XSL or it is not included in php.ini. See: XSL Installation – ircmaxell Oct 28 '11 at 14:42
feedback

1 Answer

up vote 4 down vote accepted

Install the XLS extension to get that class. This might be as easy as uncommenting (remove the starting ';') on the line that reads extension=php_xls.dll in php.ini on Windows, or apt-get install php5-xsl on most Linux-based systems.

link|improve this answer
Thanks for the answer, although I really should have Googled it....still ticked as answer. – user478636 Oct 28 '11 at 14:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.