Recent Topics

1 Jul 18, 2006 11:15    

Hello,

how can I deleting an user without deleting the topic of the user? Can I tho topics of the user1 to hand over to an other user?

thanks

twisters

2 Jul 18, 2006 16:14

You can change the author of posts, but you'll have to do it witha mysql query. Do you have access to phpmyadmin to control your mysql database? If so, then give me the user id of the author you want to delete and the id of the author you want to assign the posts to and the version of b2evolution that you're using, and I'll give you the query to paste into phpmyadmin.

3 Jul 18, 2006 17:36

old user: ID 6

new user: ID 7

thaks twisters

4 Jul 18, 2006 17:41

Try this code in phpmyadmin:

UPDATE `evo_posts` SET `post_author` = '7' WHERE `post_author` =6;


Form is loading...