[domdocument.load]: failed to open stream: Permission denied

Afridi

New Member
I've programmed a website wich loads an external XML with XLST to HTML formatting.It works perfectly testing it on MAMP. But when I install the website on the clients server I get this error:DOMDocument::load(url to the external xml file) [domdocument.load]: failed to open stream: Permission denied This is the script I use to load the XML/XSLT.\[code\]$xml = new DOMDocument;$xml->load('url to external XML file');$xsl = new DOMDocument;$xsl->load(get_bloginfo('template_directory') . '/agenda/stylesheet.xsl');$proc = new XSLTProcessor;$proc->importStyleSheet($xsl);echo $proc->transformToXML($xml);\[/code\]I tried checking if the Fopen is enables... and it is on? So what would be the problem?
 
Top