Quote:
Originally Posted by mcyates
I just need to add the phrases now as its saying there are duplicates but i'm missing some?
Is there any SQL query i can run which will drop the phrase if it exists and adds them all. The database is fine now, its just the phrases. After the prases are added I can do the file changes.
Thanks in advance, fantastic support.
|
Try running the following query in your system:
PHP Code:
select * from phrase where varname>='warning' and varname<'we'
This will show you the phrases which start with 'warning'. All of these are connected to the warning system, so if you do not see anyone that is not related to a warning, then you may execute the following query to remove whichever is left:
PHP Code:
delete from phrase where where varname>='warning' and varname<'we'
Please make sure that there are no other phrases in the list produced by the first query, except those related to a warning, if there are, then do not run the second one, or else you will delete them.
Rgds