Hello,
I am having a problem too with JumpLoader. I choose the file to upload, click on the green arrow to upload, and I get a "file upload error". No file in the staging folder. I tried the fixes above.
OK I had in the code source of the html page the line :
I replaced in inc.ClassUI.php by :
So now I have in the HTML code the line :
which looks more like what you said it should be ...
But I still can't upload. The permissions on the staging folder are 777.
OK same idea : replace
<param name="uc_uploadUrl" value="<?= $uploadurl ?>"/>
by
<param name="uc_uploadUrl" value="<?php echo $uploadurl ; ?>"/>
AND IT WORKS !
(for the ones who are still looking)
I am having a problem too with JumpLoader. I choose the file to upload, click on the green arrow to upload, and I get a "file upload error". No file in the staging folder. I tried the fixes above.
OK I had in the code source of the html page the line :
Code:
attr = attrSet.createStringAttribute( '<?= $name ?>', '<?= $value ?>' );
I replaced in inc.ClassUI.php by :
Code:
attr = attrSet.createStringAttribute( '<?php echo $name ; ?>', '<?php echo $value ; ?>' );
So now I have in the HTML code the line :
Code:
attr = attrSet.createStringAttribute( 'folderid', '21' );
But I still can't upload. The permissions on the staging folder are 777.
OK same idea : replace
<param name="uc_uploadUrl" value="<?= $uploadurl ?>"/>
by
<param name="uc_uploadUrl" value="<?php echo $uploadurl ; ?>"/>
AND IT WORKS !
(for the ones who are still looking)