Hi!
Im trying to style an xml file using xsl. Everything is working on my own built php site but when i try to use it in my wordpress theme i get this:
The specified file groups.xsl could not be found.
It finds the xml document but not the xsl. The code looks like this:
<?php
$mm_xsl = new MM_XSLTransform();
$mm_xsl->setXML("http://localhost/wp-content/themes/themename/MatchMaker.xml");
$mm_xsl->setXSL("http://localhost/wp-content/themes/themename/groups.xsl");
echo $mm_xsl->Transform();
?>
Anyone got a solution?