I have the samples working. I have been playing around with developing a "dynamic directory" feature (already available for php and asp as I understand it..) which allows the upload manager to see a unique "directory" for a given "user or instance".
We need this feature for several products we are working on..
I would be willing to work on this with you if you are interested..
Unfortunately you are trying to operate in a world that requires that you understand how Tomcat works, and understand the JSP specification.
This I can not teach you here.. (time and space does not permit). You either need to train yourself, or hire someone that does understand these things help you.
Specific replies:
Mail 1 - Sounds link you need to study the settings.. The icon bar is NOT auto configure.. You need to configure it and then in your call to FCKeditor, tell it which menu bar to use.
Mail 2 - Again sounds like a configuration issue.. Here is a snippit of what I think are the critical settings in my configuration if that helps.. (BasePath is set in the JSP call)
FCKConfig.LinkUpload = true ; FCKConfig.LinkUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=File' ; FCKConfig.LinkUploadAllowedExtensions = "" ; // empty for all FCKConfig.LinkUploadDeniedExtensions = ".(html|htm|php|php2|php3|php4|php5|phtml|pwml|inc|asp|aspx|ascx|jsp|cfm|cfc|pl|bat|exe|com|dll|vbs|js|reg|cgi|htaccess|asis)$" ; // empty for no one
FCKConfig.ImageUpload = true ; FCKConfig.ImageUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=Image' ; FCKConfig.ImageUploadAllowedExtensions = ".(jpg|gif|jpeg|png|bmp)$" ; // empty for all FCKConfig.ImageUploadDeniedExtensions = "" ; // empty for no one
Sadly you have to know enough of how this is working to tweak it to your needs. I spent hours walking the code to figure this out. Unfortunately, what I need, may not be what you need..<sigh>
RE: HOWTO Use Uploadmanager w. OrbeonForms /
I have the samples working. I have been playing around with developing a "dynamic directory" feature (already available for php and asp as I understand it..) which allows the upload manager to see a unique "directory" for a given "user or instance".
We need this feature for several products we are working on..
I would be willing to work on this with you if you are interested..
John..
RE: HOWTO Use Uploadmanager w. OrbeonForms /
RE: HOWTO Use Uploadmanager w. OrbeonForms /
This I can not teach you here.. (time and space does not permit). You either need to train yourself, or hire someone that does understand these things help you.
Specific replies:
Mail 1 - Sounds link you need to study the settings.. The icon bar is NOT auto configure.. You need to configure it and then in your call to FCKeditor, tell it which menu bar to use.
Mail 2 - Again sounds like a configuration issue.. Here is a snippit of what I think are the critical settings in my configuration if that helps.. (BasePath is set in the JSP call)
FCKConfig.LinkBrowser = true ;
FCKConfig.LinkBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Connector=connectors/jsp/connector" ;
FCKConfig.ImageBrowser = true ;
FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Image&Connector=connectors/jsp/connector" ;
FCKConfig.LinkUpload = true ;
FCKConfig.LinkUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=File' ;
FCKConfig.LinkUploadAllowedExtensions = "" ; // empty for all
FCKConfig.LinkUploadDeniedExtensions = ".(html|htm|php|php2|php3|php4|php5|phtml|pwml|inc|asp|aspx|ascx|jsp|cfm|cfc|pl|bat|exe|com|dll|vbs|js|reg|cgi|htaccess|asis)$" ; // empty for no one
FCKConfig.ImageUpload = true ;
FCKConfig.ImageUploadURL = FCKConfig.BasePath + 'filemanager/upload/simpleuploader?Type=Image' ;
FCKConfig.ImageUploadAllowedExtensions = ".(jpg|gif|jpeg|png|bmp)$" ; // empty for all
FCKConfig.ImageUploadDeniedExtensions = "" ; // empty for no one
Sadly you have to know enough of how this is working to tweak it to your needs. I spent hours walking the code to figure this out. Unfortunately, what I need, may not be what you need..<sigh>
Hope that helps a bit..
John..
RE: HOWTO Use Uploadmanager w. OrbeonForms /
RE: HOWTO Use Uploadmanager w. OrbeonForms /
FCKeditorConfigurations.contentTypeMappingToMap(...)
Did you customize it..?? Or..???
There are only to methods:
getUrlParams(..)
encodeConfig(...)
and one constructor..
John..
RE: HOWTO Use Uploadmanager w. OrbeonForms /
RE: HOWTO Use Uploadmanager w. OrbeonForms /