phpBB Türkiye - phpBB3 Türkçe destek ve geliştirme

İçeriği atla

profesyonel phpBB3 hizmetleri

Sitemiz sadece phpBB 3.0 sürümüne destek vermektedir. Konu açmadan, ileti yazmadan önce lütfen site kuralları sayfamıza göz atınız.

lastRSS autoposting bot MOD (0.1.1)

lastRSS autoposting bot MOD (0.1.1)

İleti Ejkia 15 Haz 2008 11:22

MOD Title: lastRSS autoposting bot
MOD Description: RSS content autoposting bot for phpBB3
MOD Version: 0.1.1
Last Stable version: ... still under development

eatures:

o Automatically posting new items from RSS feed
o NO ACP management at this time

Works with:
o Tested
+ GOLD
+ 3.0.1

Requirements:
o Your webhosting must allow fopen or curl


Licence: GNU General Public License v2
NOTICE : This mod is based on lastRSS agregator php library by Vojtech Semecky, http://lastrss.oslab.net/

Installation Level: Easy
Installation Time: 3 Minutes
Format: txt (MODX will be introduced in beta versions)



Devamı burda http://www.phpbb.com/community/viewtopi ... 0&t=829325



Arkadaşlar bu mod kurulumu nasıl yapacaz bi yardım edermisinizzz
Ejkia
kullanıcı
kullanıcı

İleti: 112
Kayıt: 03 Mar 2008 19:55
Konum: Ankara
İsim: Ferhat
HTML: İyi
CSS: Başlangıç
PHP: Orta
phpBB3: Orta
Sürüm: phpBB3 3.0.2

 

Re: lastRSS autoposting bot MOD (0.1.1)

İleti Simuzer 15 Haz 2008 12:15

Gelişmiş phpBB3 Premod Sistemi | Simuzer Premod
http://www.simuzer.com
Simuzer
kullanıcı
kullanıcı

Kullanıcı avatarı

İleti: 1041
Kayıt: 28 Mar 2007 20:19
HTML: İyi
CSS: Orta
PHP: Başlangıç
phpBB3: Orta
Sürüm: 3.0.2

Re: lastRSS autoposting bot MOD (0.1.1)

İleti ALEXIS 15 Haz 2008 12:40

Önermiyorum, henüz geliştirme ve ACP kısımlarına başlanmamış bile.
ALEXIS
kullanıcı
kullanıcı

Kullanıcı avatarı

İleti: 2857
Kayıt: 03 Arl 2006 08:57
Konum: İstanbul
İsim: Sevdin Filiz
HTML: Çok iyi
CSS: Çok iyi
PHP: İyi
phpBB3: Çok iyi
Sürüm: phpBB 3.0.3-RC1

Re: lastRSS autoposting bot MOD (0.1.1)

İleti Ejkia 15 Haz 2008 12:59

mod kurulumu biliyorum sorun olmaz tşk ama benim tam istediğim modu kurdum

nerden alıp haberi nereye konu acabileciğini nerden gösterecem

adminin dediği gibi acp yok

kodlarda böyle bişey var


Kod: Tümünü seç
// example data
/*$feed = array(
  'name' => 'phpbb.com',
  'url' => 'http://www.phpbb.com/feeds/rss/',
  'next_check' => 0,
  'next_check_after' => 1,
  'destination_id' => 1,
  'enabled' => 1,
);*/



sql de de bu var

