my catalog/admin page is secure but every page underneath it isn't. In other words when I click on the configuration link, it takes me to an http:// page instead of an https:// page. I can add the s afterwords, but how do I have it go to the https page in the first place?
I thought the links were hard coded but when I look at the index.php page it shows this:
'children' => array(array('title' => BOX_CONFIGURATION_MYSTORE, 'link' => tep_href_link(FILENAME_CONFIGURATION, 'selected_box=configuration&gID=1')),
now I found a reference to tep_href_link in the catalog/admin/include/functions/html_output.php file that says:
function tep_href_link($page = '', $parameters = '', $connection = 'NONSSL') { if ($page == '') {
die('</td></tr></table></td></tr></table><br><br><font color="#ff0000"><b>Error!</b></font><br><br><b>Unable to determine the page link!<br><br>Function used:<br><br>tep_href_link(\'' . $page . '\', \'' . $parameters . '\', \'' . $connection . '\')</b>');
}
if ($connection == 'NONSSL') {
$link = HTTP_SERVER . DIR_WS_ADMIN;
} elseif ($connection == 'SSL') {
if (ENABLE_SSL == 'true') {
$link = HTTPS_SERVER . DIR_WS_ADMIN;
} else {
$link = HTTP_SERVER . DIR_WS_ADMIN;
}
This to seems to mean to me that I need to enable ssl somewhere but where?
Steve Cohen




LinkBack URL
About LinkBacks






Bookmarks