View Single Post
Old March 11th, 2005, 11:17 AM   #2 (permalink)
Chuck S
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,752
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/')
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline