Error when installaing ajax uploader!

Last post 12-02-2008, 11:59 AM by cassini. 8 replies.
Sort Posts: Previous Next
  •  11-27-2008, 3:26 AM 46330

    Error when installaing ajax uploader!

    Hi, I got the following error when I try to install your trial version, I did all the deployment steps that mentioned in your deployment document, I have .NET framework version 2, please help.
     

    Server Error in '/test' Application.

    Parser Error

    Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

    Parser Error Message: Unknown server tag 'CuteWebUI:Uploader'.

    Source Error:

    Line 50:         A basic sample demonstrating the use of the Upload control.</p>
                Line 51:
                Line 52:     <CuteWebUI:Uploader runat="server" ID="Uploader1" InsertText="Upload File (Max 10M)">
                Line 53:         <ValidateOption MaxSizeKB="10240" />
                Line 54:     </CuteWebUI:Uploader>

    Source File: /test/simple-upload.aspx    Line: 52


    Version Information: Microsoft .NET Framework Version:2.0.50727.3053; ASP.NET Version:2.0.50727.3053
  •  11-27-2008, 6:14 AM 46334 in reply to 46330

    Re: Error when installaing ajax uploader!

    Hi cassini,
     
    do you miss the:
     
    <pages>
       <controls>
        <add namespace="CuteWebUI" assembly="CuteWebUI.AjaxUploader" tagPrefix="CuteWebUI"/>
    </controls>
    </pages>
     
    or
     
    <%@ Register Namespace="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" TagPrefix="CuteWebUI" %>
     
    Regards,
     
    ken
  •  11-28-2008, 5:19 AM 46382 in reply to 46334

    Re: Error when installaing ajax uploader!

    Hi, that solved the problem but now when I press on "Upload File(Max 10M)" button  in simple-Upload.aspx page I got the popup message says:"UploadModule is not installed into web.config!"
    What did I miss?
     
  •  11-28-2008, 1:12 PM 46405 in reply to 46382

    Re: Error when installaing ajax uploader!

  •  12-01-2008, 10:34 AM 46458 in reply to 46405

    Re: Error when installaing ajax uploader!

    No I did not miss this step, I already did it.
    Any other suggestion?
  •  12-01-2008, 3:16 PM 46463 in reply to 46458

    Re: Error when installaing ajax uploader!

    You need to modify your web.config file to add AjaxUploader httpModule to web.config's httpModules list. Otherwise you will get this error.
     
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  12-02-2008, 3:53 AM 46471 in reply to 46463

    Re: Error when installaing ajax uploader!

    I did that, below is my web.config:

     

    <?xml version="1.0"?>

    <configuration>

     

    <system.web>

    <authentication mode="Forms" />

    <compilation debug="true" strict="false" explicit="true" >

    <assemblies>

    <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />

    <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />

    <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />

    <add assembly="System.Data.Entity, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>

    <add assembly="System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />

    </assemblies>

    </compilation>

    <pages>

    <namespaces>

    <clear />

    <add namespace="System" />

    <add namespace="System.Collections" />

    <add namespace="System.Collections.Specialized" />

    <add namespace="System.Configuration" />

    <add namespace="System.Text" />

    <add namespace="System.Text.RegularExpressions" />

    <add namespace="System.Web" />

    <add namespace="System.Web.Caching" />

    <add namespace="System.Web.SessionState" />

    <add namespace="System.Web.Security" />

    <add namespace="System.Web.Profile" />

    <add namespace="System.Web.UI" />

    <add namespace="System.Web.UI.WebControls" />

    <add namespace="System.Web.UI.WebControls.WebParts" />

    <add namespace="System.Web.UI.HtmlControls" />

    </namespaces>

    <controls>

    <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />

    <add namespace="AjaxControlToolkit" assembly="AjaxControlToolkit" tagPrefix="ajaxToolkit"/>

    </controls>

    </pages>

    <httpHandlers>

    <add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />

    <remove verb="*" path="*.asmx" />

    <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />

    <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />

    <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />

    </httpHandlers>

    <httpModules>

    <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />

    <add name="wwScriptCompressionModule" type="ExtExtenders.Helpers.wwScriptCompressionModule,ExtExtenders"/>

    <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>

    </httpModules>

    <!--

     

    The <authentication> section enables configuration

    of the security authentication mode used by

    ASP.NET to identify an incoming user.

    -->

    <!--

     

    The <customErrors> section enables configuration

    of what to do if/when an unhandled error occurs

    during the execution of a request. Specifically,

    it enables developers to configure html error pages

    to be displayed in place of a error stack trace.

    <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">

    <error statusCode="403" redirect="NoAccess.htm" />

    <error statusCode="404" redirect="FileNotFound.htm" />

    </customErrors>

    -->

    </system.web>

    <system.webServer>

    <validation validateIntegratedModeConfiguration="false" />

    <modules>

    <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />

    <add name="wwScriptCompressionModule" type="ExtExtenders.Helpers.wwScriptCompressionModule,ExtExtenders"/>

    </modules>

    <handlers>

    <remove name="WebServiceHandlerFactory-Integrated" />

    <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />

    <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />

    <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />

    </handlers>

    </system.webServer>

    </configuration>

  •  12-02-2008, 10:37 AM 46479 in reply to 46471

    Re: Error when installaing ajax uploader!

    Hi cassini,
     
    Do you Use the integration mode of your application pool? If so, please move the
     
    <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
     
    to
     
    <system.webServer>
          <modules>
        </modules>
    </system.webServer>
     
    If you still have this issue, please create an example can reproduce this iuuse and send it to me.
     
     
     
    Regards,
     
    Ken
  •  12-02-2008, 11:59 AM 46483 in reply to 46479

    Re: Error when installaing ajax uploader!

    That solved the problem perfectly... thanks
View as RSS news feed in XML