I’ve been trying to use EE’s Search and Replace utility to replace a complete phrase in the Channel Entry Titles (in about 70 entries, before I go live with a site). It works okay when I search and replace a custom field, but Channel Entry Titles aren’t working. I don’t get an error, but I get zero records returned/replaced.
I’m even trying to do the change via PHPMyAdmin using a query and it’s not working. I’m doing variants on a pretty basic MySQL find and replace:
UPDATE `exp_channel_titles` SET title = REPLACE (title,"Phrase to Find","Phrase I Want to Replace It With")But I get zero rows returned.
Finding those entries works okay:
SELECT `entry_id`,`title` FROM `exp_channel_titles` WHERE `title` = "Phrase to find"
This doesn’t seem to make sense, am I just missing something special and have to change the title in a particular way that’s different?
Help is greatly appreciated 😊