Few bugs

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.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
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.
This thread is closed to new posts. You must sign in to post in the forums.
6/16/2012 12:58:50 PM
Gravatar
Total Posts 18439

Re: Few bugs

If you're not an ASP.NET developer, you should probably just wait for the next packaged release, which will probably ship by the end of this month. If its very urgent let me know and I can probably package a build of the latest code for you.

Best,

Joe

6/16/2012 9:11:29 PM
Gravatar
Total Posts 38

Re: Few bugs

No, I develop in Asp.net....okay so I published to local directory and updated the files as I see them changed...now new problem..the home page blogs are gone(not appearing) and when I click Edit this Page, it redirects to /Setup/Default.aspx and it says

 

Probing system...
File system permissions ok.
MSSQL database connection ok.
database permissions are sufficient to alter schema.
database initial schema already exists.
database core schema needs upgrade. <<< whats this mean
1 site(s) found.

6/16/2012 9:49:41 PM
Gravatar
Total Posts 38

Re: Few bugs

Okay I got everything working good after updating Blog folder but the bug still there. It still let you make the postback even if you write wrong url. It should never process the postback if there is an error showing. thats another main reason of using the Validator.

6/17/2012 8:12:37 AM
Gravatar
Total Posts 18439

Re: Few bugs

Hi,

You are right, it was preventing posting the comment on postback, but it should not postback. This is now fixed in the source code repository and on the demo site. You can easily fix it in your copy by editing /Blog/Controls/BlogViewControl.ascx

Find this:

<portal:mojoButton id="btnPostComment" Runat="server" Text="Submit"  />

and change it like this:

<portal:mojoButton id="btnPostComment" Runat="server" Text="Submit" ValidationGroup="blogcomments" />

Best,

Joe

6/17/2012 8:22:40 AM
Gravatar
Total Posts 38

Re: Few bugs

Thanks, will do.

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