The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
38 views

How to filter based on another file

Say I have a file in this format file 1: kk a 1 rf c 3 df g 7 er e 4 es b 3 and another file 2: c g e I want filter the second column based on file 2 and output a file like this: rf c 3 df g 7 ...
0
votes
2answers
552 views

Uploading multiple files using formData()

var fd = new FormData(); fd.append("fileToUpload", document.getElementById('fileToUpload').files[0]); var xhr = new XMLHttpRequest(); xhr.open("POST", "uph.php"); xhr.send(fd); uph.php: ...
0
votes
2answers
37 views

How to toggle certain comments in multiple files in visual studio 2010?

I have an ASP.NET MVC 4 Website with multiple files(controllers) that have actions which accept [RequireHttps]. When I am working locally I want to be able to comment out all of these via a ...
1
vote
1answer
55 views

Python: Run The Same Unittest module Tests For Multiple Files

I am attempting to create a simple framework that will discover all of the test cases from a specific directory (I am using unittest for these cases) and run each of these test cases against multiples ...
1
vote
1answer
483 views

How to attach a image and a .txt(multiple files) file to gmail through Coding?

I am trying to attach an image file and .txt file but only one file is attaching one is not attaching how to attach both the files. if i use ACTION_SEND_MULTIPLE then the app gets force close. HERE ...
1
vote
1answer
145 views

Is is possible to create multiple excel files parallely using Openpyxl, while optimized_write set to True?

To overcome the memory limitations of PHPExcel, we have used Python's openpyxl library to generate the Excel files and sending the data to be saved in Excel files from PHP using thrift. Now we have ...
1
vote
1answer
270 views

PHP How to ZIP multiple files located in different paths?

I have 16631 files hosted in a webserver, 2719 of them are text files that contains a list of specific files located on the server. Using PHP, is possible to create a ZIP for each text file? could be ...
0
votes
1answer
289 views

Has anyone used Grocery CRUD and jQuery File Upload script?

I desperately need to make the Grocery CRUD (Codeigniter) to be able to use multiple image upload with thumbnail preview for the uploaded images. jQuery File Upload is what I need, but I really don't ...
0
votes
1answer
829 views

php multiple image uploader

For the sake of God can someone help me make the below script to upload multiple images(5). I'm stuck at this for days with no luck. I have no idea how to make it upload five images. Pleeeease help ...
0
votes
1answer
108 views

Why use Uploadify?

Could somebody mention the advantages of Uploadify file upload plugin over other options that are availabe e.g. swfupload, fancyupload etc.
0
votes
1answer
1k views

PHP Use zLib to Compress Multiple Files

