Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Multiple File Uploads Error
#1
hello Everyone.

Last few weeks been spending some of my free time fiddling with LetoDMS. After having some problems installing then running into issue with fulltext search (Lucene.php) Zend Framework and such i ended up setting up a Linux box at home running RedHat Enterprise Linux 6.
Installed everything needed for run LetoDMS including XPDF for the full text search and other accessories. also installed Lucene_letoDms and core as a pear package..
everything works fine even the full text search,which i couldn't get it to run on a windows WAMP system, work awesome!!!!! BUT

I can upload file individually with no problems..however when i try to upload multiple documents from 'Add Multiple documents' tab it give an error and does not upload any files... even the input fields of the document information are missing??

the picture i have attached is of 2 different servers.
Server A is running fine on the hosted webspace (how ever still having trouble with zendframework due to the hosting issue)
[ATTACHMENT NOT FOUND]
Server B is my Home RHEL6 box ( the one having the problem uploading).
[ATTACHMENT NOT FOUND]
is there something i forgot to install??
Reply
#2
(10-19-2011, 06:48 PM)caos Wrote: hello Everyone.

Last few weeks been spending some of my free time fiddling with LetoDMS. After having some problems installing then running into issue with fulltext search (Lucene.php) Zend Framework and such i ended up setting up a Linux box at home running RedHat Enterprise Linux 6.
Installed everything needed for run LetoDMS including XPDF for the full text search and other accessories. also installed Lucene_letoDms and core as a pear package..
everything works fine even the full text search,which i couldn't get it to run on a windows WAMP system, work awesome!!!!! BUT

I can upload file individually with no problems..however when i try to upload multiple documents from 'Add Multiple documents' tab it give an error and does not upload any files... even the input fields of the document information are missing??

the picture i have attached is of 2 different servers.
Server A is running fine on the hosted webspace (how ever still having trouble with zendframework due to the hosting issue)

Server B is my Home RHEL6 box ( the one having the problem uploading).

is there something i forgot to install??

Check the forum. I have just posted a possible fix for that. Does it really depend on the server not on the browser? This is propably a javascript/java issue, but should not relate to the server.

Uwe
Reply
#3
(10-19-2011, 08:55 PM)steinm Wrote:
(10-19-2011, 06:48 PM)caos Wrote: hello Everyone.

Last few weeks been spending some of my free time fiddling with LetoDMS. After having some problems installing then running into issue with fulltext search (Lucene.php) Zend Framework and such i ended up setting up a Linux box at home running RedHat Enterprise Linux 6.
Installed everything needed for run LetoDMS including XPDF for the full text search and other accessories. also installed Lucene_letoDms and core as a pear package..
everything works fine even the full text search,which i couldn't get it to run on a windows WAMP system, work awesome!!!!! BUT

I can upload file individually with no problems..however when i try to upload multiple documents from 'Add Multiple documents' tab it give an error and does not upload any files... even the input fields of the document information are missing??

the picture i have attached is of 2 different servers.
Server A is running fine on the hosted webspace (how ever still having trouble with zendframework due to the hosting issue)

Server B is my Home RHEL6 box ( the one having the problem uploading).

is there something i forgot to install??

Check the forum. I have just posted a possible fix for that. Does it really depend on the server not on the browser? This is propably a javascript/java issue, but should not relate to the server.

Uwe

Ok i read the thread How to add multiple document in one go? and changed the /inc/inc.clssUI.php file and replaced the following Line:

PHP Code:
dump attributes of all files into html
     
*/
     function 
dumpAllFileAttributes() {
         var 
content "";
         var 
uploader document.jumpLoaderApplet.getUploader();
         var 
files uploader.getAllFiles();
            var 
file getSelectedFile();
                 for (var 
0uploader.getFileCount() ; i++) { 
                         if(
uploader.getFile(i).getID() == file.getID())
                            
content += listFileAttributesuploader.getFile(i), 1);
                        else
                            
content += listFileAttributesuploader.getFile(i), 0);
         }
         
document.getElementById"fileList" ).innerHTML content;
    } 
With this so now it looks like :
PHP Code:
function dumpAllFileAttributes() {
         var 
content "";
         var 
uploader document.jumpLoaderApplet.getUploader();
          var 
file getSelectedFile();
         if(
file) {
           for (var 
0uploader.getFileCount() ; i++) { 
             if(
uploader.getFile(i).getIndex() == file.getIndex())
               
content += listFileAttributesuploader.getFile(i), 1);
             else
               
content += listFileAttributesuploader.getFile(i), 0);
           }
           
document.getElementById"fileList" ).innerHTML content;
         }
    } 

still the same issue

Used Google chrome Firefox and IE9 same problem persists ??
Reply


Forum Jump:


Users browsing this thread: