Avantajları
1) Serverınızı asla kasmaz yormaz.
2) Tamamen işinizi bota degil botu sizin yönetmenizi sağlar.
3) Kullanımı çok basittir.
+
Yenilikler bitmiyor
Haber botu eklediginde 3 cümle alır haberden ve altına haber linkini adres olarak eklemez
Devamını Oku Şeklinde otomatik tanımlama yapar.
İşte bir konudan resim:
Kurulumuna geçelim.
1) http://simplepie.org/downloads/ adresinden simplepie indirip serverınızın anadizinine veya forum'un kurulu olduğu klasörün içine atınız.
2) http://www.forumlus.com/forum/simplepie/compatibility_test/sp_compatibility_test.php gördüğünüz gibi Herşey enabled olucak disabled olmayacak.
( Sebep Hostunuzu kasan şeylerin önlemini alan kısımlardır )
3) Aşağıdaki kodları Kendinize göre düzenliyip rss.php olarak root a yada forumun kurulu olduğu klasörün içine atınız.
<?php
error_reporting(E_ALL);
require("simplepie/simplepie.inc");
// these need the full path to your SMF files
require_once('/home/siteisminiz/public_html/SSI.php');
require_once('/home/siteisminiz/public_html/Sources/Subs-Post.php');
/** DATABASE Configuration */
define("DB_HOSTNAME","localhost"); //Insert your DB server name here
define("DB_USERNAME","*****"); //DB Kullanıcı adı
define("DB_PASSWD","******"); // DB Şifre
define("DB_DATABASE","*******"); //DB İsmi
// set variables ** Modify these to match your board
$iUserId = 99999; // Haber botunuzun Üye ID si
$iBoardId = 99999; // Haberin eklenecegi kategori ID si
$sRealName = "Haberci"; // Haber botunuzun üye adı
$sEmailAddr = "haberci@xxxx.net"; // Haber botunuzun mail adresi
$iMarkAsRead = TRUE; // Set this either true or false This defines whether the injected posts are marked as read.
$iUpdatePostCount = TRUE;// Set this to either true or false. This defines whether to include the injected items in your post counts.
$sFeedUrl = "http://www.zaman.com.tr/webapp-tr/kultursanat.rss"; // Bu Kısımlar rss yada xml haber cekilicek adres satırları
$iMaxItemsToRetrieve = 50; // Kaç Haber eklenicekse Haber sayısını belirtin..
// Instantiate SimplePie object
$feed = new SimplePie($sFeedUrl);
$feed->init();
$feed->handle_content_type();
$obj_db = mysql_connect(DB_HOSTNAME,DB_USERNAME,DB_PASSWD) or die (mysql_error());
mysql_select_db(DB_DATABASE,$obj_db) or die (mysql_error());
if ($feed->data)
{
$max = $feed->get_item_quantity($iMaxItemsToRetrieve);
for ($x = 0; $x < $max; $x++)
{
// This is a simple check to make sure that the item doesn't already exist in your SMF.
$sSql = "SELECT
COUNT(ID_MSG) AS ENTRY_EXISTS
FROM smf_messages
WHERE subject = '$tekrakibimmicrosoft'";
$obj_query = mysql_query($sSql, $obj_db) or die(mysql_error());
$int_count = mysql_fetch_assoc($obj_query) or die(mysql_error());
mysql_free_result($obj_query);
// If it's a new item, insert it!
if ($int_count['ENTRY_EXISTS'] == 0)
{
$sItemTitle = $tekrakibimmicrosoft;
//$sItemTitle = smart_trim(addslashes($item->get_title()), 50, false, "...");