Error with Contact Us and adding links feature

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.
7/14/2008 3:41:44 AM
Gravatar
Total Posts 1

Error with Contact Us and adding links feature

Hi all

I'm a simple non techie user and I'm coming across a regular problem that I hope you can help with. I first got this error:

Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: Could not load type 'SubSonic.SQLiteDataProvider' from assembly 'SubSonic'.

Source Error:


Line 900: />
Line 901:
Line 902: <add name="subsonicSQLite" type="SubSonic.SQLiteDataProvider, SubSonic"
Line 903: connectionStringName="Subsonic-SQLite"
Line 904: generatedNamespace="mojoPortal.Data.Common"

Source File: H:\hshome\sarahj237\theherbstrust.com\web.config Line: 902

When I submit a completed Contact Us page using the mojo contact us feature, but I am also getting this problem when I add new features to the right or left of one of my pages. For instance, I added a links feature the the All About Herbs page on my site and this error came up when I viewed the page, whether I set the feature to the left or right.

Advice and help much appreciated.

Sarah

7/14/2008 5:49:20 AM
Gravatar
Total Posts 18439

Re: Error with Contact Us and adding links feature

Hi Sarah,

Do you know what database you are using? If you're not using SQLite (and if you don't know what it is you probably aren't using it), then you can try commenting out that part of Web.config. Its near the bottom of the Web.config file, it looks like this:

<add name="subsonicSQLite" type="SubSonic.SQLiteMonoDataProvider, SubSonic"
connectionStringName="Subsonic-SQLite"
generatedNamespace="mojoPortal.Data.Common"
stripTableText="mp_,ws_"
removeUnderscores="true"
useSPs="false"
/>

You can comment it out by wrapping it with <!--  --> like this:

<!--
<add name="subsonicSQLite" type="SubSonic.SQLiteMonoDataProvider, SubSonic"
connectionStringName="Subsonic-SQLite"
generatedNamespace="mojoPortal.Data.Common"
stripTableText="mp_,ws_"
removeUnderscores="true"
useSPs="false"
/>
-->

Hope it helps,

Joe

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