Clicking "Blog Posts" and some other links results in this:
Cannot find ContentPlaceHolder 'cp_head' in the master page '/masterpages/umbMaster.master', verify content control's ContentPlaceHolderID attribute in the content page.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.HttpException: Cannot find ContentPlaceHolder 'cp_head' in the master page '/masterpages/umbMaster.master', verify content control's ContentPlaceHolderID attribute in the content page.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Any ideas? just trying out Umbraco for a project so really son;t want to spend days trawling for solutions. The template i chose was "business starter" and the u.media template. You can visist the area at www.mobicon.com.au or www2.mobicon.com.au (reinstall didn;t fix it)
Brand new install, business templates failure.
Clicking "Blog Posts" and some other links results in this:
Cannot find ContentPlaceHolder 'cp_head' in the master page '/masterpages/umbMaster.master', verify content control's ContentPlaceHolderID attribute in the content page.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Web.HttpException: Cannot find ContentPlaceHolder 'cp_head' in the master page '/masterpages/umbMaster.master', verify content control's ContentPlaceHolderID attribute in the content page.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
Any ideas? just trying out Umbraco for a project so really son;t want to spend days trawling for solutions. The template i chose was "business starter" and the u.media template. You can visist the area at www.mobicon.com.au or www2.mobicon.com.au (reinstall didn;t fix it)
Hi Bruce,
If you look into the source for master page [Starterkit Master] in the Templates section, and find the below:
<asp:contentplaceholder id="cp_top" runat="server">
</asp:contentplaceholder>,
I guess this has changed and now is to be replaced by the below:
<asp:contentplaceholder id="cp_head" runat="server">
</asp:contentplaceholder>,
but to be on the safer side, just ADD the above "cp_head" script it below the "cp_top" one.
Hope this helps!
Cheers,
Kaush.
is working on a reply...