YEEP !!! That was the issue...
Because I have https enabled on my site the install code has only (http) all through the install xml file ..
This is what I changed for it to work, I replaced all the http references to https ....
Code:
from
$domain = htmlspecialchars_uni($_SERVER['HTTP_HOST']);
to
$domain = htmlspecialchars_uni($_SERVER['HTTPS_HOST']);
from
if (href.indexOf("http://")!=-1)
to
if (href.indexOf("https://")!=-1)
from
//return (href.indexOf("http://")!=-1 && href.indexOf(hostname)==-1) ? false : true;
to
//return (href.indexOf("https://")!=-1 && href.indexOf(hostname)==-1) ? false : true;