Seite 1 von 1

Rss Feeds von anderen Seiten als Themen in Forum posten

Verfasst: 17.01.2011 21:43
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

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

Verfasst: 17.01.2011 22:45
von AmigaLink

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

Verfasst: 18.01.2011 12:26
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

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

Verfasst: 18.01.2011 23:16
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.

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

Verfasst: 30.01.2011 19:07
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

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

Verfasst: 03.02.2011 20:54
von lancic50
*push