Hi, Uploading image works fine when I'm doing it thru the Image Info tab -> Browse Server -> Browse..
but when I go thru this way: Upload tab -> Browse...
it doesn't seem to work, nothing happens when I press the "Send it to the server" button. But it works fine when I go thru the way I described first.
and I've also followed the way on the wiki site on how to make uploading work, only the first step worked after that, not the second.
Any help would be appreciated!
but when I go thru this way: Upload tab -> Browse...
it doesn't seem to work, nothing happens when I press the "Send it to the server" button. But it works fine when I go thru the way I described first.
and I've also followed the way on the wiki site on how to make uploading work, only the first step worked after that, not the second.
Any help would be appreciated!
RE: Uploading image
RE: Uploading image
Check this post:
http://sourceforge.net/tracker/index.ph ... tid=543653
RE: Uploading image
Thanks for the reply though.
RE: Uploading image
RE: Uploading image
RE: Uploading image
RE: Uploading image
Good!
Does the fix for the FCKConfig.QuickUploadLanguage-bug exist in your files?
I had to correct for the bug above in my upload to work.
Johnny
RE: Uploading image
Image uploading worked fine before, but I added the fix just incase and it worked fine afterwards too
)
RE: Uploading image
RE: Uploading image
I have added the 3 lines of JS to the config.js file and i still cant use the upload image.
Nothing happens..
I have even unzipped the original download, replace the config.js with the bug free one.
And still nothing..
Anyone else got any pointers to where to look?
Muchly appreiciated..
RE: Uploading image
Tho our main server is still running CF5, this doesnt work even after updating config.js.
Is there still a bug on the cf5 implementation?
RE: Uploading image
Perfect, it works fine! Thank You!
I´ve searched for many Hours to solve this Problem... maybe it was to easy
Greets Mario
RE: Uploading image
I have updated my config file with the _QuickUploadLanguage fix. The results are the same.
I see some people have solved the problem, but I don't follow what they did to do so.
Interestingly, when I was playing around with this on a testing server, I could get the UPLOAD tab uploads to work but not the IMAGE IFO tab uploads to work. (Exact opposite of my problem now) but I can't find any difference with the two configurations.
A little help would be great!
RE: Uploading image
var _FileBrowserLanguage = 'php' ;
var _QuickUploadLanguage = 'php' ;
'asp' is the default.
RE: Uploading image
There are 3 lines with bad code in the fckconfig.js file that need to be changed in order for the "UPLOAD" tab to work.
The lines are (at least in my copy of the file as downloaded) 155, 160 and 165 which read:
FCKConfig.FlashUploadURL = FCKConfig.BasePath + 'filemanager/upload/' + FCKConfig.QuickUploadLanguage + '/upload.' + _QuickUploadLanguage + '?Type= ...
Specifically, here's the part that needs to be changed:
FCKConfig.QuickUploadLanguage
Needs to be replaced with:
_QuickUploadLanguage
(In other words, get rid of "FCKConfig." and replace it with "_")
Someone else mentioned inserting the "_" (underscore character) and even posted a replacement fckconfig.js file, but as far as I know, I either missed taking out the "FCKConfig." or they didn't mention it in thier fix.
Anywho...that's what I had to do to get it to work, and it works like a charm now.
Shoot me an email if you need help.
RE: Uploading image
I totally "spaced" on this. The fix (and revised file) does work correctly. I guess I just read the description of how to implement it wrong. In any case, hats off to the original!