PDA

View Full Version : How can I delete All signatures ?


haXan
02-13-2010, 01:37 PM
Hi

I converted my MYBB forum to Vbulletin 4.0.1. Everthing is ok. But I want to delete all members of signatures..

Because the old forum links are deactive. :(
MyBB SEO systems and vBulletin SEO systems are different. So I need to delete all signatures.

Can you explain how can I do on phpmyadmin ?

borbole
02-13-2010, 03:15 PM
Hi

I converted my MYBB forum to Vbulletin 4.0.1. Everthing ok. But I want to delete all members signatures..

Because old forum links are deactive. :(
MyBB SEO systems and vBulletin SEO systems are different. So I need delete all signatures.

Can you explain how can I do on phpmyadmin ?

First make a backup of your db, then run the following query:

UPDATE post SET showsignature = 0;

If you tables have a prefix, you must add it as well in the query, before the table name.

Note that this will delete all the signatures for all the members and not for particular members.

And welcome to Vb btw :)

haXan
02-14-2010, 06:28 PM
Thanks guy...

borbole
02-14-2010, 06:56 PM
You are welcome.