Quote:
Originally Posted by Kirk Fitzgerald
I just added a new product and used an external image link, then I ran the sync external images, at the end of sync I see this text:
|
I think I see what's happening here...
Your test forum is hosted on a windows server which has backwards urls (productphotos\ instead of productphotos/)...
It's strange that nothing errors in creating the images but perhaps windows is smarter in processing than it is in rendering...
To this this run the mySQL query:
Code:
update pf_product set mainphoto = replace(mainphoto, '/', '\\');
update pf_product set mainphoto_thumb = replace(mainphoto_thumb, '/', '\\');
update pf_product set mainphoto_small = replace(mainphoto_small, '/', '\\');
Then check that C:\xampp\htdocs\vb4dev\productphotos\5001fd68874b3 .jpg [png|gif] opens properly.
Note: This will update all images, including those with external links.