
Originally Posted by
explorer1979
Hi All,
404 Not Found
The server can not find the requested page:
Please forward this error screen to
www.somesite.com's WebMaster
When I press the "Run Notifications" button in back end, above error show up.
My Server haven't using any SSL Cert ... and it is cPanel ...
Do this module can change the PHP from https to http and working with this? If yes, which PHP files need to change?
Thank you.
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
Bookmarks