no icons, and hourglass in CE 4.0.0.5

Last post 03-07-2005, 5:05 AM by Zapotec. 4 replies.
Sort Posts: Previous Next
  •  03-04-2005, 11:32 AM 4392

    no icons, and hourglass in CE 4.0.0.5

    I've just encountered this problem:
    The only button displayed, are my own custom button.
    I've seen other threads about this, but no resolution other than upgrading.
    I've replaced the DLL and all Client files.
     
    Regards,
    Zapotec
  •  03-04-2005, 11:45 AM 4393 in reply to 4392

    Re: no icons, and hourglass in CE 4.0.0.5

    I have narrowed it down to be a security related problem.
    The CuteSoft_Client files are placed inside "/admin/CuteSoft_Client/" folder.
    Inside "/admin" I have a web.config file with:

    <

    configuration>

    <system.web>

    <authorization>

    <denyusers="?"/>
    </authorization>
    </system.web>

    <

    locationpath="CuteSoft_Client"allowOverride="false">

    <system.web>

    <authorization>

    <allowusers="?"/>

    </authorization>

    </system.web>
    </location>
    </
    configuration>
     
    When I moved the CuteSoft_Client files to my application Root, everything was OK.
    I'll look closer at my security settings.
     
    Regards, Zapotec
  •  03-04-2005, 11:55 AM 4394 in reply to 4392

    Re: no icons, and hourglass in CE 4.0.0.5

    I changed:
    <locationpath="CuteSoft_Client"allowOverride="false">
    to
    <locationpath="CuteSoft_Client/"allowOverride="false">
     and everything seem to work again!
     
    Problem solved. 
     
    Regards, Zapotec
  •  03-06-2005, 7:22 PM 4415 in reply to 4392

    Re: no icons, and hourglass in CE 4.0.0.5

    If you are installing CuteSoft in GAC, you have to modify the /Cutesoft_Client/CuteEditor/web.config to:
     <configuration>
     <system.web>
      <authorization>
       <allow users="*" />
      </authorization>
      <httpHandlers>
       <add path="*.jpeg" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,cuteeditor, Version=4.0.0.5, Culture=neutral, PublicKeyToken=3858aa6802b1223a, Custom=null" />
       <add path="*.jpg" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,cuteeditor, Version=4.0.0.5, Culture=neutral, PublicKeyToken=3858aa6802b1223a, Custom=null" />
       <add path="*.gif" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,cuteeditor, Version=4.0.0.5, Culture=neutral, PublicKeyToken=3858aa6802b1223a, Custom=null" />
       <add path="*.png" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,cuteeditor, Version=4.0.0.5, Culture=neutral, PublicKeyToken=3858aa6802b1223a, Custom=null" />
       <add path="*.jpeg.aspx" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,cuteeditor, Version=4.0.0.5, Culture=neutral, PublicKeyToken=3858aa6802b1223a, Custom=null" />
       <add path="*.jpg.aspx" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,cuteeditor, Version=4.0.0.5, Culture=neutral, PublicKeyToken=3858aa6802b1223a, Custom=null" />
       <add path="*.gif.aspx" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,cuteeditor, Version=4.0.0.5, Culture=neutral, PublicKeyToken=3858aa6802b1223a, Custom=null" />
       <add path="*.png.aspx" verb="GET" type="CuteEditor.Impl.EditorImageFileHandler,cuteeditor, Version=4.0.0.5, Culture=neutral, PublicKeyToken=3858aa6802b1223a, Custom=null" />
      </httpHandlers>
     </system.web>
    </configuration>

    Regards, Zapotec
  •  03-07-2005, 5:05 AM 4420 in reply to 4392

    Re: no icons, and hourglass in CE 4.0.0.5 - GAC issue

    Also change the /CuteSoft_Clien/CuteEditor/Dialogs/web.config to:
     

    <?

    xml version="1.0"encoding="utf-8"?>

    <

    configuration>

     

    <system.web>

     

    <compilation defaultLanguage="c#">

     

    <assemblies>

     

    <add assembly="CuteEditor, Version=4.0.0.5, Culture=neutral, PublicKeyToken=3858aa6802b1223a, Custom=null"/>

     

    </assemblies>

     

    </compilation>

     

    <pages autoEventWireup='false'/>

     

    </system.web>

    </configuration>

View as RSS news feed in XML