This might be the vaguest question in the history of Daniweb but I have php chat program that is great all for one thing. It will not make any noise.

If anyone wants to take a poke at it.

I can post logs, even give access to it, and try to find this needle ina hay stack.

You can see the chat here on the bottom if that help.

http://webhost.pro/support.htm

Recommended Answers

All 3 Replies

What do you mean by noise exactly?

From what I can see in your source code, you have some span tags that are not opened or closed.. Also,my browser is trying to load a script with the url as (http://swf). I'm guessing this is the swf file used to create your sounds. You sould try using FQDN's or full paths to your asset files. A good way to do that with php is

echo 'http://' . $_SERVER['HTTP_HOST']; ?> . '/';

You can then add that to you assets. like http://<?php echo $_SERVER['HTTP_HOST']; ?>/contact.php

or for your assets <link rel="stylesheet" href="http://<?php echo $_SERVER['HTTP_HOST']; ?>/css/style.css" />

yeah, you have some issues with customer-chat-widget.min.js and your swf file is not loading correctly because of the url path.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.