هک اضافه کردن آدرس پستهای فروم در نقشه گوگل سایت ! این کار در نسخه های دیتالایف 7 تا 7.3 و دیتالایف فروم های 2 تا 2.2 عملی است.
1- فایل engine/classes/google.class.php را باز کنید و به دنبال کد زیر بگردید:
$map .= $this->get_news();
بعد از آن کد زیر را قرار بدهید:
$map .= $this->get_dleforum();
2- در همان فایل به دنبال کد زیر بگردید:
function get_xml($loc, $lastmod){
قبل از آن کد زیر را قرار بدهید:
function get_dleforum() {
global $db;
$xml = "";
$lastmod=date("Y-m-d");
$this->priority = $this->stat_priority;
$result = $db->query("SELECT tid FROM " . PREFIX . "_forum_topics");
while($row = $db->get_row($result)) {
if ($this->allow_url == "yes") $loc = $this->home."forum/topic_".$row['tid'];
else $loc = $this->home."index.php?do=forum&showtopic=".$row['tid'];
$xml .= $this->get_xml($loc, $lastmod);
}
return $xml;
}
global $db;
$xml = "";
$lastmod=date("Y-m-d");
$this->priority = $this->stat_priority;
$result = $db->query("SELECT tid FROM " . PREFIX . "_forum_topics");
while($row = $db->get_row($result)) {
if ($this->allow_url == "yes") $loc = $this->home."forum/topic_".$row['tid'];
else $loc = $this->home."index.php?do=forum&showtopic=".$row['tid'];
$xml .= $this->get_xml($loc, $lastmod);
}
return $xml;
}
حالا میتونید از طریق آدرس http://Yoursite.com/admin.php?mod=googlemap نقشه سایت گوگل خود را به روز کنید و اگه در انجمنتون پست داشته باشید آدرس آنها به نقشه سایت شما اضافه میشود !
موفق باشید !