Fehler in einem User Account

Du hast Probleme beim Einbau oder bei der Benutzung eines Mods? In diesem Forum bist du richtig.
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Antworten
Benutzeravatar
Eclipse16V
Mitglied
Beiträge: 576
Registriert: 27.11.2002 17:04
Wohnort: Gießen
Kontaktdaten:

Fehler in einem User Account

Beitrag von Eclipse16V »

Hi,

ich glaube ich habe einen Fehler in einem User Account. Dieser User verursacht immer wieder Fehler im Forum. Zum Beispel bekommen andere User immer eMail wo der Username xyz drin steht wobei sie es nicht sind bzw. die Nachricht nicht für diesen User gedacht ist. Die eMails sollen immer an den User xyz gehen und nicht an die anderen User.

Jetzt meine Frage:

Ich will diesen User löschen bzw. neu anlegen. Dabei soll es aber so sein das er seine Beiträge, Auszeichungen, Punkte, Rank, ... behält.
Wie kann ich das schnell und einfach lösen?
Es ändert sich ja eigentlich nur die User ID.

Habe schon mal in der DB nachgesehen, aber der DB Eintrag des Users ist so wie jeder andere.

Kann mir dabei jemand helfen? :(
www.Eclipse16V.de
Erste Eclipse16V IG Deutschlands
Acid
Ehrenadmin
Beiträge: 12195
Registriert: 26.04.2001 02:00
Wohnort: Berlin

Beitrag von Acid »

Bevor du das jetzt alles änderst: Handelt es sich dabei um Themenbenachrichtigungen?
Benutzeravatar
Eclipse16V
Mitglied
Beiträge: 576
Registriert: 27.11.2002 17:04
Wohnort: Gießen
Kontaktdaten:

Beitrag von Eclipse16V »

Ja

Wieso gibt es da schon ein bekanntes Problem?
www.Eclipse16V.de
Erste Eclipse16V IG Deutschlands
Acid
Ehrenadmin
Beiträge: 12195
Registriert: 26.04.2001 02:00
Wohnort: Berlin

Beitrag von Acid »

Eigentlich nicht.. :wink:

Lösche mal ggf. den user-Eintrag in der "topics_watch" Tabelle.
Hast du den notification-MOD von davil installiert ?
Benutzeravatar
Eclipse16V
Mitglied
Beiträge: 576
Registriert: 27.11.2002 17:04
Wohnort: Gießen
Kontaktdaten:

Beitrag von Eclipse16V »

davil ???

Habe den hier drin:

Code: Alles auswählen

################################################################# 
## Mod Title: Forum notification mod 
## Mod Version: 1.4
## Date: 2004-02-22
## Author: David Herrmann < david.herrmann@gmx.net >
## Description: adds forum notification functionality to phpBB 2.0.6c,
## also adds some enhancements to the email bodies
## 
## Installation Level: intermediate
## Installation Time: 20 Minutes 
## Files To Edit: 
##                posting.php
##                viewforum.php
##		  admin/admin_forums.php
##                includes/constants.php
##                includes/functions_post.php 
##                language/lang_english/lang_main.php
##                language/lang_english/lang_admin.php
##                language/lang_english/email/topic_notify.tpl
##                templates/subSilver/viewforum_body.tpl
##                templates/subSilver/admin/forum_edit_body.tpl
##
##                language/lang_german/lang_main.php
##                language/lang_german/lang_admin.php
##                language/lang_german/email/topic_notify.tpl
##
## Files to Create:
##                language/lang_english/email/newtopic_notify.tpl
##                language/lang_english/email/forum_notify.tpl
##
##                language/lang_german/email/newtopic_notify.tpl
##                language/lang_german/email/forum_notify.tpl
##
## Included Files:
##                posting.php
##                viewforum.php
##		  admin/admin_forums.php
##                includes/constants.php
##                includes/functions_post.php 
##                language/lang_english/lang_main.php
##                language/lang_english/lang_admin.php
##                language/lang_english/email/topic_notify.tpl
##                language/lang_english/email/newtopic_notify.tpl
##                language/lang_english/email/forum_notify.tpl
##                language/lang_german/lang_main.php
##                language/lang_german/lang_admin.php
##                language/lang_german/email/topic_notify.tpl
##                language/lang_german/email/newtopic_notify.tpl
##                language/lang_german/email/forum_notify.tpl
##                templates/subSilver/viewforum_body.tpl
##                templates/subSilver/admin/forum_edit_body.tpl
## 
################################################################# 
## 
## 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 text.
## 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.6c
##
## Should be no problem for any user who knows what they are doing ;-)
##
#################################################################
##
## New in 1.4:
##
## Updated mod for phpBB 2.0.6c (should also do with 2.0.5, but untested)
## 
#################################################################
##
## New in 1.2:
##
## Fixed the url bug in the email text. users of 1.1 can replace the user_notification
## function in the incldues/functions_post.php file with the new one and it should work.
## 
#################################################################
##
## New in 1.1:
##
## Now there's a checkbox in the "edit forum" admin panel where you can turn the 
## notification on or off for every forum. for example, a test forum won't need 
## notification ever and any user doing it would only cause useless traffic.
## 
#################################################################
## 
## users of version 1.0 of this mod should just use the files in the package to
## overwrite the old ones and run the second sql command. there were slight changes 
## in nearly every file!
## of course you can also run a diff to the 1.0 description and only update the changed areas ;-)
##
################################################################# 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
#################################################################
www.Eclipse16V.de
Erste Eclipse16V IG Deutschlands
Acid
Ehrenadmin
Beiträge: 12195
Registriert: 26.04.2001 02:00
Wohnort: Berlin

Beitrag von Acid »

Ja, den meinte ich.
Dieser welcher wird wohl für das "Fehlverhalten" verantwortlich sein.
imho wurde er für 2.0.6 aktualisiert (aber auch nicht 100%ig getestet).

Da momentan auch keiner den MOD updated, würde ich ihn deinstallieren und diesen MOD testen. Dieser ist v.a. aktueller..
Benutzeravatar
Eclipse16V
Mitglied
Beiträge: 576
Registriert: 27.11.2002 17:04
Wohnort: Gießen
Kontaktdaten:

Beitrag von Eclipse16V »

Danke.

Der ist aber auch nicht mehr der neuste. :(
www.Eclipse16V.de
Erste Eclipse16V IG Deutschlands
Antworten

Zurück zu „phpBB 2.0: Mod Support“