Recent Topics

1 Oct 06, 2009 20:13    

My b2evolution Version: 2.x

i want to change author of posts within a blog, but can't figure it out. does anyone know?

2 Oct 06, 2009 23:56

By editing the right bits in the database is the only way to change the ID of the author. I believe it would be in evo_items__item.

4 Oct 07, 2009 18:11

Ask Toppie for a copy of our plugin ;)

¥

5 Oct 07, 2009 20:06

EdB wrote:

By editing the right bits in the database is the only way to change the ID of the author.

Yabba made me a private plugin for that. (he does that a lot, making private plugins)
You can have that plugin, but be warned : it is karmaware.
we want you to donate 1$ or 1€ or 1£ to a good cause.

6 Oct 07, 2009 23:11

Run this query in phpMyAdmin

UPDATE evo_items__item SET `post_creator_user_ID` = 55 WHERE `post_ID` = 99;

Or from conf/hacks.php

$DB->query('UPDATE T_items__item SET `post_creator_user_ID` = 55 WHERE `post_ID` = 99;');

7 Oct 07, 2009 23:18

BTW shouldn't there be an option to do this from backoffice? This would be a nice feature, I think.

8 Oct 07, 2009 23:45

For those who need it, yeah this would be great in the back office. But most don't so maybe it should be a plugin. Oh wait! It already is!

9 Oct 08, 2009 07:33

It already is a plugin, yes ;)


Form is loading...