Hi, I get this instead "@* Sample home layout template. Your home layout does NOT have to inherit from _uBlogsyBaseSite. *@ @inherits UmbracoTemplatePage @{ Layout = "_uBlogsyBaseSite.cshtml"; } @section uBlogsyHead { } @section uBlogsyMain {
@Umbraco.Field("uBlogsyContentTitle")
@Umbraco.Field("uBlogsyContentBody")@* list posts for home - this only works if the home page is a parent, or sibling of uBlogsyLanding *@ @Html.CachedPartial("uBlogsy/Widgets/uBlogsyWidgetListPostsForHome", Model, 0, false, true, new ViewDataDictionary(ViewData) { { "ItemLimit", 5 } })
}"
I see others have had similar issues, but I'm not working through visual studio etc, purely on the GUI, so I'm not sure if my problem is the same. I'm using the MVC version of Umbraco 6.
Damn. Still doesn't work. Swapped in all the new DLL's as per Anthony's note.(below) Still doesn't work. I'll rip everything out, try again.
"IMPORTANT : After installation, download the uBlogsy3.0_RC_Patch.zip (http://our.umbraco.org/FileDownload?id=6173) patch and replace the DLLs in your bin.
Note: You must set your RenderMode to Mvc in /config/umbracoSettings.config before you install this package. There is a bug in Umbraco 6.0 which means MVC packages do not import correctly."
I think I might have gotten that error when I didn't switch the umbracosettings.config to Mvc ahead of time. Even after making the switch in the umbracosettings file, I had to uninstall and reinstall the package to get it to work.
I believe the patch was for the RC version only. I don't think those dlls should be needed with the latest 3.0 version available. I would recommend uninstalling uBlogsy and reinstalling with the latest 3.0 download from here http://our.umbraco.org/projects/starter-kits/ublogsy
uBlogsy does nothing on fresh Umbraco 6 install
Hi, I get this instead "@* Sample home layout template. Your home layout does NOT have to inherit from _uBlogsyBaseSite. *@ @inherits UmbracoTemplatePage @{ Layout = "_uBlogsyBaseSite.cshtml"; } @section uBlogsyHead { } @section uBlogsyMain {
@Umbraco.Field("uBlogsyContentTitle")
@Umbraco.Field("uBlogsyContentBody")@* list posts for home - this only works if the home page is a parent, or sibling of uBlogsyLanding *@ @Html.CachedPartial("uBlogsy/Widgets/uBlogsyWidgetListPostsForHome", Model, 0, false, true, new ViewDataDictionary(ViewData) { { "ItemLimit", 5 } })}"
I see others have had similar issues, but I'm not working through visual studio etc, purely on the GUI, so I'm not sure if my problem is the same. I'm using the MVC version of Umbraco 6.
Is there a fix?
Did you switch your umbraco.config setting to MVC?
Rich
Thanks Rich, but yes,
<defaultRenderingEngine>Mvc</defaultRenderingEngine>
That's correct, yes?
Looks correct, I installed on v6 with no problems, did you install the version specifically for v6?
Version 3? Yes.
Ah,. but I see there is a note regarding an MVC bug, and a patch that needs to be applied...
Damn. Still doesn't work. Swapped in all the new DLL's as per Anthony's note.(below) Still doesn't work. I'll rip everything out, try again.
"IMPORTANT : After installation, download the uBlogsy3.0_RC_Patch.zip (http://our.umbraco.org/FileDownload?id=6173) patch and replace the DLLs in your bin.
Note: You must set your RenderMode to Mvc in /config/umbracoSettings.config before you install this package. There is a bug in Umbraco 6.0 which means MVC packages do not import correctly."
I think I might have gotten that error when I didn't switch the umbracosettings.config to Mvc ahead of time. Even after making the switch in the umbracosettings file, I had to uninstall and reinstall the package to get it to work.
I believe the patch was for the RC version only. I don't think those dlls should be needed with the latest 3.0 version available. I would recommend uninstalling uBlogsy and reinstalling with the latest 3.0 download from here http://our.umbraco.org/projects/starter-kits/ublogsy
Okay, got it fixed. As suggested, the Umbraco install needs to be set to Mvc *before* you install the uBlogsy package.
Yes, you must be in mvc mode before installing the package.
is working on a reply...