
Originally Posted by
sgallasch
Hi dbltoe, to answer your question yes of course the cross http links on the product pages stay on site and suggest other products that might be of interest to the customer. I know if i simply change the link in the product page to https the link shows up and works fine. I have all http to https 301 direct in HTACCESS as well. But unfortunately the SSL does not treat these links the same as i think they are seen as html code in the product page. I have literally thousands of product pages so doing the change manually sort of sucks big time. Thanks for your interest.
We, dbltoe and I, were asking about where the links resided as well as to where they pointed so that we could possibly provide a quick solution. I doubt that dbltoe was encouraging modifying each "individually" but instead possibly via a sql statement or some other "quick" method (though I didn't follow the compressed url nor have another tool look it up to validate that the destination was safe or known). Maintaining "old" links *on* your site *to* your site that have to be redirected does not really help your site. These links should be updated so that they are current.
To replace them with https: (similar process could be used for other changes, but might as well start here) you could copy the below into tools->install sql patches (though with ZC 1.3.9 may have to add your database table prefix defined as DB_PREFIX in your includes/configure.php file in front of the first products_description) and execute/submit it.
Code:
UPDATE products_description
SET products_description = REPLACE(products_description, 'http://domain1.com', 'https://domain1.com')
WHERE products_description LIKE ('%http://domain1.com%');
As to the fix that was applied, mind sharing what was provided? It could serve to be very helpful to another having the same issue particularly with the same host.
Bookmarks