View Single Post
  #23  
Old 11-05-2010, 06:37 AM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default Re: MaxCDN Content Delivery Solution?

Try:

// WCM - CDN Images
if (($type == 'T' OR $type == 'P') AND $_SERVER['HTTPS'] != 'on')
{
$image_path = str_replace('/home/path/to/your/images/','',$image_path);
return str_replace('$http_location','',$image_path);
}
// / WCM - CDN Images
Reply With Quote