Page Not Found Erro On 2.2.8.0 MSSQL

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.
12/18/2008 4:53:41 PM
Gravatar
Total Posts 18439

Re: Page Not Found Erro On 2.2.8.0 MSSQL

I'll try tomorrow to see if I can produce this problem with a clean install. I'll post again after that.

Best,

Joe

12/18/2008 5:16:10 PM
Gravatar
Total Posts 9

Re: Page Not Found Erro On 2.2.8.0 MSSQL

Thank you for all of your help Joe. If there is anything I can do to help or provide more info, just say so.

 

Best,
Ranko

12/19/2008 6:22:38 AM
Gravatar
Total Posts 18439

Re: Page Not Found Erro On 2.2.8.0 MSSQL

Hi Ranko,

I was able to produce the problem, it is a bug in the ms sql data layer for the blog. I'm surprised no-one else has reported this.

Its a simple fix, the problem was we added 2 new input params to the procedure, and it changed the index of the output parameter which has the new id of the blog post, but I failed to change the code that retrieves it in DBBlog.cs AddBlog(...):

int newID = Convert.ToInt32(sph.Parameters[15].Value);

needed to change to:

int newID = Convert.ToInt32(sph.Parameters[17].Value);

because of the 2 new params

I really appreciate you pointing this problem out, this site is using MySql so it was not affected.

I will try to package a new release wih the fix this weekend and will have it fixed in svn trunk shortly.

Best,

Joe

12/19/2008 7:48:31 AM
Gravatar
Total Posts 9

Re: Page Not Found Erro On 2.2.8.0 MSSQL

Great!

Again, thanks for all the help.

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