Seite 1 von 1

mod für 2.0.4 benachrichtigung bei neuen thema gesucht

Verfasst: 31.03.2003 04:24
von Diskus
wie ihr oben schon lesen könnt suche ich eine mod die mich benachrichtigt wenn ein neues thema in einem forum geschrieben wurde. da ich aber neuling bin solltet sie einfach zu installieren sein (wenn möglich). ich hatte eine mal probiert die war von

Mod Title: Forum notification mod
Mod Version: 1.2
Date: 2002-04-27
Author: David Herrmann < david.herrmann@gmx.net >
http://davilsphpbb.sourceforge.net/

aber da kam schon eine Fehler meldung wenn man das forum öffnen wollte. also wer kann mir helfen? wenn es geht bitte mit einer deutschen beschreibung (wenn möglich) da ich in english nur die worte „jes“ und „no“ kenne :-).

viele grüße,
steve

Verfasst: 31.03.2003 07:36
von Chaze
Einen anderen Mod wirst Du wahrscheinlich nicht finden! Dieser Mod funktioniert unter 2.0.4 einwandfrei.
Was verstehst Du denn in der Anleitung nicht? Wenn Du Fragen hast kann ich Dir das eine oder andere Übersetzen.

Verfasst: 01.04.2003 01:52
von Diskus
hallo Chaze

nun ja das was ich nicht gemacht habe ist diese

#################################################################
##
## Author Note:
##
## This mod adds a "watch this forum" link to the viewforum page, similar to the
## "watch this topic" link on viewtopic. further on, this mod changes the structure
## of email bodies, now including the post text, the name of the poster etc. in the
## email.
## there are different email texts for watched topic (reply), watched forum (newtopic) and
## watched forum (reply).
## the texts are available both in english and german
##
## security should be ok, you are not able to receive a notification email if the forum is private
## and you are not allowed to read!
##
## Do not forget to run the following commands on your sql database (replace phpbb2_ with your db prefix):
##
## CREATE TABLE phpbb2_forums_watch (
## forum_id smallint(5) unsigned NOT NULL default '0',
## user_id mediumint(8) NOT NULL default '0',
## notify_status tinyint(1) NOT NULL default '0',
## KEY forum_id (forum_id),
## KEY user_id (user_id),
## KEY notify_status (notify_status)
## )
##
## ALTER TABLE phpbb2_forums
## ADD forum_notify TINYINT(1) UNSIGNED DEFAULT '1' NOT NULL
## AFTER forum_last_post_id
##
## the description is for subsilver theme users, it should work with every theme
## if you are using the files from the package you only have to run the sql command
##
## this mod was tested on phpBB 2.0.0
##
## Should be no problem for any user who knows what they are doing ;-)
##
#################################################################

brauch ich das und was muss ich machen bitte in deutsch.

viele grüße,
steve

Verfasst: 01.04.2003 07:54
von Chaze
Du mußt noch die Tabellen in der Datenbank anlegen. Im PHPmyAdmin den SQL-Befehl ausführen:
CREATE TABLE phpbb2_forums_watch (
forum_id smallint(5) unsigned NOT NULL default '0',
user_id mediumint( NOT NULL default '0',
notify_status tinyint(1) NOT NULL default '0',
KEY forum_id (forum_id),
KEY user_id (user_id),
KEY notify_status (notify_status)
)

ALTER TABLE phpbb2_forums
ADD forum_notify TINYINT(1) UNSIGNED DEFAULT '1' NOT NULL
AFTER forum_last_post_id
Das phpbb2 mußt Du ggf. noch in Dein Table-Prefix ändern.

Verfasst: 22.05.2004 13:07
von Jann
Hallo,

weiß jemand, ob dieser Mod auch unter 2.08 läuft? Ich hab ihn nämlich noch nicht erfolgreich ans Laufen bekommen.

Jan

Verfasst: 28.07.2004 12:22
von schlubiz
Chaze hat geschrieben:Du mußt noch die Tabellen in der Datenbank anlegen. Im PHPmyAdmin den SQL-Befehl ausführen:
CREATE TABLE phpbb2_forums_watch (
forum_id smallint(5) unsigned NOT NULL default '0',
user_id mediumint( NOT NULL default '0',
notify_status tinyint(1) NOT NULL default '0',
KEY forum_id (forum_id),
KEY user_id (user_id),
KEY notify_status (notify_status)
)

ALTER TABLE phpbb2_forums
ADD forum_notify TINYINT(1) UNSIGNED DEFAULT '1' NOT NULL
AFTER forum_last_post_id
Das phpbb2 mußt Du ggf. noch in Dein Table-Prefix ändern.
wenn der thread auch schon etwas älter ist, trotzdem ne kleine korrektur:

------------------------------------------------------------------------------------
CREATE TABLE phpbb2_forums_watch (
forum_id smallint(5) unsigned NOT NULL default '0',
user_id mediumint(8) NOT NULL default '0',
notify_status tinyint(1) NOT NULL default '0',
KEY forum_id (forum_id),
KEY user_id (user_id),
KEY notify_status (notify_status)
)

ALTER TABLE phpbb2_forums
ADD forum_notify TINYINT(1) UNSIGNED DEFAULT '1' NOT NULL
AFTER forum_last_post_id
------------------------------------------------------------------------------------

sonst kommt nur ne böse sql-fehlermeldung ;)

der hack läuft bei mir übrigens unter 2.08


greetz schlubiz

Verfasst: 29.07.2004 03:16
von danysahne333
zu dem mod hab ich ne frage: bekommt da jeder user ne benachritigung wenn in einem forum ein neues thema eröffnet wurde?

funktioniert der mod denn nun mit 2.0.8/2.0.10 ??

dany

Verfasst: 29.07.2004 12:01
von schlubiz
zu dem mod hab ich ne frage: bekommt da jeder user ne benachritigung wenn in einem forum ein neues thema eröffnet wurde?
- der admin kann beim erstellen der foren festlegen, ob ein forum abonniert werden kann oder nicht
- jeder user kann diese foren dann abonnieren und erhält eine nachricht, sobald irgendjemand dort ein neues thema eröffnet hat
funktioniert der mod denn nun mit 2.0.8/2.0.10 ??
der mod läuft bei mir problemlos unter 2.0.8 8)

schlubiz