Tagged Questions
0
votes
1answer
44 views
Codeigniter, uploading multiple files with same name
I have an upload form that allows me to add as many files as needed. However when I start trying to upload the files I get an error.
Controller
$this->load->library('upload');
$error = "";
...
0
votes
0answers
112 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
1answer
407 views
ExtJS 4 and PHP multiple file upload widget configuration incorrect when installed on Windows Server 2008 using IIS 7 and FastCGI PHP
Can someone help me with necessary configuration (or help troubleshoot) file uploads with ExtJS 4 in PHP FastCGI in IIS 7? The application user interface is working well, but the files are not moving ...
-1
votes
1answer
182 views
How to upload multiple files using single tag in Struts2?
How can we upload multiple files using single file tag in Struts2.
0
votes
2answers
612 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
1answer
401 views
Issues with session variables and cffileupload
I don't have access to make any changes to the coldfusion administrator as I am on a shared host. But I am running cf9 and am trying to use the tag for multiple image uploads. Everything looks good ...
0
votes
1answer
153 views
Can a user select and upload more than one file at a time in asp.net?
I made a website for a friend and he uploads a lot of pictures, around 20k per month. And sadly, I made it so he has to upload 1 at a time, because when they are uploaded they are renamed, attached to ...
