Personal tools
You are here: Home コラム AirOne技術情報 FirefoxでAirOneの画像を表示する方法
Document Actions

FirefoxでAirOneの画像を表示する方法

FirefoxでAirOneの画像を表示する方法を説明します。

問題の本質は、<img src="file:///path">がFirefoxのデフォルト状態で表示できない問題です。

firefoxでAirOneの画像を表示する方法

firefox1.5以前

アドレスバーに『about:config』と打ち込み、『security.checkloaduri』の値を『false』とします。

firefox1.5以降

セキュリティーホールの修正により、checkloaduriが使えなくなりました。

Fixed: 307382

  • 設定「security.checkloaduri」を廃止
  • (CAPSを利用することにより、file:スキーマに対してCheckLoadURIを無効にすることが出来る)。

firefox1.5以降では以下を『user.js』に書き込み、所定のフォルダに置く必要があります。 user.jsはデフォルトでは存在しないので自分で作る必要があります。 user.jsを置くフォルダは通常『%AppData%/Mozilla/Firefox/Profiles/xxxxxxxx.default/』となります。 %AppData%は通常『C:/Documents and Settings/[ユーザ名]/Application Data/』となります。 xxxxxxxx はランダムな文字列を表します。

user.jsを設置後、firefoxを起動してください。 user.jsファイルに書くべき内容

user_pref("capability.policy.policynames", "localfilelinks"); user_pref("capability.policy.localfilelinks.sites", "http://localhost:6809"); user_pref("capability.policy.localfilelinks.checkloaduri.enabled", "allAccess");

Copyright(C) 2001 - 2006 Ariel Networks, Inc. All rights reserved.