Please refer to my post in the Edit Orders support-thread regarding a possible solution.
Printable View
Please refer to my post in the Edit Orders support-thread regarding a possible solution.
Thanks, lat9. I get it.
Now, another question. I had set enable whole site SSL. if I turn the ultimate urls on, all on page links were set as http://. Is there any way to fix it?
Looking (albeit quickly) at the USU handling, I can't explain your results. Try enabling the plugin's debug mode to see what it is generating for those links.
Umm, how was the whole site enabled to be SSL? If not by modifying the includes/configure.php file to have all urls goto https: then that could be part of the problem...
There's the mistake, do not modify includes\functions\html_output.php
Return that the way is was and only modify the two configure files
original code
log contentCode:<a href="<?php echo zen_href_link(FILENAME_PRODUCTS_ALL); ?>"><?php echo TOP_MENU_ALL_PRODUCTS;?></a>
Where is ultimate_urls collects the link parameters?Code:Request sent to href_link('products_all', '', 'NONSSL', true, false, true, true)
Generated URL: http://www.zencart.ca/products_all.html
modify the two configure files couldn't enable the whole site SSL
I found the solution. put the added code on top
Now, the log contentCode:function zen_href_link($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = true, $static = false, $use_dir_ws_catalog = true) {
global $request_type, $session_started, $http_domain, $https_domain, $zco_notifier;
if(ENABLE_SSL_CATALOG){$connection = 'SSL';}
Code:Request sent to href_link('products_all', '', 'SSL', true, false, true, true)
Generated URL: https://www.zencart.ca/products_all.html
If you change HTTP_SERVER define to start with https: like:
Then the entire site should be offered as https considering your other changes in includes/configure.php.Code:define('HTTP_SERVER', 'https://yoursite.com');