I have a default installation of xampp which has php 5.3. I came across an issue while using symfony framework CLI to create database tables. I am using Windows XP. Here is the command I run:
symfony propel:build-sql
Output: Could not perform XLST transformation.Make sure php has been compiled/configured to support XLST.
Please guide me through the installation of XLST in windows xp.
Go to your php. ini file and add the following line: extension=<extension_name>. dll. To verify that the extension was loaded properly, go to Setup | Extensions and locate the extension from the list.
On Windows, you have two ways to load a PHP extension: either compile it into PHP, or load the DLL. Loading a pre-compiled extension is the easiest and preferred way. To load an extension, you need to have it available as a ". dll" file on your system.
You probably need to enable the XSL extension.
Look for something like the following in your php.ini
file
;extension=php_xsl.dll
and un-comment it by removing the semi-colon. You may need to check the location of the extension and that it complies with your extension_dir
directive.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With