io.set('flash policy server', true);That turns on flash socket support, but on port 10843! The call to
io.set('flash policy port', 843);
io.set('flash policy server', true);actually starts the server - on the default port of 10843. The next line of code that sets the flash policy port to 843? It has no effect.
Do this instead:
io.set('flash policy port', 843);or better yet:
io.set('flash policy server', true);
io.set('flash policy port', 843);which will set the port and turn on the flash policy server.
No comments:
Post a Comment