Rss Feeds von anderen Seiten als Themen in Forum posten

Du suchst einen bestimmten Mod, weißt aber nicht genau wo bzw. ob er überhaupt existiert? Wenn dir dieser Artikel nicht weiterhilft, kannst du hier den von dir gewünschten/gesuchten Mod beschreiben ...
Falls ein Mod-Autor eine der Anfragen hier aufnimmt, um einen neuen Mod zu entwickeln, geht's in [3.0.x] Mods in Entwicklung weiter.
Forumsregeln
phpBB 3.0 hat das Ende seiner Lebenszeit überschritten
phpBB 3.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 3.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf die neuste phpBB-Version, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Antworten
Nightforce
Mitglied
Beiträge: 10
Registriert: 17.01.2011 21:37

Rss Feeds von anderen Seiten als Themen in Forum posten

Beitrag von Nightforce »

Also, wie man schon dem Topic Namen (Ja ich weis, is bissl lang XD) entnehmen kann suche ich einen Mod für Phpbb 3.0.8, welcher mir erlaubt von einer anderen Homepage -> http://www.trackitdown.net/genre/hardco ... leases.rss jeden Feed als Topic darzustellen.

Habe schon überall gesucht und immer nur die Phpbb Funktion Atom-Feeds gefunden... =/

Würde mich über jede Hilfe freuen =)

Lg.
Nightforce
Nightforce
Mitglied
Beiträge: 10
Registriert: 17.01.2011 21:37

Re: Rss Feeds von anderen Seiten als Themen in Forum posten

Beitrag von Nightforce »

Danke für deine Hilfe! =)

Also den Mod hab ich schon vor längerer Zeit ausprobiert, habe ihn aber nicht zum laufen gebracht =/

Letzter Beitrag aus dem Thread auf phpbb.com:
If you can settle for a mod which posts the provided content of feeds you supply through the ACP this could work for you. But the mod is still in development, and it is not working for everyone, and not for all feeds. Several people have reported the mod stopping working abruptly after working fine. There is no support for the mod, and the author may, or may not return again, again.
Gibt es vielleicht noch einen anderen Mod dafür???

Danke
Nightforce
Benutzeravatar
AmigaLink
Mitglied
Beiträge: 1417
Registriert: 09.06.2003 21:56
Wohnort: NRW
Kontaktdaten:

Re: Rss Feeds von anderen Seiten als Themen in Forum posten

Beitrag von AmigaLink »

Mir ist kein anderer bekannt. Außer vielleicht dem "lastRSS autoposting bot". Das ist jedoch der Vorgänger des "SmiX.MODs Feed News Center", von daher denke ich mal das der dir die gleichen Probleme bereitet.
lancic50
Mitglied
Beiträge: 164
Registriert: 06.11.2009 01:02
Wohnort: Görlitz
Kontaktdaten:

Re: Rss Feeds von anderen Seiten als Themen in Forum posten

Beitrag von lancic50 »

hab diesen eingebaut und wenn ich auf die install gehe kommt diese fehlermeldung:

Code: Alles auswählen

Warning: include() [function.include]: Unable to access ../common.php in /var/www/web8/html/php3/install.php on line 17

Warning: include(../common.php) [function.include]: failed to open stream: No such file or directory in /var/www/web8/html/php3/install.php on line 17

Warning: include() [function.include]: Unable to access ../common.php in /var/www/web8/html/php3/install.php on line 17

Warning: include(../common.php) [function.include]: failed to open stream: No such file or directory in /var/www/web8/html/php3/install.php on line 17

Warning: include() [function.include]: Failed opening '../common.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/web8/html/php3/install.php on line 17

Fatal error: Call to a member function session_begin() on a non-object in /var/www/web8/html/php3/install.php on line 18
Kann mir vielleicht jemand sagen, wie ich die Tabellen manuell in die Datenbank bekommen?
das ist der Inhalt der install:

Code: Alles auswählen

	// INSTALL latest version
	// If you have problems with this install script, insert this into db manually
	$sql_array = array(
		'DROP TABLE IF EXISTS ' . SMIXMODS_FEED_NEWS_CENTER_FEEDS,
		'CREATE TABLE ' . SMIXMODS_FEED_NEWS_CENTER_FEEDS . ' (
			id int(11) NOT NULL AUTO_INCREMENT,
			feed_name varchar(255) NOT NULL DEFAULT \'\',
			url varchar(255) NOT NULL DEFAULT \'\',
			feed_type varchar(10) NOT NULL DEFAULT \'\',
			next_update varchar(10) NOT NULL DEFAULT \'0\',
			last_update int(10) NOT NULL DEFAULT \'0\',
			available_feed_atributes varchar(255) NOT NULL DEFAULT \'\',
			available_item_atributes varchar(255) NOT NULL DEFAULT \'\',
			encoding varchar(255) NOT NULL DEFAULT \'\',
			refresh_after varchar(5) COLLATE utf8_bin NOT NULL DEFAULT \'3600\',
			template_for_displaying varchar(255) NOT NULL DEFAULT \'\',
			template_for_posting varchar(255) NOT NULL DEFAULT \'\',
			poster_id int(5) NOT NULL DEFAULT \'0\',
			poster_forum_destination_id int(5) NOT NULL DEFAULT \'0\',
			poster_topic_destination_id int(5) NOT NULL DEFAULT \'0\',
			posting_limit int(2) NOT NULL DEFAULT \'1\',
			enabled_posting int(1) NOT NULL DEFAULT \'0\',
			enabled_displaying int(1) NOT NULL DEFAULT \'0\',
			PRIMARY KEY (id)
		);',

		// I've decided to skip the default feed, because the settings can be faulty ...
//		'INSERT INTO ' . SMIXMODS_FEED_NEWS_CENTER_FEEDS . ' (id, feed_name, url, feed_type, next_update, last_update, available_feed_atributes, available_item_atributes, encoding, refresh_after, template_for_displaying, template_for_posting, poster_id, poster_forum_destination_id, poster_topic_destination_id, posting_limit, enabled_posting, enabled_displaying) VALUES (NULL, \'phpBB.com\', \'http://www.phpbb.com/community/feed.php?mode=news\', \'atom\', \'0\', \'0\', \'\', \'\', \'utf-8\', \'7200\', \'\', \'\', \'2\', \'2\', \'0\', \'5\', \'1\', \'0\');',
		'INSERT INTO ' . CONFIG_TABLE . ' VALUES (\'sfnc_download_function\', \'simplexml\', \'0\');',
		'INSERT INTO ' . CONFIG_TABLE . ' VALUES (\'sfnc_cron_init\', \'0\', \'1\');',
		'INSERT INTO ' . CONFIG_TABLE . ' VALUES (\'sfnc_cron_posting\', \'0\', \'1\');',
		'INSERT INTO ' . CONFIG_TABLE . ' VALUES (\'sfnc_index_init\', \'0\', \'1\');',
		'INSERT INTO ' . CONFIG_TABLE . ' VALUES (\'sfnc_index_posting\', \'0\', \'1\');',
		'INSERT INTO ' . CONFIG_TABLE . ' VALUES (\'sfnc_version\', \''.$version.'\', \'0\');',
	);
}

// DO THE INSTALL OR UPDATE
lancic50
Mitglied
Beiträge: 164
Registriert: 06.11.2009 01:02
Wohnort: Görlitz
Kontaktdaten:

Re: Rss Feeds von anderen Seiten als Themen in Forum posten

Beitrag von lancic50 »

*push
Antworten

Zurück zu „[3.0.x] Mod Suche/Anfragen“