3DVF

Utilisateur open source
  • Compteur de contenus

    215
  • Inscrit(e) le

  • Dernière visite


Messages posté(e)s par 3DVF


  1. Résultat de la dernière analyse de mon sitemap :

    http://www.3dvf.fr/%5C 404 (Introuvable) [?] 2 avr. 2007

    http://www.3dvf.fr/%5C%22java script: 404 (Introuvable) [?] 2 avr. 2007

    http://www.3dvf.fr/%5C%22product.php?productid=1105%5C%22 404 (Introuvable) [?] 5 avr. 2007

    http://www.3dvf.fr/%5C%22product.php?productid=1131%5C%22 404 (Introuvable) [?] 2 avr. 2007

    http://www.3dvf.fr/%5C%22product.php?productid=1292%5C%22

    Et j'ai 331 erreur comme celle là!!!

    Sinon concernant mon pagerank, je pense qu'il est liè au site 3dvf.com, qui nous génére pas mal de traffic.

    A+


  2. Le formulaire n'est pas dans une table, donc il s'affiche après, il y a eu un changement de skin?

    <td width="100%" valign="top">   
    
    
    
    
    
    
    
    
    
    
    
    
    <div class="entete"><img src="images/fleche.gif" width="9" height="9" alt="" border="0">&nbsp;Acc&eacute;der &agrave; mon compte-Access to my account</div>
    
    
    
    <form name="entryform" method="post" action="membre.php">
    
      <tr>
    
    		<td colspan="2" class=normal nowrap>

    Une cellule mal fermé ou une table pas ouverte.


  3. Le voila :

    <?
    
    include("../configuration.inc.php");
    
    
    necessite_identification();
    
    
    necessite_priv("admin");
    
    
    $DOC_TITLE = "[Exportation XML - PEEL.FR]";
    
    
    include("modeles/haut.php");
    
    
    echo "<table width=\"760\" cellpadding=\"0\" cellspacing=\"0\"><tr><td class=\"entete\">Cr&eacute;ation du sitemap</td></tr></table>";
    
    
    $xml_file = "$dirroot/sitemap.xml";
    
    
    switch(vb($_REQUEST['mode'])) {
    
    
    case "lire" :
    
    db2xml($_GET['table'],$xml_file);
    
    echo "<li type=\"square\"><a href=$wwwroot/sitemap.xml class=\"normal\">Lire le fichier XML</a></li>";
    
    form2xml();
    
    break;
    
    
    default :
    
    form2xml();
    
    break;
    
    
    }
    
    
    include("modeles/bas.php");
    
    
    /* FONCTIONS */
    
    
    function db2xml($table,$xml_file)
    
    {
    
    
    global $wwwroot;
    
    
    $create_xml = fopen($xml_file,"w");
    
    
    fwrite($create_xml,"<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\r\n<urlset xmlns=\"http://www.google.com/schemas/sitemap/0.84\">\r\n");
    
    
    $select = "select p.id as produit_id, c.id as categorie_id, p.nom_".$_SESSION['langue']." as produit, c.nom_".$_SESSION['langue']." as categorie from peel_produits p, peel_produits_categories pc, peel_categories c WHERE p.id = pc.produit_id AND c.id = pc.categorie_id";
    
    
    echo "<span class=\"normal\">Requ&ecirc;te utilis&eacute;e pour la g&eacute;n&eacute;ration du fichier XML : $select</span>";
    
    
    fwrite($create_xml,"<url><loc>$wwwroot</loc><lastmod>".date("Y-m-d")."</lastmod><changefreq>monthly</changefreq><priority>0.5</priority></url>\r\n");
    
    
    fwrite($create_xml,"<url><loc>$wwwroot/achat/index.php</loc><lastmod>".date("Y-m-d")."</lastmod><changefreq>monthly</changefreq><priority>0.5</priority></url>\r\n");
    
    
    fwrite($create_xml,"<url><loc>$wwwroot/lire/index.php</loc><lastmod>".date("Y-m-d")."</lastmod><changefreq>monthly</changefreq><priority>0.5</priority></url>\r\n");
    
    
    fwrite($create_xml,"<url><loc>$wwwroot/membre.php</loc><lastmod>".date("Y-m-d")."</lastmod><changefreq>monthly</changefreq><priority>0.5</priority></url>\r\n");
    
    
    fwrite($create_xml,"<url><loc>$wwwroot/compte.php</loc><lastmod>".date("Y-m-d")."</lastmod><changefreq>monthly</changefreq><priority>0.5</priority></url>\r\n");
    
    
    fwrite($create_xml,"<url><loc>$wwwroot/utilisateurs/enregistrement.php</loc><lastmod>".date("Y-m-d")."</lastmod><changefreq>monthly</changefreq><priority>0.5</priority></url>\r\n");
    
    
    
    $req = mysql_query($select) or DIE('Une erreur de connexion à la base s est produite ' . __LINE__ . '.<p>' . MYSQL_ERROR());
    
    
    		while($row = mysql_fetch_array($req))
    
    		{
    
    
    			  $trans_tbl = get_html_translation_table(HTML_ENTITIES);
    
    			  $trans_tbl = array_flip($trans_tbl);
    
    
    			  $texte1 = strtr($row['produit'], $trans_tbl);
    
    			  $texte1 = str_replace("&","",$texte1);
    
    
    			  $trans_tbl = get_html_translation_table(HTML_ENTITIES);
    
    			  $trans_tbl = array_flip($trans_tbl);
    
    
    			  $texte2 = strtr($row['categorie'], $trans_tbl);
    
    			  $texte2 = str_replace("&","",$texte2);
    
    
    			  $lien = "$wwwroot/".mrpropre($texte2)."-".$row['categorie_id']."/".mrpropre($texte1)."-".$row['produit_id'].".html";
    
    
    
    			 fwrite($create_xml,"<url><loc>$lien</loc><lastmod>".date("Y-m-d")."</lastmod><changefreq>monthly</changefreq><priority>0.5</priority></url>\r\n");
    
    
    		}
    
    
    	fwrite($create_xml,"</urlset>\r\n");
    
    	fclose($create_xml);
    
    	mysql_free_result($req);
    
    
    }
    
    
    function form2xml() {
    
    
    global $table;
    
    
    echo "<form method=\"GET\" name=\"prod2xml\" action=\"".$_SERVER['PHP_SELF']."\">";
    
    
    echo "<input type=\"hidden\" name=\"mode\" value=\"lire\">";
    
    
    echo "<input type=\"hidden\" name=\"table\" value=\"peel_produits\">";
    
    
    echo "<br \><br /><input type=\"submit\" class=\"bouton\" value=\"G&eacute;n&eacute;rer le sitemap XML pour google\">";
    
    
    echo "</span></div></form>";
    
    
    }
    
    ?>


  4. Analyse de google du 2 avril.... 153 erreur 404!!!

    Existe t'il des analyseur de Sitemap?

    Parce que la c'ets la cata :D

    http://www.3dvf.fr/%5C%22product.php?productid=91%5C%22

    Des comme celle la j'en est plusieurs, ensuite il a gardé en memoire les ancienne URL (avec le cgshop)

    http://www.3dvf.fr/autodesk-68/alias-studi...iant-12-mois-d-

    Alors que sur le site :

    http://www.3dvf.fr/autodesk-68/alias-autos...ation-1501.html

    donc le #39 ne lui plait pas dans cet exemple.

    Voici les log Google : http://pset34.free.fr/WebCrawlErrors_www_3dvf_fr_.csv

    A+ Pascal


  5. je n'ai que celles la comme erreurs.

    Je viens de soumettre un nouveau sitemap est si cela ne fonctionne pas, j'enverrais le votre.

    Merci beaucoup

    Ligne :

    3

    URL non autorisée

    Cette URL n'est pas autorisée pour un plan Sitemap situé à cet emplacement. [?] URL :

    Date de la dernière occurrence : http://www.3dvf.fr/cgshop

    2 avr. 2007

    Je vais déménager mon site, a la racine du domaine, trop de soucis avec google.


  6. Aucun référencement Manuel, et le sitemap est systématiquement en erreur avec google.

    Voila la liste d'erreurs :

    http://www.3dvf.fr/cgshop/%5C 404 (Introuvable) [?] 26 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22java script: 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=16%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=20%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=25%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=28%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=30%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=36%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...uctid=418%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=43%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=44%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=47%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=49%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=53%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=54%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=56%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=63%5C%22 404 (Introuvable) [?] 28 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=79%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=81%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=82%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=88%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=89%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/%5C%22product.ph...ductid=98%5C%22 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/-/easynat-v2.5-c...hoix--1264.html 404 (Introuvable) [?] 27 mars 2007

    http://www.3dvf.fr/cgshop/-/facial-studio-...dsmax-1284.html 404 (Introuvable) [?] 29 mars 2007

    http://www.3dvf.fr/cgshop/-0/alias-studio-...iant-12-mois-d- 404 (Introuvable) [?] 30 mars 2007

    http://www.3dvf.fr/cgshop/3d-54/alias-auto...iant-12-mois-d- 404 (Introuvable) [?] 23 mars 2007

    http://www.3dvf.fr/cgshop/3d-54/alias-stud...iant-12-mois-d- 404 (Introuvable) [?] 19 mars 2007

    http://www.3dvf.fr/cgshop/dosch-85/dosch-viz-images-bird- 404 (Introuvable) [?] 24 mars 2007

    http://www.3dvf.fr/cgshop/education-127/al...iant-12-mois-d- 404 (Introuvable) [?] 29 mars 2007

    http://www.3dvf.fr/cgshop/education-127/al...iant-12-mois-d- 404 (Introuvable) [?] 22 mars 2007

    http://www.3dvf.fr/cgshop/education-12...s...a-50-du-prix-d- 404 (Introuvable) [?] 20 mars 2007

    http://www.3dvf.fr/cgshop/education-12...a...re-ecole-jusqu- 404 (Introuvable) [?] 18 mars 2007

    http://www.3dvf.fr/cgshop/realviz-104/...a...re-ecole-jusqu-

Twitter Advisto ecommerce

Facebook PEEL Shopping