Smf Rss Bot otomatik haber ekleme botu (simplepie ) download

WMK28.11.2010 - 23:44
İnşallah Olur

tarantula90129.11.2010 - 05:24
işe yarıyor yapamazsanız ben sıze yardımcı olurum

ByCrazy18.12.2010 - 03:04
TEŞEKKÜRLER sağolun

msg01.01.2011 - 18:55
<?php
error_reporting(E_ALL);
require("simplepie/simplepie.inc");
// these need the full path to your SMF files
require_once('SSI.php');
require_once('Sources/Subs-Post.php');

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
// initialize variables ** Don't touch these.
$sSql = "";
$aryMsgOptions = Array();
$aryTopicOptions = Array();


$aryPosterOptions = Array();
$encoding = "iso-8859-9";
 
// set variables ** Modify these to match your board
$iUserId = 99999; // Haber botunuzun Üye ID si
$iBoardId = 2; // Haberin eklenecegi kategori ID si
$sRealName = "Forum Rizem Habercisi"; // Haber botunuzun üye adı
$sEmailAddr = "mehmetsgulsen@hotmail.com"; // 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://podcast.samanyoluhaber.com/Politika.rss"; // Bu Kısımlar rss yada xml haber cekilicek adres satırları
$iMaxItemsToRetrieve = 10; // 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  )
    {
 
    $item = $feed->get_item($x);
    $hoppa = $item->get_title();
$hoppa1 = iconv("UTF-8", "ISO-8859-9", $hoppa);
$tekrakibimmicrosoft = addslashes($hoppa1);
 
// 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, "...");
 
$hoppa2 = $item->get_description();
      $hoppa3 = iconv("UTF-8", "ISO-8859-9", $hoppa2);
      $phpninustasigozlerininhastasiyim = addslashes($hoppa3);
$sItemBody = "<p>" . $item->get_date('j M Y') . "</p><p>$phpninustasigozlerininhastasiyim</p><p><a href="" . $item->get_permalink() . "">Devamini Oku[/url]</p>";
 
    // Setup the variables for creatPost()
$aryTopicOptions = array
(
    'id' => 0,
    'board' => $iBoardId,
    'mark_as_read' => $iMarkAsRead,
);
 
$aryPosterOptions = array
(
    'id' => $iUserId,
    'name' => $sRealName,
    'email' => $sEmailAddr,
    'ip' => '127.0.0.1',
    'update_post_count' => $iUpdatePostCount,
);
 
$aryMsgOptions = array
(
    'id' => 0,
    'subject' => $sItemTitle,
    'body' => $sItemBody,
); 
 
    echo("*******************************************************************
rn");
echo("title: " . $sItemTitle . "
rn");
    echo("*******************************************************************
rn");
     
    createPost($aryMsgOptions, $aryTopicOptions, $aryPosterOptions);
    }
    else
    {
    echo("There is already a match
rn");
    }
    }
}
 
if ($obj_db) {
    @mysql_close($obj_db);
}
?>

 
 
 
 
BU ŞEKİLDE DEĞİŞTİRDİM  AŞAĞIDAKİ HATA SATIRINI VERDİ.   NERDE YANLIŞ YAPTIM
 
 
Parse error: syntax error, unexpected '"' in /home/adanahab/public_html/rss.php on line 141

tarantula90101.01.2011 - 20:07
Kod: [Seç]
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
// initialize variables ** Don't touch these.
$sSql = "";
$aryMsgOptions = Array();
$aryTopicOptions = Array();
$aryPosterOptions = Array();
$encoding = "iso-8859-9";
 
// set variables ** Modify these to match your board
$iUserId = 99999; // Haber botunuzun Üye ID si
$iBoardId = 2; // Haberin eklenecegi kategori ID si
$sRealName = "Forum Rizem Habercisi"; // Haber botunuzun üye adı


$sEmailAddr = "mehmetsgulsen@hotmail.com"; // 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://podcast.samanyoluhaber.com/Politika.rss"; // Bu Kısımlar rss yada xml haber cekilicek adres satırları
$iMaxItemsToRetrieve = 10; // Kaç Haber eklenicekse Haber sayısını belirtin..
// Instantiate SimplePie object
$feed = new SimplePie($sFeedUrl);


burdakı ayarlar eksık eksık ayarları doldurun

msg04.01.2011 - 10:28
o doldurulmuş hali hocam. yanlışmı doldurmuşum

tarantula90104.01.2011 - 21:19
sen sadece emaılını eklemıssın orda sıfre db adı vs bılgıler var onlarıda doldurman gerek

jakkal199714.01.2011 - 21:09
asdasdadgafdhafdh

speed xp24.03.2011 - 13:20
teşekkürler

OsCeY29.04.2011 - 01:08
Teşekkürler.

ekare13.06.2011 - 22:10
Elinize Sağlık Deneyeceğiz.

fatih0502.01.2012 - 17:09
sağol kardeş

caglar-kaymak05.02.2012 - 23:29
teşekkürler

snrj21.02.2012 - 00:25
test

cc1224.03.2012 - 20:18
Saol

Norika27.04.2012 - 21:41
bakalım deneyeceğim

tarantula90129.07.2012 - 01:21
smf rss mod çalışıyor

trdunyam19.10.2012 - 20:25
teşekkürler kardeşim

forumcodes23.02.2013 - 17:53
teşekkürler

mumya023617.04.2013 - 17:38
teşekkürlerrrrrrrr

Etiket:
smf haber botu  smf bot  smf konu çekme  smf konu çekme botu 

Bu bilgi size yardimci oldu mu?

EvetHayır
Smf Rss Bot otomatik haber ekleme botu (simplepie ) download
Smf Rss Bot otomatik haber ekleme botu (simplepie ) download
(Ortalama: 5 üzerinden 2.5 - 2 Oy)
2