Ok, we have been working a lot on speeding up our website and have moved to a Content Delivery Network. We currently have our js and css taken care of but are running into a brick wall in coding for the images. We are using image handler 4 for our images. Now, since we are using a cdn, our urls need to change from:
http://ledchristmaslighting.com/bmz_cache/etc....
to
http://cdn.ledchristmaslighting.com/bmz_cache/etc.
Now, we know that this code right here is what we need to change, but are not sure how to change it in php and we are asking for some help here.
public_html/includes/classes/bmz_image_handler.class.php
Line #208 : ((strpos($this->src, substr($bmzConf['cachedir'], strlen($ihConf['dir']['docroot']))) === 0))) &&
Can anyone help us out here a bit on the coding? I know this part needs to be adjusted and modified to point to our .cdn subdomain:
((strpos($this->src, substr


Reply With Quote

