I downloaded V2 RC3
This is a very neat program. However, I'm having the hardest time getting the image browser to look in a specific directory.
For now, all I want is the image browser to look in:
<root>/images
not UserFiles/Image, not <root>/Image, not <root>/images/Image
God damn, I cannot get this thing to work.
I've looked all over this forum and the solutions that other people employed do not work for me. And I definately cannot change my site structure to satify this program.
I've being trying to get this part to work for the past 6 hours.
However, ultimately what I actually want to do is to make the browser look in a specific image directory, not necessarily relative to the wwwroot folder. Depending on the page, I might want the image browser to look in:
/home/site1/wwwroot/html/images
or
/home/site2/wwwroot/html/images/foo
etc
but since I can't even get the first requirement to work I doubt I'll be able to get this part to work.
I'll try anything at this point.
This is a very neat program. However, I'm having the hardest time getting the image browser to look in a specific directory.
For now, all I want is the image browser to look in:
<root>/images
not UserFiles/Image, not <root>/Image, not <root>/images/Image
God damn, I cannot get this thing to work.
I've looked all over this forum and the solutions that other people employed do not work for me. And I definately cannot change my site structure to satify this program.
I've being trying to get this part to work for the past 6 hours.
However, ultimately what I actually want to do is to make the browser look in a specific image directory, not necessarily relative to the wwwroot folder. Depending on the page, I might want the image browser to look in:
/home/site1/wwwroot/html/images
or
/home/site2/wwwroot/html/images/foo
etc
but since I can't even get the first requirement to work I doubt I'll be able to get this part to work.
I'll try anything at this point.

RE: Image Browser Directory
RE: Image Browser Directory
http://sourceforge.net/forum/message.php?msg_id=2848657
RE: Image Browser Directory
RE: Image Browser Directory
RE: Image Browser Directory
http://phiyan.hollosite.com/
RE: Image Browser Directory
The integration is quite clunky if your trying to put it into your cms, its not adaptable to your directory structure. I hate that i have to put path names in a javascript file and i can't use my server side variables for paths etc.
It would be nice if you could specify a folder for different file types rather than it creating its own one.
RE: Image Browser Directory
http://www.kolorkin.com.ar/extranet2/contenido-a1.php
http://www.kolorkin.com.ar/extranet2/FCKeditor/
RE: Image Browser Directory
Using the "mcpuk" browser i have the problem that after creating a new folder when i try to upload a new image there i get an error "Unable to determine the size of a folder."
Anyone can help me?
RE: Image Browser Directory
I am using FCKeditor for ASP.NET and I was having problems changing the Resources Browser window path. It was always creating/going to an "Image" folder under whatever I had specified as my FCKeditor:UserFilesPath.
Well good news, I have found a solution! If you want to browse the <root>/images/ folder in the Resources Browser and Image Upload windows, here's what you do:
1) In web.config, ensure you have the FCKeditor:UserFilesPath key set. i.e.
<appSettings>
<add key="FCKeditor:UserFilesPath" value="/VirtualDirectoryName/images/" />
</appSettings>
2) In FCKeditor\editor\browser\default\frmresourcetype.html, change "['Image','Image']," to "['../images','Image']," under the aTypes array (link 34 for me)
3) In FCKeditor\fckconfig.js, change the FCKConfig.ImageBrowserURL AND FCKConfig.ImageUploadURL values - "?Type=Image" to "?Type=../images" (Lines 145 & 160 for me)
** Note. The Image Upload window will automatically upload to the /images/ folder. If you want to specify a different folder to upload your pictures to, set the desired path in session in the code-behind. For example, in mypage.aspx.vb, write Session("FCKeditor:UserFilesPath") = "/VirtualDirectoryName/images/somefolder/" in Page_Load.
Cheers!
RE: Image Browser Directory
http://sourceforge.net/tracker/index.ph ... tid=543655