Share - Firefox - File Upload Issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2008 09:59 AM
1. We can't connect using Webdav, error says the folder is unavailable (my connection is as follows: https://myserver/alfresco/)
2. We can't upload files using Firefox 3 through the web client in Share. I can upload files on the Alfresco side using Firefox as well as upload files using IE for both Share and Alfresco.
I suspect we have a configuration error but I'm not sure where to look as sys-admin is not my area of expertise. Any insight into this would be helpful?
Thanks
- Labels:
-
Archive

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2009 03:29 AM
I have the exact same problems with Alfresco enterprise 3 SP1. Have you found anyway to complete a file upload in Share with https?
//Carl

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2009 04:06 AM
The only solution I can think of to allow https upload in Share is then to use the non-flash upload, until the bug in Flash is resolved.
/Carl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2009 06:39 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2009 08:49 AM
The only way to disable the Flash uploader without uninstalling Flash would be to edit file-upload.js and look for:
this.hasRequiredFlashPlayer = Alfresco.util.hasRequiredFlashPlayer(9, 0, 45)
and change it to:this.hasRequiredFlashPlayer = false
Thanks,Mike

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2009 06:44 AM
The code auto-detect whether you have Flash installed or not.
The only way to disable the Flash uploader without uninstalling Flash would be to edit file-upload.js and look for:and change it to:this.hasRequiredFlashPlayer = Alfresco.util.hasRequiredFlashPlayer(9, 0, 45)
Thanks,this.hasRequiredFlashPlayer = false
Mike
I'm getting "Could not load html upload template" after modifying this. Any thoughts?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2009 12:44 PM
in file html-upload.js, you have to correct line 219The code auto-detect whether you have Flash installed or not.
The only way to disable the Flash uploader without uninstalling Flash would be to edit file-upload.js and look for:and change it to:this.hasRequiredFlashPlayer = Alfresco.util.hasRequiredFlashPlayer(9, 0, 45)
Thanks,this.hasRequiredFlashPlayer = false
Mike
I'm getting "Could not load html upload template" after modifying this. Any thoughts?
216 // If it hasn't load the gui (template) from the server 217 Alfresco.util.Ajax.request( 218 { 219 url: Alfresco.constants.URL_SERVICECONTEXT + "components/upload/html-upload?htmlid=" + this.id, 220 successCallback:
"modules/html-upload?htmlid=" replaced by "components/upload/html-upload?htmlid="
But, … html component is still no displayed, maybe a css issue, i don't know …..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2009 12:34 PM
in file html-upload.js, you have to correct line 219216 // If it hasn't load the gui (template) from the server 217 Alfresco.util.Ajax.request( 218 { 219 url: Alfresco.constants.URL_SERVICECONTEXT + "components/upload/html-upload?htmlid=" + this.id, 220 successCallback:
"modules/html-upload?htmlid=" replaced by "components/upload/html-upload?htmlid="
But, … html component is still no displayed, maybe a css issue, i don't know …..
In fact there is a problem with the css propertie "hidden". In html-upload.js this propertie is not removed so the panel won't show.
To correct that you have to add something after the call to panel.render line 265 in html-upload.js
260 /**261 * Render the server reponse so the contents get inserted in the Dom.262 * Scripts in the template, such as setMessage(), will also get run263 * at this moment.264 */265 this.widgets.panel.render(document.body);266 267 //Remove the class hidden to display the panel268 Dom.removeClass(this.id + "-dialog", "hidden");
With that the panel will show after clicking the upload button
Hope it will help
I'm still trying to "stabilize" the flash upload, without success, once it's working, once not. I'm going crazy

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2009 10:55 PM
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2009 04:22 AM
Any luck with get it stabilized? I'm supposed to evaluate Alfresco, but Firefox 3 is our standard browser. So this could pose a problem.Try HEAD, which is now running YUI 2.7.0.
The bug lives somewhere between Adobe and Mozilla, so it's out of our hands unfortunately.
Mike
