Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to enable or install XLST in php xampp

Tags:

php

xampp

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.

like image 374
sonam Avatar asked Aug 24 '12 02:08

sonam


People also ask

Where do I put PHP INI extension?

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.

How do I enable PHP extensions in Windows?

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.


1 Answers

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.

like image 150
Phil Avatar answered Nov 15 '22 05:11

Phil