Bonjour,
J'ai lu mille trucs a propos de cette erreur :
Warning : session_start() : Cannot send session cache limiter - headers already sent (output started at /clent.php:1) in /client.php on line 1
Mais rien a faire je ne trouve pas le problème dans mon fichier.
Si vous avez un idée!!
Voici le debut de ma page:
<? session_start();
session_name("SERIES");
include("config.inc.php");
include("server.php");
$pseudo = $_SESSION["pseudo"];
if($pseudo=="")
{
echo '<script language="JavaScript" type="text/javascript">document.location="http://cultureseries.free.fr/CHAT/login.php"</SCRIPT>';
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>
<?=$TITRE;?> CHAT
</title>
<link title="general" type="text/CSS" rel="stylesheet" href="style.css">
<script type='text/javascript' src='regexp.js'></script>
</head>
<body bgcolor="#0066FF">
<div id='chat'>
<div id='titre'>
<strong><?=$TITRE;?> chat</strong>
</div>
<div id='tools'>
<small><strong><?=$_SESSION["pseudo"];?></strong></small>
<img src="../img/vide.gif" width=500 height=1>
<a href='javascript: if(confirm("<?=$TEXT_CLIENT_QUIT;?>")) quit();'><img src='./images/quit.gif' alt='Quit' vspace=2 /></a>
<a href='javascript: help()'><img src='./images/aide.gif' alt='Help' vspace=2 /></a>
</div>