View Single Post
  #40  
Old 06-23-2011, 09:14 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?

It's a bit different on 4.4 but the principle is the same, just the exact code is a bit different. Probably this would work:

FIND:

Code:
$smarty->assign('ImagesDir', $xcart_web_dir . $smarty_skin_dir . '/images'); $smarty->assign('SkinDir', $xcart_web_dir . $smarty_skin_dir);

REPLACE WITH:

Code:
// WCM - MaxCDN Implementation if ($_SERVER['HTTPS'] != 'on') { $smarty->assign('ImagesDir', 'http://CdnUrl.example.com//images'); $smarty->assign('SkinDir', 'http://CdnUrl.example.com/'); } else { $smarty->assign('ImagesDir', $xcart_web_dir . $smarty_skin_dir . '/images'); $smarty->assign('SkinDir', $xcart_web_dir . $smarty_skin_dir); } // WCM - MaxCDN Implementation
Reply With Quote