RSS Feed Link is not working in subsite

If you have questions about using mojoPortal, you can post them here.

You may want to first review our site administration documentation to see if your question is answered there.

This thread is closed to new posts. You must sign in to post in the forums.
5/16/2011 7:44:36 AM
Gravatar
Total Posts 2

RSS Feed Link is not working in subsite

I am using version  2.3.5.8 of mojoportal.Blog link of RSS feed is working fine of main site but in sub site it is generating error

".Invalid URI: The format of the URI could not be determined."

5/17/2011 6:30:26 AM
Gravatar
Total Posts 18439

Re: RSS Feed Link is not working in subsite

I'm pretty sure this has been reported before and is fixed in the latest version of mojoPortal.

Best,

Joe

5/20/2011 1:41:33 AM
Gravatar
Total Posts 2

Re: RSS Feed Link is not working in subsite

Thanks for replay.!

After visiting the Setup page now I have status

Database Platform MSSQL
Version 2.3.6.5
Status Your installation is up to date.

 

But  now showing  error to open home page

Server Error in '/' Application.
--------------------------------------------------------------------------------

Object cannot be cast from DBNull to other types.
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.InvalidCastException: Object cannot be cast from DBNull to other types.

5/20/2011 6:55:16 AM
Gravatar
Total Posts 18439

Re: RSS Feed Link is not working in subsite

I helped someone else just the other day who was getting this error after upgrading from 2.3.5.8 to 2.3.6.5.

It is something strange because the upgrade scripts have sql statements to make sure the new fields are not null, but for some reason it seems like it did not run those parts of the upgrade scripts. I fixed it for him by running the same update statements manually from sql management query tool. If you run this it should solve the problem.

UPDATE mp_Modules
SET HeadElement = 'h2'

GO

UPDATE mp_Pages
SET ExpandOnSiteMap = 1

GO

UPDATE mp_Modules
SET IsGlobal = 0

GO

UPDATE mp_Pages
SET IncludeInChildSiteMap = IncludeInSiteMap

GO

UPDATE mp_Pages
SET PubTeamId = '00000000-0000-0000-0000-000000000000'

GO
 

Hope that helps,

Joe

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