Zend CDN integration

Before you start

  • Before you take any steps please back up your files and database.
  • In the following, we will integrate a CDN service using the CDN domain 12345.r.cdnsun.net. Please visit the Services/How-To section to obtain your CDN domain.
  • To integate a CDN service on https:// website you can use https://12345.r.cdnsun.net or you can use a custom CDN domain with SSL enabled.
  • If your website embeds custom fonts then please first enable CORS for them.
  • Before you take any steps please make sure that your CDN domain is ready-to-use here.

Create CDN Static service

Please refer to Creating a CDN Static service for more details.

Enable CDN in Zend

Define CDN in Bootstrap

Add the following init function to the Zend's application/Bootstrap.php file.

protected function _initCdn() 
{ 
    Zend_Registry::set('cdn_enabled', true);
    Zend_Registry::set('cdn_domain', '12345.r.cdnsun.net');
    Zend_Registry::set('cdn_protocol', 'http');
}

Create CDN helper

class Zend_View_Helper_Cdn extends Zend_View_Helper_Abstract
{           
public function cdn($url = null)
{
    $url = (string) $url;
    if(empty($url))
    {
        throw new Exception('URL missing');
    }
    
    $pattern = '|^http[s]{0,1}://|i';        
    if(preg_match($pattern, $url))
    {
        throw new Exception('Invalid URL. ' .
            'Use: /image.jpeg instead of full URI: ' .
            'http://domain.com/image.jpeg.'
        );
    }

    $pattern = '|^/|';        
    if(!preg_match($pattern, $url))
    {
        $url = '/' . $url;
    }

    if(!Zend_Registry::get('cdn_enabled'))
    {
        return $url;
    }    
    else
    {
        $uri = Zend_Registry::get('cdn_protocol') . '://' . Zend_Registry::get('cdn_domain') . $url;

        return $uri;
    }    
}    
}

Use the CDN helper in views

<? echo $this->cdn('/image.jpeg'); ?>

will output

http://12345.r.cdnsun.net/image.jpeg    

Notes

  • View HTML source code of your web pages to verify that you are using CDN, you should see source attribute of your images, CSS, JavaScript, etc. beginning with your CDN domain.
  • Don't see your CDN domain in source code of your web pages? If your website is using any cache plug-in/mechanism then you might want to clear/flush its cache.
  • Having troubles with custom fonts? Please refer to Using custom fonts with CDN - setting CORS for more details.
  • Still having troubles? Check your CDN URLs in our CDN content check or please refer to Debugging a CDN service for more hints.

Contact Us

 ______     _____    _    _   
|      \\  |  ___|| | |  | || 
|  --  //  | ||__   | |/\| || 
|  --  \\  | ||__   |  /\  || 
|______//  |_____|| |_// \_|| 
`------`   `-----`  `-`   `-`