Php-flash sockets

I have created a php socket server and and flash client after reading the following link.

http://www.kirupa.com/developer/flas…s_flash8_2.htm

Its working in local windows server.But its not working in linux server.
The php socket is running ,client also is running .But its not connecting to the socket.
Is there any thing i have to install or configure in fedora core 4 to run this?

thanks in advance

I have dowloaded a php socket server and flash client after reading tutorial:kirupa:http://www.kirupa.com/developer/flas...s_flash8_2.htm
I copy to xampp/htdocs/sockets ang edit address:127.0.0.1 port: 80 in file socketTut.php because I want to run on localhost but error!!! Server connection failed!.
I run in local windows server
HELP ME !!!

I also downloaded the Files from the “**PHP 5 **Sockets with Flash 8”. When I place it at xampp/htdocs using a port like 1234 it works fine. I read somewhere that ports must be above 1024.

you have changne code socketsTut.fla or socketTut.php ?

thank quicknation, I have run program!!!

Yes I have changed the code.

In PHP:
$address = “beta.server.de”;
$port = 32081;

In Flash:
mySocket.connect(“beta.server.de”, 32081);

When I run this on the server (starting with putty) everything runs fine. But only if you have **NOT **updated the flasplayer to Version 9.0.124 (its the newest Version offerd on adobe.com). Then the connection is always failed.

Even if I use a crossdomain.xml that should be in the syntax needed since Step 2 of the “policy-update” by flashplayer 9.0.124.

The crossdomain.xml:
<cross-domain-policy>
<allow-access-from domain=“beta.server.de” to-ports=“32081”/>
</cross-domain-policy>

I don’t know what to do anymore… Since one week i try to fix this problem… :alien::sad::hangover:

having similar trouble, but on Macs - I don’t know if it’s a flash player version problem or what, but the mac browser Flash client is definitely looking for something different than Win.

http://djz.hu/blog/2007/07/26/php-socket-server-chat-gateway-for-flash-clients/
has some updated code to help handle policy file requests that I found occurring in mac clients.