Thanks Dr. Byte.
And I thought I had it all figured out till I found you can't redefine a constant in PHP .. which technically makes sense.. but I was trying to do:
configure.php:
define('DIR_WS_IMAGES', 'https://www.fonzanoon.com/raretv/images/');
tpl_header.php:
if ($request_type == 'SSL'){
define('DIR_WS_IMAGES', 'https://www.fonzanoon.com/raretv/images/');
}
So I suppose I could use a variable for the image location all the same.. but I dont know that i can leave a variable without $DIR_WS_IMAGES.. which defeats the purpose since I'd have to change all references to DIR_WS_IMAGES




