Hello,
I am having a bit of a problem here, I am let the user upload some video to the server however I am having some difficulties managing a view that I am using to illustrate its progress, I know why the problem is happening and i found a way around it (sort of) here my problem
So if one tries to make some code that looks something ...
I'm working on an application that allows the upload, and storage of large files on a web server. Currently I'm using PHP to handle POSTed files via http. I have my php.ini set with:
upload_max_filesize = 100M
post_max_size = 100M
memory_limit = 128M
max_input_time = 6000
max_execution_time = 6000
There doesn't seem to be any apache...
I'm creating an online game in PHP where users can create playable characters. Each character can have a user-uploaded portrait. A player can simultaneously have multiple characters, and the pictures for them can be changed anytime. Naturally, the pictures have to be resized and re-compressed to avoid huge files. Here's my problem:
When...
The only tools/plugins I've seen online that allow for multiple files to be selected for upload through one single dialog box using a SHIFT or CTRL click action (as opposed to clicking on a single file per for file uploads) exist for controls made in Flash/.NET/Java, not just straight Javascript/HTML/PHP.
Why is that the case? I'd ima...
My brother has a computer running Windows XP with SP2 installed. His computer was behaving badly (very old installation of Win) and one of the problems was that he could not upload jpegs to Facebook, for example. The upload would complete, but the images are garbled.
Finally I decided it was time to format his computer and reinstall w...
Here's the lowdown. PHP, Codeigniter, LAMP.
I've created a fixeee for you all to see my code. http://fixee.org/paste/s8jc04t/
Whenever I have mulitple file uploads (ex. fileupload1, fileupload2, fileupload3, etc.) and I tried to get the upload data from each one correctly, I seem to duplicate the first file data that was uploaded. Can...
Hi, regarding file uploads, I have a form through which I upload a file, I get the $temp_name = $_FILES['name']['temp_name'] and store it in a variable.
Can I then use that variable again inside move_uploaded_file("$temp_name","$location") inside another form.
Will this work??
When we upload a file, there is a temp location created o...
OK I give up - after 5 solid hours trying to get a django form to upload a file, I've checked out all the links in stackoverflow and googled and googled. Why is it so hard, I just want it to work like the admin file upload?
So I get that I need code like:
if submitForm.is_valid():
handle_uploaded_file(req...
How do I upload files using sdk3? I'm developing my project using flex and spring
iam using the jboss server
...
Hey,
I was wondering how do i remove a file from Rackspace's Cloudfiles using their API?
Im using php.
Devan
...
It seems that when I configure SWFUpload the same way it is set up in the demo, the form shows the same other than where the browse (hello) button is located. The only differences are the locations of files and the image used for a browse button... any ideas?
...
can anyone plz provide me a simple working code snippet of codeigniter for uploading 2 images at once (through 2 different input field ofcourse). I need 2 images to be uploaded at once, or one after another. and both of the images need to be in different location.
I tried to make it myself by calling upload function twice but it return...
I have a HIT on Mechanical Turk that requires a file upload of an MP3 file.
<h2>Upload your file here</h2>
<input type="file" name="audiofile" />
<input type="submit" />
When I review the results from my HIT, mechanical turk will give me the filename but no upload path or link to download the file.
How can I download the file that ...
i need to mimic how an upload form work. i need to store a file into database and uploads the $_FILES into our folders. The problem every bit of code of the models and the form itself is based on legacy code. I don't have the the gut to strip all code and start over. I prefer to let it be
So, my goal is how to uplaod file without use th...
Hi All,
I need to find an inexpensive LAMP Web host that allows for large file uploads (500-1024MB) via PHP/HTML.
My current host has lots of restrictions with this that I cannot override.
thx.
...
Hey all,
I have a script I'm working out to upload up to 10 files at once. I have 10 seperate inputs in my html:
<?php
for($i=0;$i<10;++$i) {
$num = $i+1;
echo '
<span>'.$num.'</span><input type="file" name="photo'.$i.'" />
';
}
?>
And then I have my uploader which I have used ...