$files = array("images/1.jpg", "images/2.jpg", "images/3.jpg"); foreach($files as $file){ $temp = null; $fp_in = fopen($file,'rb'); while(!feof($fp_in)){ $temp .= ...
-1
votes
1answer
181 views

How to upload multiple files using single tag in Struts2?

How can we upload multiple files using single file tag in Struts2.
4
votes
0answers
883 views

Spring MVC multiple file upload with HTML5 multiple file form feature

I am trying to upload multiple files using spring 3.1.2 with @Controller and @RequestMapping. Here's what I did and my configuration. Html5 form : <form action="addFileSystemImage.foo" ...
2
votes
0answers
196 views

How to download multiple files with android DownloadManager so that it appears in one queue

I'm using DownloadManager to download files. I know how to download one file and either use request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED); or not. ...
2
votes
0answers
143 views

How to make context menu item to many files?

I make context menu item for images(for example), it should open my console application, using target file as string argument. When I use it for many files it opens many application copies, and for ...
1
vote
0answers
39 views

apply a list of replacements on multiple xml files

I need a solution for the next case. I have a list of 60.000 words that i need to replace with the same word but with diacritics. For example: "catre" -> "către" This list i have to apply it on a ...
1
vote
0answers
172 views

How to send a caption for the each image in jQuery File Upload

I am using jQuery File Upload for My Rails Application to upload multiple files using browse button and drag-n-drop.Below is the link for the demo site http://blueimp.github.com/jQuery-File-Upload/ ...
1
vote
0answers
103 views

Ajax Upload: How to make each file I upload have its own extension as a request parameter?

So I am loooking at Ajax Upload library. I made it work with my server and upload multiple files. But I dont get how to set such parameter as file extension for each difrent file I upload. So I wonder ...
1
vote
0answers
283 views

Comma separated list with AvroStorage in Pig

I tried to load several files with AvroStorage in Pig by using a comma separated list. The statement I used is: test_data= LOAD 'repo_1/part-r-00000.avro,repo_2/part-r-00000.avro' USING ...
1
vote
0answers
152 views

Cocoa (Mac): splitting / combining a core data based application from / into multiple save files

I'm working in OS X Lion on a Core Data based Cocoa application where I need to be able to save different parts, lets say partA and partB, of the data model into separate files. I need to be able to ...
0
votes
0answers
8 views

How to make ajax download multiple files at once/in parallel?

I have a json file that is about 1.6MB. This json file will be used in my site's auto-suggest feature; I am using TypeAhead from Twitter. On slower connections, 1.6MB would take many seconds. So my ...
0
votes
0answers
92 views

Uploading multiple file using codeigniter

I got a problem with multiple upload file using codeigniter. I've tried many method before but still no success. Here is my code. View <?php echo form_open_multipart('staff/upload_files', ...
0
votes
0answers
108 views

How to import multiple ods files in mySQL?

I have 33 ods files(open office spreadsheet files). ALL have to be imported to the database01. At first, it must create the table corresponding to the filename. After that, which means the next day, ...
0
votes
0answers
80 views

Javascript validation for multiple file upload

I want to validate multiple file upload field using javascript for both file extension and size. Thanks in advance.
0
votes
0answers
189 views

Validating multiple files using HibernateValidator

I'm using Spring 3.2.0 and Hibernate Tools 3.2.1.GA and HibernateValidator to validate forms. I need to upload multiple files like, <input type="file" id="fileProdImage" name="fileProdImage" ...
0
votes
0answers
122 views

How to add multiple file-sending to my jquery-ajax form?

The function: $(".feedback input.sent").click(function() { var name = $(".feedback textarea.name").val(); var mail = $(".feedback textarea.mail").val(); var phone = $("feedback ...
0
votes
0answers
45 views

View the history of multiple files and folders selected in TFS

Just as mentioned in the subject. If I'd like to view the history of multiple files and folders I have selected in the Visual Studio's Source Control Explorer, is there a way to do it? Thanks.
0
votes
0answers
46 views

apache multiple download

I have this weird problem where Apache apparently does not finish my download but instead make it wait right before finishing (about 99.7%) and instead try to finish the others when I am ...
0
votes
0answers
66 views

How best to deal with multiple file uploads in Rails…read the files every time or limit to one attachment?

I'm currently using Paperclip to handle a single attachment for an event model. I'd rather be able to support multiple file attachments (i.e., a dinner menu and a poster ad for example). Would it be ...
0
votes
0answers
252 views

How to retrieve row POST data in Java?

We have been using ExtJS widget 'multiple file upload' to upload many files at a time. Everything goes fine on UI side but when we are getting error in Spring's action. I would like to know that how ...
0
votes
0answers
224 views

Uploading file through JSF page with additional parameters

Is it possible make a multiple file upload accept additional user-submitted parameters like description of the files or tags? I currently have a JSF (JSF 1.2) page using JavaScript to clone whole ...
0
votes
0answers
982 views

Copy multiple files from client to server c #

I need to copy "N" number of files from client to server with asp.net c # I've done something like that, but it is useless because it takes only server addresses Somebody help me .. Thanks ..!!! ...
-1
votes
0answers
61 views

Linux Shell Script: Create a matrix from multiple files and save the result

I want to write a correlation matrix from the multiple files. fileA: aa 1 ab 0.2 ac 0.4 fileB: ba 0.2 bb 1 bc 0.5 fileC: ca 0.4 cb 0.5 cc 1 What I want: a b c a 1 0.2 0.4 ...