This is easy only if you know exactly what table your old data is contained in... As in you could throw a mysql statement at your table like this. Note, this will replace everything in your joomla content table that contains one string with another string.
BACKUP YOUR DB before you do anything like this... I'm sure you know that but some people don't take that into consideration. Also, this is assuming you are using (jos_) as a table prefix for your joomla installation.
PHP Code:
UPDATE jos_content SET introtext = REPLACE(introtext, 'oldcompany', 'newcompany'), fulltext = REPLACE(fulltext, 'oldcompany', 'newcompany');
I think that should cover everything in your content, if not then look for component tables in your database and use the same mysql replace syntax to switch out your words.
Also, there is a sitename variable in your configuration file set to display the name of your website. I assume this is not pertinent, but just had to check.
|