Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Find/Replace in phpMyAdmin?
I am wondering if there is a way I can do a mass find/replace in my Vanilla db. Basically, I have a bunch of discussions called one name, and I want to change them all to another. Is there a way to do this without going into every topic (150 +/-) and editing the name?
0
This discussion has been closed.
Comments
UPDATE table SET field="New name" WHERE field="Old name"
(Always remember to make backups of important things before running queries!)
UPDATE LUM_Discussion SET Name=REPLACE(Name, 'Old name', 'New name') WHERE field LIKE 'Old name'
Not tested however, be safe.