Seite 1 von 1

Fehler in einem User Account

Verfasst: 11.10.2004 13:09
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? :(

Verfasst: 11.10.2004 16:55
von Acid
Bevor du das jetzt alles änderst: Handelt es sich dabei um Themenbenachrichtigungen?

Verfasst: 11.10.2004 21:28
von Eclipse16V
Ja

Wieso gibt es da schon ein bekanntes Problem?

Verfasst: 11.10.2004 21:38
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 ?

Verfasst: 12.10.2004 09:35
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 
#################################################################

Verfasst: 12.10.2004 13:56
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..

Verfasst: 13.10.2004 16:03
von Eclipse16V
Danke.

Der ist aber auch nicht mehr der neuste. :(