How to change upload folder position?

Last post 01-19-2006, 7:10 AM by Adam. 1 replies.
Sort Posts: Previous Next
  •  01-19-2006, 4:18 AM 14869

    How to change upload folder position?

    I have some question.
     
    first, I want to how to change upload folder positon in using image, flash and media files from upload to other foldfer.
    And I want hide left folder tree and right some of folder icon in click insert image icon.
    You inform me if it's possible.
     
    secondly, I want edit to dropdown list box in bottom of tool menu.
    For example, I wnat to add font  dropdwon list box, css class and edit to current item.
     
    Thankyou for reading my question and I look forward to answer as soon as possible.
  •  01-19-2006, 7:10 AM 14879 in reply to 14869

    Re: How to change upload folder position?

    Please check the following articles:

    Setting up the Image gallery path
     
    http://cutesoft.net/developer+guide/Specifying-images-path.htm

    Setting up the Flash gallery path

    http://cutesoft.net/developer+guide/Setting-up-the-flash-gallery-path.htm

    Setting up the Media gallery path

    http://cutesoft.net/developer+guide/Setting-up-the-media-gallery-path.htm

    Setting up the Document gallery path

    http://cutesoft.net/developer+guide/Setting-up-the-flash-gallery-path.htm


    Hope it helps.

    Let me know if you have any further questions.

    Below is the information of Setting up the Image gallery path:

    How to specify the Image gallery path?

    You can easily specify the image gallery path using the following methods:

    1: Edit security policy file.


    The security policy file (default.config, admin.config and guest.config) can be found in the /CuteEditor/Configuration/Security folder. In security policy file you can find the ImageGalleryPath element which contains the image gallery path information within Cute Editor.  By default, it contains the following value:


    <securityname="ImageGalleryPath">~/uploads</security>
      

    You can modify the ImageGalleryPath element to meet your own requirements.

    For example:

    Use absolute path:

    <securityname="ImageGalleryPath">/uploads</security>

     

    Use physical path:

     

    <securityname="ImageGalleryPath">c:\inetpub\wwwroot\uploads</security>

     

    2: Programmatically specify the Image gallery path


    C# Example:

    //use the app-based path 
    
    Editor1.Setting["security:ImageGalleryPath"]= "~/uploads";
    //use the absolute path 
    Editor1.Setting["security:ImageGalleryPath"]= "/uploads";
    //use the physical path 
    Editor1.Setting["security:ImageGalleryPath"]= @"c:\inetpub\wwwroot\uploads"; 
    


    VB Example:

    //use the app-based path 
    
    Editor1.Setting("security:ImageGalleryPath")= "~/uploads"
    //use the absolute path 
    Editor1.Setting("security:ImageGalleryPath")= "/uploads"
    //use the physical path 
    Editor1.Setting("security:ImageGalleryPath")= "c:\inetpub\wwwroot\uploads" 

     


    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

View as RSS news feed in XML