Ændre stien til billeder (global)
I found answer. New OpenCart Versions Image Structure:
catalog/model/tool/image.php
 Replace this: return $this->config->get('config_ssl') . 'image/' . $new_image;
 To This: return 'https://cdn1.yoursite.com/' . $new_image;
AND
Replace this: return $this->config->get('config_url') . 'image/' . $new_image;
 To This: return 'http://cdn1.yoursite.com/' . $new_image;