ASF File Explorer released
144 comments Posted by: Laura
This is a project that started small and became a complete application. After much work on it, we are finally ready to release it.
ASF File Explorer is a file manager to browse, add, and remove directories and files from a specific server location.
Main features
- Browse directory trees in an intuitive tree interface
- Create folders
- Rename folders
- Delete folders
- View all files in currently selected directory with file type icons, size and last modified information
- Delete files
- Upload files to currently selected directory
- Limit file extensions from configuration file
- Upload file with progress bar to indicate bytes uploaded
- Upload multiple files at once
- Download and save a file
- Rename files
- Browse an FTP server
- Can be extended to use other component that implements the same file/directory functions (getDirectories, getFiles, renameFolder, etc)
It was built using CFForms and Flash remoting. My favourite feature is the multiple file upload, for which we have made an update to the file upload swf . The next step is to upgrade our flashupload custom tag to allow for multiple files.
We do not have a live demo running, but you can see a movie that shows most of the features. You can download it, see more screenshots and view more information in the project page:
Notes:
FTP is not very reliable and it has not been tested much. I got it to work on my server but not in my local CF installation and I didn’t have the time to look into it much.
We hope you find a use for it, and that you like it so much that you’ll be inspired to get us something from our Amazon wish list ;)
Category: CFForm | ColdFusion | Flash Remoting |
144 Comments so far
Write yourshttp://floe.unic8.com/demo/
user: demo
pass: floe2K5
it´s beta but will be released soon.
greets
Thank you for making this`-`
I have been hoping for something like this.
I love it, but I was not able to get it to work on the mac:(
I will be trying more, I keep getting errors(could not find componet/or code base). I am very new to coldfusion,and I would like to say that the work you have done with flashforms is inspiring`-`
How do I get you something on your wishlist?
Thanks again for sharing your wonderful project
John
I just have to ask Chris about his FLOE app
if that is a FLEX 2 app or is it made in cfform and if it is cfform how did you do the fade out effect when you load alerts?
Any plans to make any of the available features permissions dependant?
John,
We have a link to our Amazon wish list in the post. Thank you! :)
Neil,
I didn't have any plans on implementing that although it would be a good feature. I don't think I'll do it because every developer has a different way of managing permissions. It should be easy to customize to your particular set of roles, users, etc.
6dust,
That is a problem resolved in this hotfix (and subsequent cumulative hotfix) http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=f97044e. But you don't need to install it because I just updated the source to avoid the problem. Please download it again.
I did not test it on a mac, but it should work. Where did you place the files? It should work as is if you put a folder called fileexplorer in your web root. If you don't have that configuration, then you will need to change the settings in the fileexplorer.ini file (managerComponent and servicesPath settings), there are comments there that might help you figuring what to write. I could help you a little more if you tell me where your files are located.
I send you 2 e-mails, thank you so much for all your help`-`
I got everything working now, just needed to add the folder,"fileexplorwer",and make the changes in the fileexplorer.ini file.
I didn't see the link to amazon yesteday, I was looking on the side, but enjoy`-`
Thanks again for making this application, truely wonderful`-`
John
I have also a mac and it works well but the default ini won't work.
For the components path, the easiest way to know the right path is to create an empty file in the same folder, open your component window in dreamweaver and drag the manager component and the service component.
Then you just need to copy-paste the path that's directly inserted in the invoke component tag.
For the root Directory, you need to adjust from the root of your hard drive and use / instead of the :
To get the root Directory of your application, use Dreamweaver "Manage Site", click "Edit" and go to Part 3 "Where on your computer do you want to store your files?"
Use this path and change the : to / and remove the Macintosh HD at the beginning.
For example, mine is like this:
Macintosh HD:opt:ColdFusionMX7:wwwroot:myapp
The fileexplorer root directory would be:
/opt/ColdFusionMX7/wwwroot/myapp/
Hope this helps!
Vincent
I have a login script that checks against our LDAP directory then creates a session (outside of your Application.cfc) with the username (also the same name for the directory I wish to point them to).
The rootDirectory and final directory is set in your Application.cfc under OnSessionStart. I can't seem to pass in an already created session to an OnSessionStart area.
Any suggestion? I'm willing to share my LDAP login script if I can get it working.
No, that is not possible :(
David,
You bring up an important issue. I think the way I wrote the onsessionStart function will not really work so easily for those under a password protected area.
The problem is that onSessionStart runs as soon as the user hits the page for the first time (or the first time he/she hits the page after their session has expired). Because when that happens they are not yet logged in, you must do all the authentication, login forms, etc, until they are authorized. It is then when you want to set the root directory they will use (only if it changes for each user). That means you want to transfer this code:
<cfset session.fileManager = createObject("component",GetProfileString(variables.config, "default", managerComponent")).init(someDirectoryForThisUser,GetProfileString(variables.config, "default", "allowedExtensions")) />
to where you determine that they are logged in. If that is not in Application.cfc, then you can not use variables.config, but you can manually enter those settings, or do some other workaround.
That makes good sense. I suspect most people wanting to use your cool little app will need to impliment it into a password protected area.
I've moved that code to the login area and attempted to hardwire in the necessary variables since I cannot use variables.config:
rootDir
manageraComponent
allowedExtensions
The code looks like this:
<cfscript>
managerComponent="fileexplorer.com.blueinstant.FileManager";
allowedExtensions = "*";
</cfscript>
<!--- will eventually come from session --->
<cfset rootDir = "E:\Home\Staff\david.brannan\" />
<!--- create the object for this session --->
<cfset session.fileManager=createObject("component",managerComponent).init(rootDir,allowedExtensions)/>
But the app errors when looking for all the request.fileManagerProps
Sigh.... so close.
The name is not a valid component name.
Component names cannot start or end with dots.
The error occurred in C:\Websites\sohocentriccom\html\fileexplorer\Application.cfc: line 65
63 :
64 : <!--- create the object for this session --->
65 : <cfset session.fileManager = createObject("component",GetProfileString(variables.config, "default", "managerComponent")).init(rootDir,GetProfileString(variables.config, "default", "allowedExtensions")) />
Is it possible to run this App unter https Protocol?
You are not using Application.cfc, right? if that is correct, you will need to reproduce what is there in your own application. You are missing: <cfset request.fileManagerProps = application.fileManager /> but since you are not using Application.cfc, you are probably also missing application.fileManager set up in the method onApplicationStart()
thinman,
Your error indicates that you have something like ".somePackage.someComponent" in your ini file. Make sure this setting does not have a dot in the beginning:
managerComponent=fileexplorer.com.blueinstant.FileManager
Kirk,
This application is very flexible regarding the directory structure you use. But you need to be able to browse it :)
By web root I mean your web-accessible public folder. You don't have to put in the "root", but it has to be somewhere below your web root (or virtual directory). It does not require any mapping, although you can use mappings for the manager component setting and move what is in the folder com/blueinstant/ somewhere else, changing the settings in the ini file accordingly.
Anastasios,
The application should work fine. However, there is a bug in the Flash Player that makes file upload fail under https. I don't know if the bug has been fixed in the newest player.
Im found on this Page the newest Flash Players for Windows an Mac.
Flash Player 8.5 (Alpha 3)
http://www.macromedia.com/cfusion/entitlement/index.cfm?e=labs#flashplayer8_5
With this Players the upload works also with https secure socket layer protocol.
Test on following Systems working fine:
Windows XP German SP2 - IE 6.0.2900,
Windows XP German SP2 - Firefox 1.04,
Windows XP German SP2 - Opera 8.0 Buil 7561,
Windows 2003 Servers German SP1 - IE 6.0.2900,
Mac OS X 10.4 - Safari
Mac OS X 10.4 - Camino - 2005110708 (1.0b1)
Mac OS X 10.4 - Firefox - 1.5
The Player from the official Macromedia Player Download Site dont work! (Version 8.0)
Greetings and thanks
Anastasios
Great app!!
I uploaded a large file (108MB) to see how long it would take and if things would timeout etc.
It uploaded fine, but when I try and download it, instead of the download dialog box popping up like the other files (images, swfs etc.) I get directed to download.cfm which shows a "500 null" error.
Any ideas why? Is it becasue it's a large file?
Thanks
Could not find the ColdFusion Component fileexplorer.com.blueinstant.FileManager.
Please check that the given name is correct and that the component exists.
The error occurred in /var/www/html/elg/Application.cfc: line 34
32 : <!--- only create the object on the application if we are using application storage as opposed to session storage --->
33 : <cfif GetProfileString(variables.config, "default", "managerStorage") EQ "application">
34 : <cfset application.fileManager.manager = createObject("component",GetProfileString(variables.config, "default", "managerComponent")).init(GetProfileString(variables.config, "default", "rootDirectory"),GetProfileString(variables.config, "default", "allowedExtensions")) />
35 :
36 : <!--- ftp --->
I don't know whether or not your problem is due to the file being large. I've never seen that error. Did you try downloading other large file that was not uploaded with Flash? Although suppously you can upload files of any size, the player officially supports up to 100MB.
Jeremy,
I think you have a different folder configuration in your server and therefore need to change the ini file. Read the comments there. I don't know where your web root is, but if it is at html (and all else is as you opened it form the zip), then you'll write
servicesPath=elg.services
managerComponent=elg.com.blueinstant.FileManager
Hope that helps
i want to send you some info so that you may make a post on how to add flash menu items to a cfgrid. can you email me so that i may send you the info or can you post a new article on how one could do it.
thanks
Tim
tim.garver@nice.com
I installed the file explorer in 2 different places since I only wanted certain users to access certain directories.
However, I forgot to change the managerStorage to session instead of application.
Now I believe that since I ran the file explorer already, the rootDirectory is stored in memory. Therefore, I have to wait until CFMX 7 restarts on my web hosting server. Is there a way to kill this application object manually.
thanks.
roger
Here is my first an interesting issue that you may have a workaround to handle.
The issue that I have run across is this. When I wrap the contents of a <cfform format="flash"></cfform> inside of a <cfsavecontent variable="X"></cfsavecontent> tag, and then attempt to output my variable, either the object or the js code or both doesn't read correctly in the browser. However, the code does output correctly to the page source. Here are examples:
<!--- save cfform contents here --->
<cfsavecontent variable="X">
<cfform format="flash"> </cfform>
</cfsavecontent>
<!--- output variable contents here --->
<cfoutput>
#X#
</cfoutput>
This theoretically should output as though the code was any other html, js, or other code written by coldfusion server. However, the code produced simply sits in the source untouched and unread. It is truly bazaar.
So my question is are any of you aware of the issue and a workaround for it or can you point me in the direction of somone who maybe familiar with this problem? I have tried googling an answer to the problem but, I only get a bunch of tutorials on adding actionscript to cfforms using cfsavecontent.
If you dont know or know anyone who may know a workaround, I completely understand. thanks for any time you can put to this.
Take care,
Theoretically, you don't need to wait until the server restarts, only until the application times out, usually 2 days :)
But what I usually do when developing is to re-initialize the application by calling OnApplicationStart() in the onRequestStart method and then remove it when I am done. Or you could also change the name of the application (this.name). That will make OnApplicationStart run again since it would be a brand new application.
I've been hitting a problem a lot lately with my Flash forms, and noticed that it happens with this application too. If I attempt to resize my browser window (IE and FF) after the Flash form has loaded, the widths of the form groups go crazy and they all drop into a vertical line (it looks a lot like the infamous CSS float drop problem). Is there a known issue with this? Or is it maybe a bug w/ the Flash Player 8.5 beta?
Thanks!
You just need to put a width on your cfform. If you put a width on the file explorer, you can resize your browser and the panels will stay in place.
I've been hitting a problem a lot lately with my Flash forms, and noticed that it happens with this application too. If I attempt to resize my browser window (IE and FF) after the Flash form has loaded, the widths of the form groups go crazy and they all drop into a vertical line (it looks a lot like the infamous CSS float drop problem). Is there a known issue with this? Or is it maybe a bug w/ the Flash Player 8.5 beta?
Thanks!
Neil, so there is no way to have an auto-resizing 100% width? In my limited playing around with Flex, this seemed very doable...
Thanks,
6dust
Any plans for multiple file download (even if the files were just zipped)?
you need to specify the absolute path of the folder you want to explore. ie: C:\inetpub\wwwroot\cneworks\wwwroot\someDir\otherDir
the mentioned project "floe" was released today. i´ve already downloaded and installed it and it´s really cool.
Here´s the link... http://www.unic8.com
I'm trying the code on a Linux server running ColdFusion MX 7,0,1,116466
And guess what.. I'm get the following error:
Could not find the ColdFusion Component fileexplorer.com.blueinstant.FileManager.
I've made the needed changes in the fileexplorer.ini
Any tips?
Where do you have the com folder?
If you made the changes in the ini, did you somehow reset the application (restart the server, etc)?
re: com folder..
If you are talking about the "componentutils' folder it's in '/var/www/html/CFIDE' (there is a SymLink to it from the dir where I'm running the code from.
If it's not the 'com' folder you are talking about, than I do not have one! (as far as I can see)
re: restart the server, etc..
No I did not :/ I'll do the 'restart server' later today when I'm back home...
Thanks for the reply
Have I missed something for the installation?
I've found the 'com' folder.. It's in the applocation folder itself :)
I did read the info, and did change the rootDirectory in the fileexplorer.ini file to the place the index.cfm is located.
(/var/www/html/test/)
The 'com' folder is in /var/www/html/test/com
I'm still geting the same error 'Could not find the ColdFusion Component fileexplorer.com.blueinstant.FileManager.'
I'm sure that MX7+ is setup okay, as the 'File Upload with ColdFusion Flash Forms' and 'Showing an image after upload' applications are working fine from the same folder!
Could it be that I'm missing the 'Component fileexplorer.com', or do I need to move the 'com' folder to an other place?
Thanks again for any info about this...
Make sure you have the Application.cfc file in place.
Noel,
The settings assume you unzipped the file in a folder called fileexplorer in the root of your website. That is not your case, so...
Assuming the root of your website (where your public files are) is at /var/www/html, then you need to change this in the ini file:
servicesPath=test.services
managerComponent=test.com.blueinstant.FileManager
Hope that helps
Next, my quetion...
We typically don't put our CF sites under the InetPub\wwwroot folder. We use a folder at the same level as wwwroot. We do this to keep the CFIDE directory out of the Web Tree for security reason (we don't want people to be able to access those files via the Web).
It seems like CFFORM automagically includes calls to the CFIDE/Scripts folder for CFFORM js and cfm files in order to work properly.
I tried to just copy the CFIDE/Scripts folder, the scripts inside, and the css and xml folders into our webroot. That got me a bit further in loading the application (got past the JS errors).
However, when I try to browse the directories or files within a directory using the app, i just the get pink-ish error strip at the top of the page with no text explaining what the error is. When I click on items, the browser indicates it is trying to read from the site and the progress bar in the pink-ish error bar at the top of the screen loads and progresses to the end very quickly. However, nothing happens.
If I upload a file, it actually uploads the file to the correct directory, but I cannot create a new folder, browse the folder tree (if just displays "getting sub directories" and then doesn't do anything), or view the files in a folder.
I'm assuming that there is another piece of the CFIDE directory that is missing and causing this to fail. It seems like maybe CFDIRECTORY tag isn't happy for some reason. But CFDIRECTORY works just fine in other places on the same Web site.
Have you (or anyone else out there) ever tried to run this app outside of the main wwwroot directory? I know we've ran into issues with serving CF sites outside the wwwroot in the past, but can usually find a way around them...
Thanks for any info on this issue!!
I've now moved the FTP and FileManager.cfc files to the same place as the index.cfm (and changed the .ini file), and all is working fine now.. (it's only a test server).
Later today I'll move the files one by one (and set the path in the .ini), and see what's going wrong with the path in the .ini file.
Thank you for your help.
It looks like uploading is not the problem as when I download the uploaded image with a FTP program, all is fine.
Someone here who can also test this?
Thought I had everything configured but I missed something. Get a CFFORMITEM attribute validation error because the type is script. Specifically
<cfformitem type="script" is where the error is thrown. Help/Suggestions - new at this and it's late ;-].
Thanks
I don't see any problem with images. I would open the image in notepad to see if there is anything extra added.
Marilyn,
You need the CF Updater (CF 7.01)
I also have all my websites in a different directory.
I think you have a problem with the remoting set up. You can read how to set it up in this post (the past paragraph) http://www.asfusion.com/blog/entry/introduction-to-flash-remoting
Found the problem right after the post naturally. Pays to update on a regular basis. Downloaded the coldfusion updater. Goodnight.
Thank you
Felipe
Attribute validation error for tag CFFORMITEM.
The value of the attribute TYPE, which is currently "script", must be one of the values: HRULE,HTML,TEXT,VRULE,SPACER.
It looks like you don't have Coldfusion 7.01 installed.
The 'script' item isn't supported in CFMX 7.00.
Thanks,
Neil
has anyone been able to get it to work with an FTP site. Is there a way to get it to prompt for the user name and password. It seems even when i put the user name and pssword i get the following.
The parameter PASSWORD to function init is required but was not passed in.
best regards
felipe
Thanks for the link to your article...That was it exactly!! Things are up and running smoothly!
Thanks again for taking the time to create this tool, and for making it available!
If my client decides to use it, i will definitely be getting you something from your wish list with my first check from them!
Thanks again!
Kevin
Thank you!
John,
You can include movies by using cfformitem type="html" or cftextarea html="true". That is how we get the file upload libraries and how we show the loading animation.
Thomary,
Thank you! we added a certificate to the wish list!
TOM
Thanks
Ed
--Aaron
The onChange event won't work? You can see all of the events that the TextInput field throws here: http://livedocs.macromedia.com/flex/15/asdocs_en/index.html
Just scroll down on the bottom left panel, and click on the TextInput link. Then, on the right, scroll down and take a look at the events. It looks like the equiv to onBlur is focusOut....
Thanks for the response. I tried what you suggest, but the event does not fire. I assume this is because I am using coldfusion mx 7 with flash forms? Thanks for the help.
--Aaron
It should definitely be working - all we write here are flash forms w/ CF7. Did you install the updater? I know for a fact that that the onChange event fires for text inputs - I use it literally in almsot every single form we write.
The onFocus event, however, I can't remember using so I can't speak to how it works. Did you take a look at the link I included in my last post? That link will show you all of the events that are available to the text input form element - or any other flash form element.
What is it that your specifically trying to do? Maybe I can help you out.
Answer is:
You just need to put a width on your cfform. If you put a width on the file explorer, you can resize your browser and the panels will stay in place.
Posted By Neil / Posted At 2/18/06 5:44 AM
Thanks NEIL!
GREAT APP!
I have no problems with flash forms, I have been using the extensivly, with no problems. What I am doing is reading an XML Config file to dynamically generate the form fields. Then I need to read the values of the text fields in actionscript so I can pass them to the CFC to write a new XML file based upon user input. Since the config file is not static I need to be able to pass the field name to the Actionscript. Thanks again.
--Aaron
I have no problems with flash forms, I have been using the extensivly, with no problems. What I am doing is reading an XML Config file to dynamically generate the form fields. Then I need to read the values of the text fields in actionscript so I can pass them to the CFC to write a new XML file based upon user input. Since the config file is not static I need to be able to pass the field name to the Actionscript. Thanks again.
--Aaron
In order to fire the event on a text field when the form loads and then the value is entered into it by the programming, you need to have an event listener. Look in the site index of the AsFusion website for "knowing when the form data arrives" or something like that, and for a text input the event you want to trap is, I think, valueCommitted.
Hope this helps. Sorry if I'm not understanding.
nb
I got it to work. For some reason, probably coding error on my part, I couldnt get the onblur even to fire actionscript. It works now, so I am dynamically setting an actionscript array onblur. I will post a link to the source code when I get this fully functional. Thanks for the assistance.
--Aaron
Any help would be great..
TK
Should work on the mac, once I figured how how to configure it for the mac, works great!
What problem are you having? Check you .ini file,and make sure you have your path correct.
Maybe something like:
rootDirectory=/Library/Apache2/htdocs
and
treeRootLabel=/Library/Apache2/htdocs/fileexplorer/icons
If the main application loads sounds like you might have the path right. It works great on my powerbook. I have it working on Sfari, forefox, and camino.
Once the application loads open the main file to get the sub-directories, and click on the main folder to get the main wwwroot files. I made this mistake myself, but I am a real newbie.
If I can help in any way feel free to contact me.
John
TK
Has anyone run this over an SSL? I have it set up in several locations on the same server but tried over an SSL and it loads up ok but when I select the tree on the left it says "getting directories" and never actually loads them.
Any thoughts?
Kind Regards
Lachie
That is an odd issue. I use it on the localhost, sounds like yours is online. Maybe talk to hosting company.Ruunig Apache on windows should not be a problem. I am lost,and have no idea how to help,sorry:(
But I have a question.
Neil said: Although suppously you can upload files of any size, the player officially supports up to 100MB.
Is there a way to change it?
So I could upload/download files of 500Mb for example?
TIA!
When I attempt to expand the dir tree, I get the following error: "Service fileexplorer.services.fileExplorer not found."
I continue to get this error even though I update the .ini file to reflect the new path to the services dir. Works great when the fileexplorer dir runs form the web root. Can I not run this from a lower level directory?
Thanks.
But I would still like to know aboutbthe multiple dir ...?
Thanks.
When you make changes to the ini file, make sure you refresh the application by changing its name, restarting CF or running onApplicationStart().
I continue to get this error even though I update the .ini file, I have changed the application name to refresh the application. Any ideas?
;---- servicesPath -----
;the path from your web root to the services directory
servicesPath=services
servicesPath=fileexplorer.services.fileexplorer
servicesPath= fileexplorer.services
Anyone have any Ideas?
Someone prior asked about moving files between directories. I know it is not a feature now, but is it planned?
This would be vital to my users to easily move files between folders.
Is it possible to add drag and drop fucntionality to accomplish this?
Thanks.
The path depends on your web directory structure. It is still looking for the services at /fileexplorer/services in your web root. If that is not your path, then you need to change it in the ini and refresh the app as you describe.
TW,
Same thing, your app it is still looking at the old path. When you make changes to the ini file, make sure you refresh the application as I explained earlier (the settings are cached in the application scope so that they don't need to be read each time). I can't tell you what to write in the ini file because that depends on where you have the files with respect to your web root (/)
Larry,
Thank you.
Moving files was not in the TODO list. I just added it. Using drag and drop would be great, but no so easy to implement as we would need to handle errors, duplicates, etc. It can be done, of course, we just need ot make intuitive.
Base path does not exist
The error occurred in /home/httpd/html/nevadapower/fileexplorer/com/blueinstant/FileManager.cfc: line 38
36 : <!--- check that the base path exists --->
37 : <cfif NOT directoryexists(variables.basePath)>
38 : <cfthrow message="Base path does not exist"/>
39 : </cfif>
It means that the rootDirectory setting you wrote in the ini file does not exist. :)
Read the comments in the ini file for help on what to write there.
Regards
</cliff>
Thanks
1> When I try to rename a file I get the following error: "Attribute validation error for tag CFFILE."
2> When I try to rename a directory I get a message saying: "The specified Directory attribute C:\Data\Webs\Engineering\test cannot be renamed to NewDirectory C:\Data\Webs\Engineering\test2"
3> When I try to delete a directory I get the message: "The specified Directory attribute C:\Data\Webs\Engineering\test2 cannot be deleted"
My directory setup for FileExplorer is as follows: C:\Data\Webs\Engineering\filexplorer\ and as I mentioned everything else works great; upload, download, create folder.
Can you help please? Thanks
Okay - that's all - hope you can help. Thanks again.
Many people have experienced problems with large files. Nothing we can do since it is a player issue.
James,
Unless you want to modify the app, you don't need to know ActionScript or remoting. As far as documentation, there is a Readme file for install instructions, and the application.cfc and ini files have lots of comments explaining what to do. However, if you want to learn about remoting and flash forms, I would recommend looking at the posts in the Flash Remoting category. Not that you will find everything you'll ever need to know, but at least it will get you started. Otherwise, go to the source, Adobe's docs.
Regarding sending additional info, the answer is no. Only Flash player 9 adds that functionality.
Tim,
Have you checked permissions on those folders/files? I would manually run <cffile> on a regular cfm file with those folders and files as attributes and see if I can get more information about the error.
You were right - it was permissions. When I changed the folder permissions everything worked. Thanks again for a terrific product and great support!
Tim
I absolutely love this app! I am currently using this in a shared hosting environment and ran into an issue out of nowhere. I am now getting the following error when I try to expand the root directory:
Element FILEMANAGER is undefined in a Java object of type class [Ljava.lang.String; referenced asI haven't made any changes and don't have the ability to bounce the CF server. Any ideas?
roger
Did you make any change to the Application.cfc file? Are you using session storage? Try changing the name of the application and see if you still have the error.
Roger,
No, unfortunately ASF File explorer requires cfdirectory. You could, however, implement a manager that uses Java to get the directories, but I doubt your host will let you do that if they don't let you use cfdirectory.
<cfcontent type="#mimeType#"><cfoutput>#filecontent#</cfoutput>. I changed to the code to <cfheader name="Content-Disposition" value='attachment; filename="s4004"'>
<cfcontent
file="D:\INETPUB\highlandshistoricalconsulting\projects\project3\catherine\s4004">
deleteFile = "no">
. This worked fine using Mozilla Firefox browser, but failed using IE 6.0. Can you explain why? Is there a fix?
Thanks
I don't think Flash Player supports windows authentication.
I don't know, but it might be that since your file name doesn't have an extension, it doesn't work on IE. I also had <cfcontent type="#mimeType#"> in my code to help the browser guess what to do with the file.