Skip to main content
Participant
September 26, 2009
Question

Login proms

  • September 26, 2009
  • 1 reply
  • 538 views

Hi guys, i got a lil prom runnin.

I right now develop a page. There u can log on and get a php session, that stores all the data from a mysql server.

Now I'm developin a chat with FMS and Flash. The Chat works fine so far. The problem is how to make it safe. How can i be sure that only peolple who logged on the page before can access this FMS Chat?

Do u have any ideas?

Big thanks in advance

Dominik

    This topic has been closed for replies.

    1 reply

    calmchessplayer
    Inspiring
    September 26, 2009

    use MD5 Hash authtntication by creating an MD5 hash and using it to authenticate the user serverside if the client app doesn't pass the hash string then the server side script doesn't  accept their connection,,,,,store the server side hash in the database along with the username but keep in mind that everybody gets the same hash and pass it around using session variables.however if you want to use seperate hashes you could store them in a persistant remote shared object and the loop through looking for a hash that mteches what the client has provided.....another thing to use is SWF verification which is built into flash media server 3.5 it won't allow the user to forge a .swf and consume the data.