SMF forum indexlenmesi çok pratik.[Test edildi]

tarantula90129.03.2010 - 20:28
Kod: [Seç]
<?php

require_once(&#39;SSI.php&#39;);

if ($modSettings[&#39;smfVersion&#39;] < &#39;1.1&#39;)
    
ob_start(&#39;ob_sessrewrite&#39;);

header(&#39;Content-Type: text/plain&#39;);

echo &#39;<?xml version="1.0" encoding="UTF-8"?&#39; . &#39;>
<urlset xmlns="http://www.google.com/schemas/sitemap/0.84">&#39;;

$request db_query("
    SELECT posterTime
    FROM 
{$db_prefix}messages


    WHERE ID_MSG >= " 
. ($modSettings[&#39;maxMsgID&#39;] - 30) . "
    
ORDER BY ID_MSG DESC
    LIMIT 10
", __FILE__, __LINE__);
$latest_post_times = array(time());
while (
$row = mysql_fetch_assoc($request))
    
$latest_post_times[] = $row[&#39;posterTime&#39;];
mysql_free_result(
$request);

$request = db_query("
    
SELECT ID_BOARD
    FROM 
{$db_prefix}boards", __FILE__, __LINE__);
$boards = array();
while (
$row = mysql_fetch_assoc($request))
{
    
$request2 = db_query("
        
SELECT posterTime
        FROM 
{$db_prefix}messages
        WHERE ID_BOARD 
$row[ID_BOARD]" . ($modSettings[&#39;totalMessages&#39;] > 100000 ? "
            
AND ID_MSG >= " . ($modSettings[&#39;maxMsgID&#39;] * 0.5) : &#39;&#39;) . "
        
ORDER BY ID_MSG DESC
        LIMIT 10
", __FILE__, __LINE__);
    
$board_post_times = array(time());
    while (
$row2 = mysql_fetch_assoc($request2))
        
$board_post_times[] = $row2[&#39;posterTime&#39;];
    mysql_free_result(
$request2);

    
$boards[] = array(
        &#39;id&#39; => 
$row[&#39;ID_BOARD&#39;],
        &#39;times&#39; => 
$board_post_times,
    );
}
mysql_free_result(
$request);

$request = db_query("
    
SELECT ID_TOPIC
    FROM 
{$db_prefix}topics
    ORDER BY numViews 
numReplies DESC
    LIMIT 1000
", __FILE__, __LINE__);
$topics = array();
while (
$row = mysql_fetch_assoc($request))
{
    
$request2 = db_query("
        
SELECT posterTime
        FROM 
{$db_prefix}messages
        WHERE ID_TOPIC 
$row[ID_TOPIC]
        
ORDER BY ID_MSG DESC
        LIMIT 10
", __FILE__, __LINE__);
    
$topic_post_times = array(time());
    while (
$row2 = mysql_fetch_assoc($request2))
        
$topic_post_times[] = $row2[&#39;posterTime&#39;];
    mysql_free_result(
$request2);

    
$topics[] = array(
        &#39;id&#39; => 
$row[&#39;ID_TOPIC&#39;],
        &#39;times&#39; => 
$topic_post_times,
    );
}
mysql_free_result(
$request);

$request = db_query("
    
SELECT ID_MEMBER
    FROM 
{$db_prefix}members
    ORDER BY totalTimeLoggedIn DESC
    LIMIT 20
", __FILE__, __LINE__);
$members = array();
while (
$row = mysql_fetch_assoc($request))
{
    
$request2 = db_query("
        
SELECT posterTime
        FROM 
{$db_prefix}messages
        WHERE ID_MEMBER 
$row[ID_MEMBER]" . ($modSettings[&#39;totalMessages&#39;] > 100000 ? "
            
AND ID_MSG >= " . ($modSettings[&#39;maxMsgID&#39;] * 0.5) : &#39;&#39;) . "
        
ORDER BY ID_MSG DESC
        LIMIT 10
", __FILE__, __LINE__);
    
$member_post_times = array(time());
    while (
$row2 = mysql_fetch_assoc($request2))
        
$member_post_times[] = $row2[&#39;posterTime&#39;];
    mysql_free_result(
$request2);

    
$members[] = array(
        &#39;id&#39; => 
$row[&#39;ID_MEMBER&#39;],
        &#39;times&#39; => 
$member_post_times,
    );
}
mysql_free_result(
$request);

// First, the forum URL.  Highest priority!
echo &#39;
    <url>
        <loc>&#39;, 
$scripturl, &#39;</loc>
        <lastmod>&#39;, posts_max_time(
$latest_post_times), &#39;</lastmod>
        <changefreq>&#39;, posts_to_freq(
$latest_post_times), &#39;</changefreq>
        <priority>1.0</priority>
    </url>&#39;;

// Now the boards!
foreach (
$boards as $board)
{
    echo &#39;
    <url>
        <loc>&#39;, 
$scripturl, &#39;?board=&#39;, $board[&#39;id&#39;], &#39;.0</loc>
        <lastmod>&#39;, posts_max_time(
$board[&#39;times&#39;]), &#39;</lastmod>
        <changefreq>&#39;, posts_to_freq(
$board[&#39;times&#39;]), &#39;</changefreq>
        <priority>&#39;, posts_to_priority(0.8, 
$board[&#39;times&#39;]), &#39;</priority>
    </url>&#39;;
}

// Popular topics too...
foreach (
$topics as $topic)
{
    echo &#39;
    <url>
        <loc>&#39;, 
$scripturl, &#39;?topic=&#39;, $topic[&#39;id&#39;], &#39;.0</loc>
        <lastmod>&#39;, posts_max_time(
$topic[&#39;times&#39;]), &#39;</lastmod>
        <changefreq>&#39;, posts_to_freq(
$topic[&#39;times&#39;]), &#39;</changefreq>
        <priority>&#39;, posts_to_priority(0.7, 
$board[&#39;times&#39;]), &#39;</priority>
    </url>&#39;;
}

// Most active members?
foreach (
$members as $member)
{
    echo &#39;
    <url>
        <loc>&#39;, 
$scripturl, &#39;?action=profile;u=&#39;, $member[&#39;id&#39;], &#39;</loc>
        <lastmod>&#39;, posts_max_time(
$member[&#39;times&#39;]), &#39;</lastmod>
        <changefreq>&#39;, posts_to_freq(
$member[&#39;times&#39;]), &#39;</changefreq>
        <priority>&#39;, posts_to_priority(0.5, 
$board[&#39;times&#39;]), &#39;</priority>
    </url>&#39;;
}

echo &#39;
</urlset>&#39;;

function posts_max_time(
$post_times)
{
    if (empty(
$post_times) || count($post_times) == 1)
        return gmstrftime(&#39;%Y-%m-%dT%H:%M:%S+00:00&#39;, time() - 3600 * 24 * 10);

    return gmstrftime(&#39;%Y-%m-%dT%H:%M:%S+00:00&#39;, max(
$post_times));
}

function posts_to_priority(
$base$post_times)
{
    if (empty(
$post_times) || count($post_times) == 1)
        return sprintf(&#39;%1.1f&#39;, 
$base);

    
$s = (max($post_times) - min($post_times)) / count($post_times);

    if (
$s < 3600 * 24)
        
$mod = 0.1;
    else
        
$mod = 0;

    return sprintf(&#39;%1.1f&#39;, 
$base + $mod);
}

function posts_to_freq(
$post_times)
{
    if (empty(
$post_times) || count($post_times) == 1)
        return &#39;yearly&#39;;

    
$s = (max($post_times) - min($post_times)) / count($post_times);

    // Changes more often than every hour.
    if (
$s < 3600)
        return &#39;always&#39;;
    elseif (
$s < 3600 * 12)
        return &#39;hourly&#39;;
    elseif (
$s < 3600 * 24 * 4)
        return &#39;daily&#39;;
    else
        return &#39;monthly&#39;;
}

?>




yapmanız gerekenler

1.
Kod: [Seç]
LIMIT 1000", __FILE__, __LINE__); üstte verdiğim cod da LIMIT 1000 sayısı sizin forumda kaç tane konu varsa onu belirtin



2.

Kod: [Seç]
LIMIT 20", __FILE__, __LINE__);
bu code de LIMIT 20 yazan yeri forumda kaç üyeniz varsa limit belirleyin.

1 dediğim : konu sayısını belirler.Bunu da konu sayının biraz daha üstüne ayarlarsan sorun olmaz.
2 dediğim :İkinci dediğimde kullanıcı profilleri kaç tane istersen ayarlayabilirsiniz.

SMF kullanan bir sürü arkadaş forum indexlenmiyor diye dert yanmıştı bende çok sıkıntı çekiyordum bu konuda bir sürü program denedim fakat çok uzun sürdüğü için hep yarıda bıraktım üssteki code ise herşeyi kolaşlaştırıyor.

yukardaki kodu boş tane .php dosyası oluşturun içine atın codeleri ve kaydettikten sonra ftp forum ana dizine atın .php dosyasını ondan sonra
siteadi.com/forum/xxx.php açın ve bekleyin size herşeyi hazırlıcak sitemap hazırlama işi bittikten sonra sitemap.xml diye dosya yaratın ve xxx.php deki tüm linkleri sitemap.xml içine aktarın gerisi biliyorsun google.com/webmasters/sitemap sitemap kaydedin 2 önce yaptım ve bugun kontrol ettim forum daki konular indexlenmiş


kaynak





Linkback: https://www.buyuknet.com/smf-forum-indexlenmesi-cok-pratiktest-edildi-t21896.0.html

Etiket:

Bu bilgi size yardimci oldu mu?

EvetHayır
SMF forum indexlenmesi çok pratik.[Test edildi]
SMF forum indexlenmesi çok pratik.[Test edildi]
(Ortalama: 5 üzerinden 1.7 - 3 Oy)
3