Setting up an online chat system

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • bizt

    Setting up an online chat system

    Hi,

    I have been asked by my manager to look into the possiblily of setting
    up an online chat system for the external website. We run an Apache
    server with PHP (hence the reason Im posting here) so it would need to
    run on that.

    Basically, it will run on the website and its purpose will allow
    members of the public to access the chat room and discuss current
    topics with experts. Similar to a doctors interactive website where
    patients can speak and get advice from their GP.

    Anyway, Ive never set up anything like this before so dont really know
    where to begin. The chat system may be something that we would need to
    pay for but ideally it will have a professioanl appearance and be easy
    to implement (please).

    Any help would be much appreciated. Thanks

    Burnsy

  • pascal

    #2
    Re: Setting up an online chat system

    Hi,

    I guess if you post here, it is because you want to implement a PHP
    solution.

    I did something similar, simple (even with a web-cam image) BUT the
    usage is not convenient.
    In fact you must tell the browser to refresh the web page (or the
    iframe) let's say every 3 seconds in order to refresh the chat lines.
    And that's fine for fun, but not for professional.

    Maybe I am wrong, and there is a better solution, so I would not
    recommend such a solution.

    Pascal

    Comment

    • Jerry Stuckle

      #3
      Re: Setting up an online chat system

      bizt wrote:
      Hi,
      >
      I have been asked by my manager to look into the possiblily of setting
      up an online chat system for the external website. We run an Apache
      server with PHP (hence the reason Im posting here) so it would need to
      run on that.
      >
      Basically, it will run on the website and its purpose will allow
      members of the public to access the chat room and discuss current
      topics with experts. Similar to a doctors interactive website where
      patients can speak and get advice from their GP.
      >
      Anyway, Ive never set up anything like this before so dont really know
      where to begin. The chat system may be something that we would need to
      pay for but ideally it will have a professioanl appearance and be easy
      to implement (please).
      >
      Any help would be much appreciated. Thanks
      >
      Burnsy
      >
      Burnsy,

      Google is your friend.


      You won't find a good PHP solution; HTML, being stateless, doesn't lend
      itself well to things like chat. There are workarounds (i.e.
      auto-refresh the page every few seconds) - but not good ones.

      --
      =============== ===
      Remove the "x" from my email address
      Jerry Stuckle
      JDS Computer Training Corp.
      jstucklex@attgl obal.net
      =============== ===

      Comment

      • amygdala

        #4
        Re: Setting up an online chat system


        "bizt" <bissatch@yahoo .co.ukschreef in bericht
        news:1155630253 .009853.130660@ 75g2000cwc.goog legroups.com...
        Hi,
        >
        I have been asked by my manager to look into the possiblily of setting
        up an online chat system for the external website. We run an Apache
        server with PHP (hence the reason Im posting here) so it would need to
        run on that.
        >
        Basically, it will run on the website and its purpose will allow
        members of the public to access the chat room and discuss current
        topics with experts. Similar to a doctors interactive website where
        patients can speak and get advice from their GP.
        >
        Anyway, Ive never set up anything like this before so dont really know
        where to begin. The chat system may be something that we would need to
        pay for but ideally it will have a professioanl appearance and be easy
        to implement (please).
        >
        Any help would be much appreciated. Thanks
        >
        Burnsy
        >
        If you have any experience with client side Java and / or Flash applications
        you might wanna look into the use of PHP socket connections; in other words
        let PHP run a socket server.

        I've run some small tests on my home box with flash, seems to work alright.
        But I have no idea what payload a PHP socket script is able to cope with. I
        didn't get into it very deep.

        Google around for PHP sockets, there are a few good examples.

        Here's a starter:



        Comment

        • Areric

          #5
          Re: Setting up an online chat system

          I would take a look at some of the new online instant messaging
          applications like Meebo for examples. If iw ere implementing this i
          would do a PHP backend with a javascript / ajax front-end to refresh
          the content. The javascript would call out to the php script (which
          would keep the chat record) and would also send in new text from users.

          Comment

          • PTM

            #6
            Re: Setting up an online chat system

            "bizt" <bissatch@yahoo .co.ukwrote in message
            news:1155630253 .009853.130660@ 75g2000cwc.goog legroups.com...
            Hi,
            >
            I have been asked by my manager to look into the possiblily of setting
            up an online chat system for the external website. We run an Apache
            server with PHP (hence the reason Im posting here) so it would need to
            run on that.
            >
            Basically, it will run on the website and its purpose will allow
            members of the public to access the chat room and discuss current
            topics with experts. Similar to a doctors interactive website where
            patients can speak and get advice from their GP.
            >
            Anyway, Ive never set up anything like this before so dont really know
            where to begin. The chat system may be something that we would need to
            pay for but ideally it will have a professioanl appearance and be easy
            to implement (please).
            >
            Any help would be much appreciated. Thanks
            >
            Burnsy
            >
            You could try HCL or realchat, not sure which (if either) is php based, not
            gotten the chance to do anything with them yet.


            Phil


            Comment

            Working...