Hi
Thank you very much for writting such an awsome plugin. It has made my life a lot easier.
But I think I found a bug, I am running the plugin on a wpmu install, which is setup in such a way that the wp admin interface is always on https. However this results in the ajax not working because it js thinks that http and https are two different sites.
I looked into it and my proposed fix is doing something like this
if($_SERVER['HTTPS'] == 'on')
{
if( substr($cformsSettings['global']['cforms_root'], 0,5) != "https")
{
$cformsSettings['global']['cforms_root'] = substr_replace($cformsSettings['global']['cforms_root'], 'https', 0, 4);
}
}
everytime you get the setting.
Does anyone have any suggestion? Thank you agian.