Gary wrote: > I installed the php-xsl package (+ the things it depends on) today, > and now get: > $ php -i | grep extension > PHP Warning: PHP Startup: Unable to load dynamic library > '/usr/lib/php/20060613/xsl.dll' - No such file or directory in Unknown > on line 0 > extension_dir => /usr/lib/php/20060613 => /usr/lib/php/20060613 > php extension version => 0.51 > Additionally, trying to use the XSLTProcessor contained in the > extension gives me: "Fatal error: Class 'XSLTProcessor' not found"
Probably one of the following: 1) You're missing a dependency. xsl depends on libxml2 and libxslt. Try cygcheck /usr/lib/php/20060613/xsl.dll and see if something is missing. 2) xsl.dll is not executable. > Adding 'extension="xsl.dll' to php.ini doesn't work either (I just get > the same error and the startup warning twice). Right. cygcheck -l php-xsl will show you that a .ini in installed into conf.d which handles this for you; by adding it manually to php.ini, you're telling it to load it twice. Yaakov Cygwin Ports ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo _______________________________________________ Cygwin-ports-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/cygwin-ports-general
