Please help me with this error on the errorlog

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
3/10/2011 11:27:31 AM
Gravatar
Total Posts 76

Please help me with this error on the SystemLog

Hello folks,

Can someone please guide me on this error..

2011-03-10 22:53:37,511 ERROR mojoPortal.Web.Global - 117.193.19.59-en-US - /1new-page.aspx
System.MissingMethodException: Method not found: 'Void mojoPortal.Web.SiteUtils.SetupEditor(mojoPortal.Web.Editor.EditorControl, Boolean, System.String)'.
   at Gloriatech35.Web.UI.NewContactFormModule.OnInit(EventArgs e)
   at System.Web.UI.Control.InitRecursive(Control namingContainer)
   at System.Web.UI.Control.AddedControl(Control control, Int32 index)
   at System.Web.UI.ControlCollection.Add(Control child)
   at mojoPortal.Web.UI.CmsPage.LoadPage()
   at mojoPortal.Web.UI.CmsPage.Page_Load(Object sender, EventArgs e)
   at System.Web.UI.Control.OnLoad(EventArgs e)
   at mojoPortal.Web.mojoBasePage.OnLoad(EventArgs e)
   at System.Web.UI.Control.LoadRecursive()
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

 

Just added a usercontrol and it throws me this one and I'm not able to figure it out yet....

Would appreciate any help..

Thank you so much.

 

3/10/2011 12:13:17 PM
Gravatar
Total Posts 18439

Re: Please help me with this error on the errorlog

Based on your other post, it sounds like you cloned the contact form but you are coding against a different version of mojoPortal on your dev machine than what you have deployed on your server.

In the latest version of the contact form we use this overload of the SetupEditor method. You should update your clone to also use it:

SiteUtils.SetupEditor(edMessage, WebConfigSettings.UseSkinCssInEditor, ContactFormConfiguration.OverrideEditorProvider, true, false, Page);

and if you are developing from source code and especially if working from the repository and using the latest code you should consider learning how to deploy the whole thing including the build of mojo code and your custom features.

Hope it helps,

Joe

3/10/2011 12:18:55 PM
Gravatar
Total Posts 76

Re: Please help me with this error on the errorlog

Thank you Joe. Your answers take me a giant leap ahead!

Thanks so much!

You must sign in to post in the forums. This thread is closed to new posts.