View Single Post
  #2  
Old 11-28-2007, 04:00 AM
 
balinor balinor is offline
 

Veteran
  
Join Date: Oct 2003
Location: Connecticut, USA
Posts: 30,253
 

Default Re: No subcategory images after move from root directory

Did you change your images location in the 'Images Location' area of the admin? You'll also need to run an SQL query to change the path in the database, like these:

update xcart_images
set image_path = replace(image_path,'old','new')

update xcart_icons
set image_path = replace(image_path,'old','new')

update xcart_thumbnails
set image_path = replace(image_path,'old','new')
__________________
Padraic Ryan
Ryan Design Studio
Professional E-Commerce Development
Reply With Quote