Kod: Tümünü seç
CREATE TABLE `phpbb_lastrss_autopost` (
  `name` varchar(255) collate utf8_bin NOT NULL,
  `url` varchar(255) collate utf8_bin NOT NULL,
  `next_check` int(10) NOT NULL,
  `next_check_after` int(2) NOT NULL,
  `destination_id` int(3) NOT NULL,
  `enabled` int(1) NOT NULL,
  PRIMARY KEY  (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;

INSERT INTO `phpbb_lastrss_autopost` (`name`, `url`, `next_check`, `next_check_after`, `destination_id`, `enabled`) VALUES
('lastRSS', 'http://phpbb3.smika.net/lastrss.php', 0, 1, 1, 1);

INSERT INTO `phpbb_config` (`config_name`, `config_value`, `is_dynamic`) VALUES
('lastrss_type', 'curl', 0),
('lastrss_ap_version', '0.1.0', 0),
('lastrss_ap_enabled', '1', 0),
('lastrss_ap_items_limit', '5', 0),
('lastrss_ap_bot_id', '2', 0);
Ejkia
kullanıcı
kullanıcı

İleti: 112
Kayıt: 03 Mar 2008 19:55
Konum: Ankara
İsim: Ferhat
HTML: İyi
CSS: Başlangıç
PHP: Orta
phpBB3: Orta
Sürüm: phpBB3 3.0.2

Re: lastRSS autoposting bot MOD (0.1.1)

İleti ALEXIS 15 Haz 2008 18:13

SQL e manuel ekleyeceksin

short_manual_for_v010.txt

lastRSS RSS autoposting bot (lRAB)
SHORT MANUAL

Content
1. New config values - what do they mean?
2. How to manage lastRSS autoposting bot without ACP ?

1. New config values - what do they mean?
$config['lastrss_ap_enabled'] = 1; (boolean - if true, ap is enabled and feeds are checked)
$config['lastrss_ap_items_limit'] = 5; (number of items which is bot trying to post)
$config['lastrss_ap_bot_id'] = 143; (user_id of user, which will post it to forum)

- all those config values are in database table config of your phpbb install ...

2. How to manage lastRSS autoposting bot without ACP ?
(ACP will be introduced with release of version 0.2.0)
- all configuration for feeds of lastRSS autoposting bot is in database table
phpbb_lastrss_autopost ...
Columns explanation :
`name` - name of the feed - is also used in posting
`url` - URL of the feed ...
`next_check` - next check time (from PHP function time())
`next_check_after` - number of hours between checks
`destination_id` - forum_id where BOT will try to post
`enabled` INT( 1 ) - boolean - if true, this feed will be checked


sana gereken sorgu da şu:


Kod: Tümünü seç
INSERT INTO `phpbb_lastrss_autopost` (`name`, `url`, `next_check`, `next_check_after`, `destination_id`, `enabled`) VALUES
('tanim_isim', 'RSS_adresi', 0, 1, 1, 1);
ALEXIS
kullanıcı
kullanıcı

Kullanıcı avatarı

İleti: 2857
Kayıt: 03 Arl 2006 08:57
Konum: İstanbul
İsim: Sevdin Filiz
HTML: Çok iyi
CSS: Çok iyi
PHP: İyi
phpBB3: Çok iyi
Sürüm: phpBB 3.0.3-RC1

Re: lastRSS autoposting bot MOD (0.1.1)

İleti muiketi 15 Haz 2008 18:28

gözümün üstünde olduğu bir eklenti..

teknoloji haberleri diye bi forum aç önemli bir haber sitesi ekle haberler oto eklensin..

oh ne ala ne ala :)
site kurallarını ve alıntı şartlarını okuyamayanlar için okuma yazma kursu açılacaktır.. önkayıtlar başladı !!!
muiketi
yetkili
yetkili

Kullanıcı avatarı

İleti: 1046
Kayıt: 30 Eyl 2007 01:41
HTML: İyi
CSS: Orta
PHP: Başlangıç
phpBB3: Başlangıç
Sürüm: phpBB3.0.2

Re: lastRSS autoposting bot MOD (0.1.1)

İleti CemBostan 16 Haz 2008 14:33

:) Bende listeme ekledim :)
CemBostan
kullanıcı
kullanıcı

İleti: 52
Kayıt: 06 Eyl 2007 13:50
Konum: Balıkesir
İsim: Cem Bostan
HTML: Orta
CSS: Başlangıç
PHP: Başlangıç
phpBB3: Orta
Sürüm: phpBB RC 7

Re: lastRSS autoposting bot MOD (0.1.1)

İleti Ejkia 16 Haz 2008 19:43

modu kuran bi arkadaş varmı peki
Ejkia
kullanıcı
kullanıcı

İleti: 112
Kayıt: 03 Mar 2008 19:55
Konum: Ankara
İsim: Ferhat
HTML: İyi
CSS: Başlangıç
PHP: Orta
phpBB3: Orta
Sürüm: phpBB3 3.0.2

Re: lastRSS autoposting bot MOD (0.1.1)

İleti ALEXIS 17 Haz 2008 08:38

Kurdum ve en başta dediğim gibi önermiyorum şimdilik, boşuna uğraşıp duracaksınız ve boşuna da stabil olmayan eklentiler için soru sorup duracaksınız.
ALEXIS
kullanıcı
kullanıcı

Kullanıcı avatarı

İleti: 2857
Kayıt: 03 Arl 2006 08:57
Konum: İstanbul
İsim: Sevdin Filiz
HTML: Çok iyi
CSS: Çok iyi
PHP: İyi
phpBB3: Çok iyi
Sürüm: phpBB 3.0.3-RC1


Eklenti Sorunlar & Yardım


Kimler çevrimiçi

Bu forumu görüntüleyenler: Kayıtlı kullanıcı yok ve 2 misafir