ASP Connector for the FCKEditor v2 File Manager
Written By Grant French, Oct 2004
grant@mcpuk.net - http://www.mcpuk.net 

FCK Editor - Written By Frederico Caldeira Knabben
http://www.fckeditor.net 

Icons supplied for file types from everaldo - 
http://www.everaldo.com

Thanks to tdgraphix (tdgraphix@comcast.net) for 
implementing support for upload components
other than Persits, and for testing the connector.


NOTES:
------

This software is provided as is with no guarantees or
warranties what so ever. It has been tested under:-

SoftArtisans and AspSimpleUpload should work but are
as yet untested.

IIS 5 / Win XP Pro / Persits ASPUpload / Persits ASPJPEG 
(ASPUpload and ASPJPEG lastest versions date: 27/10/04)

!!! if you specify the relative path of the connector in 
	the fckconfig.js file you may experience some unusual
	behaviour mainly in firefox, like the resource list
	failing to refresh. To avoid this specify the absolute
	path of the connector.

	
	
SETUP FOR JUST CONNECTOR:
-------------------------

The asp folder in this zip can go anywhere in the webroot,
recommended is the following folder inside the editor folder 
of FCKEditor:
filemanager/browser/default/connectors/



ASP CONNECTOR CONFIGURATION:
----------------------------
the connector.asp file must be referenced in the fckconfig.js file e.g.

Example Configuration (fckconfig.js)
------------------------------------

FCKConfig.LinkBrowserURL = 
	FCKConfig.BasePath + "filemanager/browser/default/browser.html?" +
	"Connector=" + FCKConfig.BasePath + "filemanager/browser/default/connectors/asp/connector.asp";

FCKConfig.ImageBrowserURL = 
	FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&" +
	"Connector=" + FCKConfig.BasePath + "filemanager/browser/default/connectors/asp/connector.asp";

Please make sure you comment out or remove any other lines in the 
fckconfig.js starting with:
FCKConfig.ImageBrowserURL =
FCKConfig.LinkBrowserURL = 

in this case the asp folder in this zip was placed in the 
filemanager/browser/default/connectors/ folder in the 
FCKEditor's base directory.


Upload Progress (ASP Connector)
-------------------------------
I have attempted this but failed, anyone wanting to take up the challenge, you are
welcome to it, please let me know if you get it working so i can update the connector
for everyone else (your will be credited in the code).


ASP Connector Config
---------------------
Then look at the config.asp and customize it to your needs, 
it is fully comments so this should be quite simple.


FILE & FOLDER SETUP:
--------------------

1. Create the user files folder (set in the config.asp) and 
	the following folders inside that:
		Image
		File
		Media
		Flash

2. Change the permissions on these folders so that the IIS user has read and
	write permissions to them.

3. Make sure you have created a temp folder set IIS user to have read & write
	and set its location in the config.asp



FINAL NOTE:
-----------

1. Limited support will be provided by email as and when i have time.
2. Think you could do a better job of the readme? Go on then...
3. If you have any ideas share them either by mailing me or in the 
	forum for the fckeditor (sf.net/projects/fckeditor/forums)


LICENSE:
--------

LGPL - Lesser General Public License (see LICENSE.txt file)


