This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.
When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:
I don't know what I did wrong. Sometimes it's just easier to Nuke and Pave. I downloaded fresh copies of mp and ecp, copied the Data folder over and it just started working. Thanks for making it easy to fix. I rarely have to admin the backend of mojoPortal and each time I get myself in a pickle, I can always get back to where I need to be.
Cool, glad to hear it is working!
Best,
Joe
I was going to buy you a beer, but decided to buy the form wizard instead. Thanks!
Thanks! I really appreciate it!
I'm now getting a similar error
Could not load file or assembly 'AjaxControlToolkit, Version=3.5.40412.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
I downloaded the recent copy of mojoportal source code. I then open the mssqlonly.sln, build it, and then debug it. That's when I get the error. Please help, I have a demo on Friday and would really like to utilize MojoPortal for this project.
The solution is for .NET 4 but you are running it in 3.5, if you need to use 3.5 then use mojoportal.msssqlonly.net35.sln and see this doc, otherwise change your IIS app pool to a .NET 4 app pool
http://www.mojoportal.com/the-net-4-transition-plan-for-mojoportal.aspx
Thanks Steve for the timely response. I read through the article that you linked and am now utilizing the 3.5 web config. I am, however, experiencing this error on the update panels.
Error 23 The type or namespace name 'UpdatePanel' does not exist in the namespace 'Microsoft.Web.Preview.UI.Controls' (are you missing an assembly reference?) C:\Projects\MojoPortal\mojoportal\mojoPortal.Features.UI\Blog\EditPost.aspx.designer.cs 184 61 mojoPortal.Features.UI.net35
The designer.cs files are referencing Microsoft.Web.Preview.UI.Controls.UpdatePanel.
How do I go about changing these references?
I think this is a bug from recent windows updates to ASP.NET.
Probably you can solve it by commenting out this in Web.config
<add tagPrefix="asp" namespace="Microsoft.Web.Preview.UI" assembly="Microsoft.Web.Preview"/> <add tagPrefix="asp" namespace="Microsoft.Web.Preview.UI.Controls" assembly="Microsoft.Web.Preview"/>
but this "may" cause problems if you are using the MyPage feature.
Maybe Joe can suggest a better solution or verify if this is ok.