Add troubleshooting page with safari scripterror workaround

d98762625 2018-12-07 13:09:19 +00:00
parent 5e2940deb2
commit 5c2225261b

9
Troubleshooting.md Normal file

@ -0,0 +1,9 @@
## Script error when running `cyberchef.htm` from a local file in Safari
Sometimes Safari throws a scriptError or syntaxError when you run `cyberchef.htm` from a file. The workaround for this is to run an instance of [`http-server`](https://www.npmjs.com/package/http-server) with compression enabled. You can do this with the following commands:
```
cd <path to directory containing cyberchef.htm>
npm install -g http-server
http-server -g .
```