• 19-08-2012, 23:14:29
    #1
    Üyeliği durduruldu
    selam sitemap kurdum gereklı ayarları yaptım

    http://cafealem.com/sitemap.xml url boyle girince hata alıyorum

    hata ıse şöyle

    Stylesheet yüklenmesinde hata: Bilinmeyen bir hata oluştu (805303f4)http://www.cafealem.com/wp-content/p...or/sitemap.xsl

    Ama böyle yazınca hata olmuyor

    http://www.cafealem.com/sitemap.xml boyle yazınca calısıyor sorun nerde acaba
  • 20-08-2012, 00:34:21
    #2
    Kurumsal PLUS
    Yedekleri alarak işlem yapın.

    Sitemap-core.php dosyasını bulun

    /wp-content/plugins/google-sitemap-generator/sitemap-core.php


    Bu kodu

    Alıntı
    function GetDefaultStyle() {
    $p = $this->GetPluginPath();
    if(file_exists($p . "sitemap.xsl")) {
    $url = $this->GetPluginUrl();
    //If called over the admin area using HTTPS, the stylesheet would also be https url, even if the blog frontend is not.
    if(substr(get_bloginfo('url'),0,5) !="https" && substr($url,0,5)=="https") $url="http" . substr($url,5);
    return $url . 'sitemap.xsl';
    }
    return '';
    }


    Bununla değiştirin

    Alıntı
    function GetDefaultStyle() {
    $p = $this->GetPluginPath();
    if(file_exists($p . "sitemap.xsl")) {
    return '/wp-content/plugins/google-sitemap-generator/sitemap.xsl';
    }
    return '';
    }