搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

XML file does not display if it is a local file and the XSLT file is on a server.

  • 2 回覆
  • 4 有這個問題
  • 260 次檢視
  • 最近回覆由 BDBaer

more options

If I have an local XML file with a local XSLT file the XML file displays as expected. If both files are on my server again the XML file displays correctly. However if the XML file is local and the XSLT file is on the server (and the XML file points to to the file on the server) I get the following error:

Error loading stylesheet: An unknown error has occurred (805303f4)

Using Firefox 41.0.1 on a Mac.

This problem does not occur on Safari

Any idea of where I'm going wrong? Searching on the web there are suggestions about changing the mime, but am not 100% sure what to do about that. In

Thanks,

Brian

If I have an local XML file with a local XSLT file the XML file displays as expected. If both files are on my server again the XML file displays correctly. However if the XML file is local and the XSLT file is on the server (and the XML file points to to the file on the server) I get the following error: Error loading stylesheet: An unknown error has occurred (805303f4) Using Firefox 41.0.1 on a Mac. This problem does not occur on Safari Any idea of where I'm going wrong? Searching on the web there are suggestions about changing the mime, but am not 100% sure what to do about that. In <?xml-stylesheet in the XML I've changed the type from "text/xsl" to "application/xml" (which did nothing) to "application/xsl" (which breaks the view on Safari). Thanks, Brian

被選擇的解決方法

Guigs. Thanks for the information.

After doing a little digging I found this page:

 http://enable-cors.org/server_apache.html

Following this advice I added an .htaccess file to the directory on the server containing my .xslt file that contains the line:

   Header set Access-Control-Allow-Origin "*"

And that seems to have fixed my problem for Firefox!

Did not seem to fix the problem on Internet Explorer, but suspect that is a problem for another day (and perhaps a different forum).

從原來的回覆中察看解決方案 👍 0

所有回覆 (2)

more options

You are running into the historical Same Single Origin rule in the Firefox browser. For your situation specifically these materials may help better explain:

more options

選擇的解決方法

Guigs. Thanks for the information.

After doing a little digging I found this page:

 http://enable-cors.org/server_apache.html

Following this advice I added an .htaccess file to the directory on the server containing my .xslt file that contains the line:

   Header set Access-Control-Allow-Origin "*"

And that seems to have fixed my problem for Firefox!

Did not seem to fix the problem on Internet Explorer, but suspect that is a problem for another day (and perhaps a different forum).