Warning session_start ();

Fermé
obey - 25 janv. 2011 à 14:06
Akronos Messages postés 140 Date d'inscription jeudi 6 janvier 2011 Statut Membre Dernière intervention 31 janvier 2011 - 25 janv. 2011 à 14:31
Bonjour,

J'ai un petit problème au niveau de mon session_start()

Je m'explique, sur une de mes pages j'ai l'erreur suivante :

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/virtualz-serveur.fr/www/ogrine.php:1) in /home/XXXXXXXX/www/ogrine.php on line 1

Voici mon code source

<?php session_start ();      include_once("config.php");?>
<!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">



Rien n'est écrit avant le <?php session_start (); include_once("config.php");?> donc je ne comprend pas trop.

Merci de vos future réponse!

Cordialement


1 réponse

Akronos Messages postés 140 Date d'inscription jeudi 6 janvier 2011 Statut Membre Dernière intervention 31 janvier 2011 32
25 janv. 2011 à 14:31
Ce fichier est-il inclus? Sinon essaie avec un retour à la ligne:
<?php
session_start ();
include_once("config.php");
?>

0