Game Development Stack Exchange is a question and answer site for professional and independent game developers. It's 100% free, no registration required.

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

I own the servers of hokuco.com, I am wondering why my test build(not a development build) is not working in webgl I tried a test run as a .exe and it works fine. here is the url to my webgl project, can you determine what is wrong? http://hokuco.com/test/index.html (no files on my server are blocked, feel free to view the .htacess, js and other files) the screen is black and nothing is happening. .htacess:

Options +FollowSymLinks
RewriteEngine on

RewriteCond %{HTTP:Accept-encoding} gzip
RewriteRule (.*)Release(.*)\.js $1Compressed$2\.jsgz [L]
RewriteRule (.*)Release(.*)\.data $1Compressed$2\.datagz [L]
RewriteRule (.*)Release(.*)\.mem $1Compressed$2\.memgz [L]
RewriteRule (.*)Release(.*)\.unity3d $1Compressed$2\.unity3dgz [L]
AddEncoding gzip .jsgz
AddEncoding gzip .datagz
AddEncoding gzip .memgz
AddEncoding gzip .unity3dgz

all my js files seem to be blocked.(but not jsgz...)

share|improve this question
    
it works fine in localhost – parseguy Feb 19 at 13:51
    
I get 404 for the Release files. For example this one: (hokuco.com/test/Release/UnityConfig.js). The server does not seem to be hosting it. Did you upload the Release folder? Where did you put it? – Octopus Feb 19 at 18:10
    
in filezilla everything is there... – parseguy Feb 21 at 13:12
    
hmmmm it seems as if javascript is blocked – parseguy Feb 21 at 13:35
    
is it a prob with my .htacess? – parseguy Feb 21 at 13:41
up vote -1 down vote accepted

just simply delete the .htacess file

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.