/cake/config/paths.php
/** * Path to the public images directory. */ define('IMAGES', WWW_ROOT.'images'.DS);
/** * Web path to the public images directory. */ if (!defined('IMAGES_URL')) { define('IMAGES_URL', 'images/'); }
How do I override the above constants that are set in /cake/config/paths.php ? Would I set them in /app/config/bootstrap.php ? If so, what is the correct syntax?
Thanks