|
Nope there is no such thing I know of.
Basically the file structure has changed like this
/data/500/somepic-med.jpg
/data/500/medium/somepic.jpg
There is no easy way to do this
I know of a mass body replacement in mysql where you could replace -med with nothing so it would get the picture format right but since the categories are all different you would need to also issue the same mass replacement for each cat to change say
/data/500/ to /data/500/medium/
PLEASE NOTE YOU DO THIS AT YOUR OWN RISK AS THIS IS POWERFUL QUERY
EXAMPLES BELOW make sure to add your table prefix but here is an example of both query types
UPDATE post SET pagetext = REPLACE(pagetext, '-med','')
UPDATE post SET pagetext = REPLACE(pagetext, '/data/500/','/data/500/medium/')
|