Hi guys,

We installed SSL on our website and updated our website from http to https. The YouTube videos then stopped showing and we found out that it's because the YouTube video links on the website start with http. So we tried to replace the http with https on one of the pages and the videos started showing on that one page. We then tried to apply it to the database to make changes to all inks on the website with this code:

BEGIN TRANSACTION;
UPDATE Product
SET FullDescription = REPLACE(FullDescription,'http://www.youtube.','https://www.youtube.')


Can you please advise if this is the correct code to use and if its the right way to go about this because when we executed it the website stopped working? Please help.

Regards