Quote Originally Posted by explorer1979 View Post
Hi all,

I final fix this
/admin/back_in_stock.php
On Line 169
From
PHP Code:
<form name="back_in_stock" action="<?php echo HTTPS_CATALOG_SERVER DIR_WS_HTTPS_CATALOG "cron/send_back_in_stock_notifications.php"?>" target="_blank" method="get">
Change To

PHP Code:
<form name="back_in_stock" action="<?php echo HTTP_CATALOG_SERVER DIR_WS_HTTPS_CATALOG "cron/send_back_in_stock_notifications.php"?>" target="_blank" method="get">

/includes/functions/extra_functions/back_in_stock.php
On Line 95
From
PHP Code:
$html_message['SPAM_LINK'] = HTTPS_SERVER DIR_WS_HTTPS_CATALOG 'index.php?main_page=back_in_stock&bis_id=' $bis_id
Change To

PHP Code:
$html_message['SPAM_LINK'] = HTTP_SERVER DIR_WS_HTTPS_CATALOG 'index.php?main_page=back_in_stock&bis_id=' $bis_id

Hope this help for all other like me not using SSL

Best Regards,
Jimmy Chan
No, anytime you want to change from SSL to NON-SSL, you need to change *both* HTTPS_CATALOG_SERVER and DIR_WS_HTTPS_CATALOG

So your changes should ALSO include changing DIR_WS_HTTPS_CATALOG to DIR_WS_CATALOG.


Or, even better, use zen_href_link() to create the URLs instead of hard-coding them.