Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

thatgamerguy

2
Posts
A member registered Apr 06, 2018

Recent community posts

Thanks for that info, I eventually got it working!

To simplify things for anyone else trying to do this with a server running Plesk this is how I got it working:

1. From the Plesk administrator page (not logged in as client) go to: Domains -> Yourdomain.com -> Hosting & DNS -> Apache & nginx

2. If using nginx add the following to the Additional Nginx Directives section at the bottom of the page and hit apply:

add_header Cross-Origin-Opener-Policy same-origin;
add_header Cross-Origin-Embedder-Policy require-corp;

2b. I didn't have to do this step but I think if you're using just Apache you can instead add the following to Additional Apache directives mid-way down the page both in the HTTP and HTTPS sections:

<IfModule mod_headers.c>

    Header always set Cross-Origin-Opener-Policy "same-origin"
    Header always set Cross-Origin-Embedder-Policy "require-corp"

</IfModule>

(2 edits)

Is there some specific requirements for the web version? I downloaded it and when I upload to my web server and try to access it's just a black page with this error showing in the inspector console. Was going to make a bug report but didn't want to waste anyone's time if it was my issue. Also I can access/use the web version in the browser via the link here without issue so I know that it should be supported ok. It's just when I upload and try to access it via my own server. Issue exists in all browsers I've tried (Brave, Edge, Firefox)