0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

GodotにてIIS上にhtml5エクスポートしたファイルを配置した際に"Failed loading file 'index.pck'"エラーが発生したときの対処法

Posted at

遭遇した事象

GodotにてHTML5エクスポートしたファイルをWebサーバ(IIS)上に配置してアクセスしたら、"Failed loading file 'index.pck': Not Found"のエラーが発生し、エクスポートしたゲームがプレイできない。

↓このような感じでエラーが発生してしまう。
image.png

対応手順

.pckファイルのMIMEタイプの設定がされていないことが原因。
設定を行うことで対応できる。
具体的には、.pckファイルのMIMEタイプに"application/octet-stream"を設定する。
対応手順は以下の通り。

  1. "MIMEの種類"の設定を開く
    image.png

  2. 右側の"追加"をクリックし、.pckファイルのMIMEタイプを追加。
    image.png

  3. この操作の後にエラー発生したURLに改めてアクセスする。
    →エラーが解消している。  
    image.png

参考URL

"Failed loading file 'index.pck': Not Found" Error HTML5 export : godot

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?