Currently our site is running under UMBRACO 4.5, but now we would like to upgrade UMBRACO from 4.5 to 6.0.2. So we would like to get optimal steps to update it.
I did this from 4.7 > 6.0.2 yesterday. I installed each major version from Codeplex following the instructions for each. Took about 2 hours and was relatively painless.
For what it's worth I upgraded from 4.7.0 straight to 6.0.2. The only issues so far have been expected ones due to changes in Umbraco (using templates to call usercontrols comes to mind, I've just refactored them into base methods).
Remove the second <%@ Master Language="C#"....> declaration (the one wrapped between the <asp:Content></asp:Content> and then also remove the last </asp:Content>
Updating UMBRACO from version 4.5 to 6.0.2
Hi,
Currently our site is running under UMBRACO 4.5, but now we would like to upgrade UMBRACO from 4.5 to 6.0.2. So we would like to get optimal steps to update it.
Any suggestions are welcome.
Regards,
Harshil Shukla
Hey,
Suggested upgrade paths and Umbraco versions here http://code.leekelleher.com/umbraco/archive/
Rich
Hi Rich,
Thanks a lot for your suggestion.
I will try the given solution in the link.
Thanks & Regards,
Harshil Shukla
I did this from 4.7 > 6.0.2 yesterday. I installed each major version from Codeplex following the instructions for each. Took about 2 hours and was relatively painless.
Hi Dan,
Thanks a lot for kind suggestion.
But can you elaborate your steps to upgrade it from 4.7 to 6.0 please?
I hope you might have followed below scenario:
v4.7.0 » v4.7.2 » v4.8.1 » v4.9.0 » v4.10.1 » v4.11.4 » v6.0.0 (apply the Path Fixup patch) » v6.0.2
Please confirm it.
Thanks & Regards,
Harshil Shukla
For what it's worth I upgraded from 4.7.0 straight to 6.0.2. The only issues so far have been expected ones due to changes in Umbraco (using templates to call usercontrols comes to mind, I've just refactored them into base methods).
I did do a full backup beforehand just in case.
Hi Harshil
If you go about taking the full path you should apply the path fixup script after the 4.11.4 upgrade - So it should be run BEFORE upgrading to 6.0.
You can also read the official recommended upgrade apprach here http://our.umbraco.org/documentation/Installation/Upgrading/
/Jan
Hi,
I migrate the Umbraco 4.7.1.1 to 4.7.2.
If I see All my template pages, All pages creating duplicate Master content tags(2 tages like see below example).
Example:
<%@ Master Language="C#" MasterPageFile="~/umbraco/masterpages/default.master" AutoEventWireup="true" %>
<asp:Content ContentPlaceHolderID="ContentPlaceHolderDefault" runat="server">
<%@ Master Language="C#" MasterPageFile="~/umbraco/masterpages/default.master" AutoEventWireup="true" %>
<asp:Content ContentPlaceHolderID="ContentPlaceHolderDefault" runat="server">
</asp:Content>
</asp:Content>
How to solve this problem.
/Mohan
Hi Mohankumar_S
You can simply just remove the doubles.
Remove the second <%@ Master Language="C#"....> declaration (the one wrapped between the <asp:Content></asp:Content> and then also remove the last </asp:Content>
That should fix it.
/Jan
is working on a reply...