Tagged Questions
0
votes
1answer
40 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
3answers
49 views
move_uploaded_file failing for multiple file upload in while loop
I am uploading multiple files using while loop, following is my code, move_uploaded_file always fails and I get message "error uploading File!". I am using the same code(code inside while loop without ...
0
votes
2answers
29 views
Upload error - file is not writable
I want to upload multiple files to the server.
As far as I can see files are not writable.
What can I do so my code can actually work and upload files.
PHP:
if(isset($_FILES ['uploaded_files']))
{
...
0
votes
1answer
126 views
getimagesize() expects parameter 1 to be string, array given
I am using getimagesize to validate the image type but don't know how to write the script for multiple file. Basically, I have a form that will allow upload of multiple image files like below.
...
0
votes
1answer
60 views
Add data to PHP array in another file [closed]
What I have set up is a main page (that outputs a table based on a require_once() PHP file with a PHP array), and admin page (that is supposed to write data to the aforementioned PHP array file), and ...
0
votes
1answer
385 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 ...
0
votes
1answer
864 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
117 views
Is there a way to loop through addresses and download multiple files at once ( or one after the other ) in php?
Okay, so, I have a website that has many different data sets available for download. Now, rather than going through and clicking each one individually and choosing to save each file to my PC, is there ...
0
votes
1answer
160 views
Multiple File Selection and Upload In IE (version < 9)
The code am using to select multiple file(s) at a time and to upload them to server is :-
<html>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data" ...
1
vote
1answer
147 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 ...
0
votes
2answers
1k views
PHP session variable across multiple files
If i have several PHP files and im setting a session variable in one file, will the same set value be available in another file for same session ?
1
vote
1answer
72 views
memory exhausted php, does this happen because of 1 file or is it possible it happens because i run multiple files at the same time?
I've made a CSV parser but sometimes it returns a memory exhausted error. The CSVparser consists of a jquery loop that starts multiple php files with ajax to parse a file. Some of the files return the ...
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 ...
3
votes
1answer
985 views
PHP Image/Fileupload: crossbrowser, multiple files, drag&drop?
Living in 2012 I did not think a image upload using PHP would cause so many difficulties.
My requirements are:
multiple file upload
cross-browser functional
considering security issues
depending ...
1
vote
6answers
5k views
Uploading multiple images with one input field
i have created a photography website with an admin page that uploads photos to different categories in a mysql table. This much works, but i can only upload one file at a time and i'd like to be able ...
0
votes
1answer
283 views
Multiple file upload script with thumbnail creation not working, not getting errors
Script below is not working. Not getting any php error messages. Had asked a similar question, changed around thumbnail creation and if I had updated that question it would not have been seen at ...
0
votes
1answer
2k views
Codeigniter multiple file upload
In codeigniter 2 I have to do a multiple file upload.
In my view input elements looks like this
<input type="file" name="file[]" id="file_1" />
<input type="file" name="file[]" id="file_2" ...
0
votes
2answers
951 views
cannot get multiple uploaded files from $_FILES in php
I cannot retrieve multiple files in my php code from $_FILES.
Here is the input form:
<form enctype="multipart/form-data" action="file-upload.php" method="POST">
Upload the several ...
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 .= ...
3
votes
4answers
4k views
PHP: how do I copy a temp file upload to multiple places?
how can I copy two times the same file? I'm trying to do something like this:
copy($file['tmp_name'], $folder."1.jpg");
copy($file['tmp_name'], $folder."2.jpg");
...

