Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: RadEditor - can not upload images

  1. #1
    toofast is offline Senior Member
    Join Date
    Dec 2005
    Location
    Cherry Hill, NJ, USA
    Posts
    239

    Default RadEditor - can not upload images

    In RadEditor when i cannot upload an image. When i hover over the "Upload Image" icon, I get a stop sign and can not click on it. Is there a setting I need to change in order to upload images?


  2. #2
    AspDotNetStorefront Staff - Scott's Avatar
    AspDotNetStorefront Staff - Scott is offline Administrator
    Join Date
    Mar 2007
    Location
    Ashland, OR
    Posts
    2,390

    Default

    Looks like your /RadControls/Editor/ConfigFile.xml file is missing the image property values. Open that file up and make sure the image areas look something like this:

    Code:
    	<property name="ImagesPaths">		
    		<item>~/images</item>
    	</property>
    	<property name="UploadImagesPaths">
    		<item>~/images</item>
    	</property>
    	<property name="DeleteImagesPaths">
    		<item>~/images</item>
    	</property>
    	<property name="ImagesFilters">
    		<item>*.gif</item>
    		<item>*.jpg</item>
    		<item>*.jpeg</item>
    		<item>*.png</item>
    		<item>*.bmp</item>
    	</property>

  3. #3
    toofast is offline Senior Member
    Join Date
    Dec 2005
    Location
    Cherry Hill, NJ, USA
    Posts
    239

    Default

    that worked, thanks.