<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Allow file access from files]]></title><description><![CDATA[<p dir="auto">In previous versions used to be a configuration / flag to allow file access from files. After it went away, people suggested to use the command line parameter <code>--allow-file-access-from-files</code> like with Chromium.</p>
<p dir="auto">Neither of the options seems to work for me. How can I enable file access?</p>
]]></description><link>https://forums.opera.com/topic/26117/allow-file-access-from-files</link><generator>RSS for Node</generator><lastBuildDate>Sun, 16 Aug 2026 02:00:18 GMT</lastBuildDate><atom:link href="https://forums.opera.com/topic/26117.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 11 Apr 2018 17:20:58 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Allow file access from files on Wed, 18 Apr 2018 07:06:56 GMT]]></title><description><![CDATA[<p dir="auto">Actually, I think, I will not undergo the effort to find out what goes wrong, when there is only a command line switch to toggle the behaviour. I rather stick to Firefox for development then. Hopefully it gets integrated in the future again.</p>
]]></description><link>https://forums.opera.com/post/144621</link><guid isPermaLink="true">https://forums.opera.com/post/144621</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Wed, 18 Apr 2018 07:06:56 GMT</pubDate></item><item><title><![CDATA[Reply to Allow file access from files on Wed, 18 Apr 2018 03:49:26 GMT]]></title><description><![CDATA[<p dir="auto">@vince42 said in <a href="/post/144599">Allow file access from files</a>:</p>
<blockquote>
<p dir="auto">Try uninstalling and reinstalling Opera" ?</p>
</blockquote>
<p dir="auto"><img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=qqje97jok90" class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face" title=":)" alt="🙂" /> You can test in a standalone installation instead. Download the Opera installer, launch it, click "options", set "install path" to a folder on your desktop, set "install for" to "standalone installation" and install. See how it works in that Opera. If it works fine, then you know something is not quite right with your regular install/profile.</p>
]]></description><link>https://forums.opera.com/post/144618</link><guid isPermaLink="true">https://forums.opera.com/post/144618</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Wed, 18 Apr 2018 03:49:26 GMT</pubDate></item><item><title><![CDATA[Reply to Allow file access from files on Tue, 17 Apr 2018 21:51:18 GMT]]></title><description><![CDATA[<p dir="auto">Windows 10 Pro 64 bit, Opera 52.0.2871.40, both files on my desktop, invoked as you suggested: blank screen.</p>
<p dir="auto">Let me guess: "Try uninstalling and reinstalling Opera" ? <img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=qqje97jok90" class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
]]></description><link>https://forums.opera.com/post/144599</link><guid isPermaLink="true">https://forums.opera.com/post/144599</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Tue, 17 Apr 2018 21:51:18 GMT</pubDate></item><item><title><![CDATA[Reply to Allow file access from files on Fri, 13 Apr 2018 08:40:35 GMT]]></title><description><![CDATA[<p dir="auto">Seems to be working fine for me on Windows 10 Pro + opera 52.0.2871.64 x64 where both files are on my desktop.</p>
<pre><code>launcher.exe --allow-file-access-from-files
</code></pre>
<p dir="auto">cdcatalog.xml:</p>
<pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;?xml-stylesheet type="text/xsl" href="cdcatalog.xsl"?&gt;
&lt;catalog&gt;
  &lt;cd&gt;
    &lt;title&gt;Empire Burlesque&lt;/title&gt;
    &lt;artist&gt;Bob Dylan&lt;/artist&gt;
    &lt;country&gt;USA&lt;/country&gt;
    &lt;company&gt;Columbia&lt;/company&gt;
    &lt;price&gt;10.90&lt;/price&gt;
    &lt;year&gt;1985&lt;/year&gt;
  &lt;/cd&gt;
  &lt;cd&gt;
    &lt;title&gt;Hide your heart&lt;/title&gt;
    &lt;artist&gt;Bonnie Tyler&lt;/artist&gt;
    &lt;country&gt;UK&lt;/country&gt;
    &lt;company&gt;CBS Records&lt;/company&gt;
    &lt;price&gt;9.90&lt;/price&gt;
    &lt;year&gt;1988&lt;/year&gt;
  &lt;/cd&gt;
 &lt;/catalog&gt;
</code></pre>
<p dir="auto">cdcatalog.xsl</p>
<pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt;
&lt;xsl:template match="/"&gt;
&lt;html&gt; 
&lt;body&gt;
  &lt;h2&gt;My CD Collection&lt;/h2&gt;
  &lt;table border="1"&gt;
    &lt;tr bgcolor="#9acd32"&gt;
      &lt;th style="text-align:left"&gt;Title&lt;/th&gt;
      &lt;th style="text-align:left"&gt;Artist&lt;/th&gt;
    &lt;/tr&gt;
    &lt;xsl:for-each select="catalog/cd"&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;xsl:value-of select="title"/&gt;&lt;/td&gt;
      &lt;td&gt;&lt;xsl:value-of select="artist"/&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;/xsl:for-each&gt;
  &lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;/xsl:template&gt;
&lt;/xsl:transform&gt;
</code></pre>
]]></description><link>https://forums.opera.com/post/144321</link><guid isPermaLink="true">https://forums.opera.com/post/144321</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Fri, 13 Apr 2018 08:40:35 GMT</pubDate></item><item><title><![CDATA[Reply to Allow file access from files on Thu, 12 Apr 2018 11:29:04 GMT]]></title><description><![CDATA[<p dir="auto">The test case is as follows: I have a XML file with a transformation element specifying a XSL file. In Opera the screen stays blank, in Firefox the XML is rendered as expected. From my research I could exclude that there are other reasons responsible than the disallowance of local file access.</p>
]]></description><link>https://forums.opera.com/post/144284</link><guid isPermaLink="true">https://forums.opera.com/post/144284</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Thu, 12 Apr 2018 11:29:04 GMT</pubDate></item><item><title><![CDATA[Reply to Allow file access from files on Thu, 12 Apr 2018 10:13:28 GMT]]></title><description><![CDATA[<p dir="auto">Could you provide a test case? You using XHR to read file file? Is the file is the same directory (or subdirectory) as the HTML file?</p>
]]></description><link>https://forums.opera.com/post/144283</link><guid isPermaLink="true">https://forums.opera.com/post/144283</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Thu, 12 Apr 2018 10:13:28 GMT</pubDate></item></channel></rss>