salut à tous,
après avoir regardé plusieurs scripts gratuit pour mettre sur mon site web j'ai choisie webchat car il me semble le meilleur pour l'instant si vous en connaissez des plus performants hésitez pas.
j'aimerais avoir de l'aide pour la configuration s'il vous plaît.
vous pouvez le téléchargé ici http://ftp1.toocharger.com/sctidQz/webchat_3282.zip
On va commencer par mais information tous d'abort
Nom de l'hote = sql303.hebergratuit.com
la base de donner = rober_9821118_Chat
login = rober_9821118
Mot de passe = perso
Mon site = quebecchat.hebergratuit.com
voici donc le texte qui me donne les informations sur comment configuré le scripts;
AvantEnvoyé par install.txt
AprèsCode PHP:
<?
/*
* @author Daniel Toma <dt@dnt.ro>
* @version $Id$
*/
if($SUBDIR_LEVEL==2) {
$WEBCHATPATH = '../';
} else {
$WEBCHATPATH = './';
}
include ($WEBCHATPATH.'db_mysql.php');
include ($WEBCHATPATH.'language/english.php');
class DB_Chat extends DB_Sql {
var $classname = "DB_Chat";
var $Host = "localhost";
var $Database = "chat";
var $User = "chat_user";
var $Password = "webpass";
function haltmsg($msg) {
echo "<script>
alert(\"Database error:\\t".$msg."\\nPHP reported:\\t".$this->Error."\");
</script> ";
exit;
}
}
#echo "Load succesfull... ";
function copyright() {
?>
<br><br><center>
<a href="http://www.webdev.ro/">
<img src="img/webchat_logo.gif" alt="[ powered by WebChat ]" width=120 height=30 border="0">
</a>
</center>
<?
}
?>
Code PHP:
<?
/*
* @author Daniel Toma <dt@dnt.ro>
* @version $Id$
*/
if($SUBDIR_LEVEL==2) {
$WEBCHATPATH = '../';
} else {
$WEBCHATPATH = './';
}
include ($WEBCHATPATH.'db_mysql.php');
include ($WEBCHATPATH.'language/french.php');
class DB_Chat extends DB_Sql {
var $classname = "DB_Chat";
var $Host = "sql303.hebergratuit.com";
var $Database = "rober_9821118_Chat";
var $User = "rober_9821118";
var $Password = "perso";
function haltmsg($msg) {
echo "<script>
alert(\"Database error:\\t".$msg."\\nPHP reported:\\t".$this->Error."\");
</script> ";
exit;
}
}
#echo "Load succesfull... ";
function copyright() {
?>
<br><br><center>
<a href="http://www.webdev.ro/">
<img src="img/webchat_logo.gif" alt="[ powered by WebChat ]" width=120 height=30 border="0">
</a>
</center>
<?
}
?>
-----