Bonjour,
J'ai un soucis plutôt énervant sous ie.
vous pouvez le voir ici : http://simplifiedbmx.fr
ie ne charge pas toute la page.
Quand je retire le code embed des vidéos que j'affiche, la page se charge en entiere.
Mais je doute que ça ait vraiment un lien..
voilà l'erreur que me renvoie ie :
Détails de l’erreur de la page Web
Agent utilisateur : Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2)
Horodateur : Sat, 13 Mar 2010 20:10:55 UTC
Message : HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917)
Ligne : 0
Caractère : 0
Code : 0
URI : http://www.simplifiedbmx.fr/article.html
Or je ne modifie aucun conteneur parent..
voilà la boucle qui affiche les news :
Merci de votre aide.
J'ai un soucis plutôt énervant sous ie.
vous pouvez le voir ici : http://simplifiedbmx.fr
ie ne charge pas toute la page.
Quand je retire le code embed des vidéos que j'affiche, la page se charge en entiere.
Mais je doute que ça ait vraiment un lien..
voilà l'erreur que me renvoie ie :
Détails de l’erreur de la page Web
Agent utilisateur : Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2)
Horodateur : Sat, 13 Mar 2010 20:10:55 UTC
Message : HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917)
Ligne : 0
Caractère : 0
Code : 0
URI : http://www.simplifiedbmx.fr/article.html
Or je ne modifie aucun conteneur parent..
voilà la boucle qui affiche les news :
$compteur_pub = 1;
while ($news = $res_news->fetch_assoc()) {
$article = $news['id'];
/********************************************************on compte les commentaires****************************************************/
$resultat_com = $mysqli->query("SELECT id_news FROM coms WHERE id_news = '$article'");
$nb_com = $resultat_com->num_rows;
/*****************************************************************preparation des tags**********************************************************/
$tags = stripslashes(html_entity_decode($news['tags']));
$tags = explode(',', $tags);
$max = count($tags);
$afficher_tags= '';
for ( $i=0; $i< $max ; $i++ ) {
$afficher_tags .= '<a href="article.html?recherche='.noespace($tags[$i]).'" alt="'.$tags[$i].'" title="'.$tags[$i].'">'.$tags[$i].'</a>';
if ($i != $max - 1) {
$afficher_tags .= ' :: ';
}
}
/************************************************************post de la news*************************************************************/
echo '
<div id="titre">
<h1><a href="article-'.$news['id'].'_'.donne_url(stripslashes(html_entity_decode($news['titre']))).'.html" alt="'.stripslashes(html_entity_decode($news['titre'])).'" title="'.stripslashes(html_entity_decode($news['titre'])).'">'.mb_strtoupper(stripslashes(html_entity_decode($news['titre']))).'</a></h1>
</div>
<div id="titre">
<h2>'.nl2br(stripslashes(html_entity_decode($news['corps']))).'</h2>
</div>
<div id="embed">
'.stripslashes($news['embed']).'
</div>
<div id="date">
<a href="http://www.facebook.com/share.php?u=http://simplifiedbmx.fr/article-'.$news['id'].'_'.donne_url(stripslashes(html_entity_decode($news['titre']))).'.html" alt="Publier cet article sur Facebook" title="Publier cet article sur Facebook" target="_blank"><img id="social" align="left" onMouseOver="this.style.opacity = 1;this.style.filter.alpha=100;" onMouseOut="this.style.opacity = 0.5;this.style.filter.alpha=50;" onload="this.style.opacity = 0.5;this.style.filter.alpha=50;" src="images/graph/icones/fb_ico.png" valign="top" /></a>
<a href="http://twitter.com/home?status='.stripslashes(html_entity_decode($news['titre'])).' : http://simplifiedbmx.fr/article-'.$news['id'].'_'.donne_url(stripslashes(html_entity_decode($news['titre']))).'.html" alt="Publier cet article sur Twitter" title="Publier cet article sur Twitter" onclick="javascript:pageTracker._trackPageview (\'/outbound/twitter.com\');" target="_blank"><img src="images/graph/icones/twitter_ico.png" valign="top" align="left" id="social" align="left" onMouseOver="this.style.opacity = 1;" onMouseOut="this.style.opacity = 0.5;" onload="this.style.opacity = 0.5;" /> </a>
<img src="images/graph/icones/user.png" valign="top" />
<a href="/communaute/membre-' .$news['id_peuple']. '.html">'.stripslashes(html_entity_decode($news['peuple'])).'</a>,
'.jour_complet($news['news_time']).'
<img src="images/graph/icones/comments.png" valign="top" /> : <a href="">'.$nb_com.'</a>.
</div>
<div id="tags">
<img src="images/graph/icones/icon-tag.gif" width="12px" height="12px" valign="middle" /> <b>Tags : </b> '.$afficher_tags.'
</div>';
if($compteur_pub == 1) {
echo '
<div id="titre">
'.$pubnews1.'
</div>';
$compteur_pub++;
}
else if ($compteur_pub == 2) {
echo '
<div id="titre">
'.$pubnews2.'
</div>';
$compteur_pub++;
}
}
Merci de votre aide.