SlickUpload
Welcome Guest Search | Active Topics | Log In | Register

: Unrecognized configuration section slickUpload. Options
marcalew
#1 Posted : Tuesday, March 30, 2010 12:18:09 PM
Rank: Newbie

Groups: Registered

Joined: 3/30/2010
Posts: 2

I have addeded the slickupload to be web.config but keeps getting the following error:

 

<configuration>
Line 11: 
Line 12:     <slickUpload>
Line 13:         <uploadStreamProvider location="~/Files" existingAction="Overwrite" />
Line 14:     </slickUpload>

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: Unrecognized configuration section slickUpload.

Source Error:


Any help would be great! :)

Axosoft
#2 Posted : Tuesday, March 30, 2010 12:31:04 PM
Rank: Administration


Groups: Administrators

Joined: 7/7/2005
Posts: 1,586
Location: Scottsdale, AZ

Have you added the SlickUpload section definitions inside the <configSections> tag at the top of your web.config? You should have something like this:

<configuration>
  <configSections>
    <!-- ...
Other config sections here
... -->
    <sectionGroup name="slickUpload" type="Krystalware.SlickUpload.Configuration.NameValueConfigurationSectionHandler, Krystalware.SlickUpload">
      <section name="uploadParser" type="Krystalware.SlickUpload.Configuration.NameValueConfigurationSectionHandler, Krystalware.SlickUpload"/>
      <section name="uploadStreamProvider" type="Krystalware.SlickUpload.Configuration.NameValueConfigurationSectionHandler, Krystalware.SlickUpload"/>
      <section name="statusManager" type="Krystalware.SlickUpload.Configuration.StatusManagerConfigurationSectionHandler, Krystalware.SlickUpload"/>
    </sectionGroup>
  </configSections>

 

Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.