file-upload

PHP file upload, file will not move to local directory.

I have a problem when moving an uploaded file into a local directory. When running the following code, the output is always "error uploading file". It seems to always not meet the condition for the 'move_uploaded_media' function and therefore $result is not being set? Are there any glaring mistakes? <?php $page_title = 'Admin | Multi...

Using respond_to ... format.json and jQuery Form Plugin by malsup

Hello all, I'm having a tad bit of trouble getting the jQuery Form Plugin to work properly with a file-upload field. When I use the plugin to submit the form without a file-upload field, the format.json portion of the respond_to do |format| block is called properly. However, by adding the file-upload field, it only executes the format.h...

Script function for file upload in ColdFusion 9

Is there a a cfscript equivalent for cffile action="upload" in ColdFusion 9? Looking through the docs, there doesn't seem to be. ...

SWFUpload works in IE, but not in Firefox

Using SWFUpload v2.2, Firefox 3, IE 8, Flash 10 In my ASP.NET application all uploads are being processed by upload.aspx (I have the correct upload_url set in the settings object). In IE 8 the uploads hit the upload.aspx page and are processed, but in Firefox they do not. Any suggestions? Most of the code for the page that the user vis...

how to handle multiple file upload using PHP

hello i want to upload files using PHP but the problem is that i don't know how many files i will upload, my question is how can i upload files if i use file[] ? <form action="upload.php" method="post" enctype="multipart/form-data"> <label for="file">Filename:</label><input type="file" name="file[]" id="file" /> <br /> <label for="fil...

Update grid from inside AsyncFileUpload uploadCompleted event

I have the following code, and I can't get the UpdatePanel to Update. Any ideas? I'm wondering if its possible to do a Update from within async method? <asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional"> <ContentTemplate> <asp:DataGrid ID="dgFiles" runat="server" DataKeyField="Confi...

Monotouch Camera Image Capture and Upload

I would like to be able to capture an image (or choose an image from the photo library) and upload it to a remote server using Monotouch. I am not sure how to obtain and encode the image or how to upload the image and I am having difficulty finding relevant instructions. Can you help me get started? Thank you. ...

FileUpload... asp.net noob

I'm trying to use the FileUpload control in ASP.NET Here's my current namespace setup: using System; using System.IO; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; And within my class, I'm just ...

iPhone : Transfer of files from Mac/Pc to app

I need to transfer binary files from my pc/mac to my app. I want to allow my users to upload sound files. Am i going to have to run a web server that the user can connect to over wifi? What are the steps i have to go through to get this up and running? ...

SWFUpload, why doesnt Firefox POST?

I implemented SWFUpload on my site and it works great in IE, but in Firefox no data is POSTed to the server. I have verified this using Charles. I noticed from the debug info that in IE the last two lines read: SWF DEBUG: Event: uploadSuccess: File ID: SWFUpload_0_0 Response Received: true Data: SWF DEBUG: Event: uploadComplete : ...

Can get move_uploaded_file to work

Cant seem to make php move_uploaded_file function to work. $MAX_FILESIZE = 5 * 1024 * 1024; $rEFileTypes = "/^\.(jpg|jpeg|gif|png|pdf|xls|xlsx|ppt|pptx){1}$/i"; $isFile = is_uploaded_file($_FILES["prodImage"]["tmp_name"]); if($isFile) { ...

Tomcat 5.5 FileUpload resource leak

I took a Struts2 FileUpload example from internet. When uploading file I see that a temporary file is created under the Tomcat's work directoy. After the returning from my action class I see this in logs: WARNING: Resource Leaking: Could not remove uploaded file 'C:\Program Files\apache-tomcat-5.5.28\work\Catalina\localhost\FileUplo...

WCF file transfer with cancellation support

Hi all! There are a lot of questions regarding file transfer with WCF. I've got everything working, including larges files in "chunked" mode. I have the option to cancel the file upload from the sending party (the one that starts the upload) and a callback interface to notify when the transfer is accepted, and canceled. My problem is ...

Cross-browser method for directory uploading

If this can only be done in some browsers, I'd still like to know how... Basically, I want to have a drag-and-drop feature where users can drag files to a drop zone and then hit "upload" and have the files uploaded to the server. I was pondering the possibility of having the option to drag an entire folder to the drop zone and uploadin...

File upload timeouts with Ruby on Rails and apache

I have a rails application running under 2.3.4 and Ubuntu. I'm using passenger. I have had complaints when users try to upload large files (>300MB). For my part, I can do it just fine, but I have a very fast internet connection. What's more puzzling is the behavior they see on their end. At some point into the process the upload proces...

How to select a file from android memory to do some action on it.

Hi all, I want to transfer a file into android dev's SD memory and read the file for parsing it. But i don't know how to transfer a file into the emulators SD Card. Also I don't know which api is to be used to browse for the file from the application. This app provides the user to show it where he has kept the file which the app has to...

WYSIWYG editor for Rails with Paperclip Integration

I'm looking for a way of integrating a WYSIWYG editor into my rails app so it will use Paperclip for Image / File uploads. What I want is this: User can use a WYSIWYG field to create some rich text. They can upload an image into this text but the image will be stored nicely in a DB (hopefully using something like Paperclip) instead of j...

FileUpload and UpdatePanel: ScriptManager.RegisterPostBackControl works the second time.

Hello. I'm developing an ASP.NET application with C# and Visual Studio 2008 SP1. I'm using WebForms. I have an ASPX page with two UpdatePanels, one on the left that holds a TreeView and other on the right where I load dynamically user controls. One user control, that I used on right panel, has a FileUpload control and a button to save...

Upload Large Files from ASP .Net Application

I am building a website where i need a page where user can upload large video files, i have created WCF service with streaming but i am calling that WCF service from Button_Click event of web page. I have used below mentioned article for WCF service creation WCF Streaming I have used streaming as it should be efficient and should not ...

Google Docs API. Upload file using curl.

Hi. Anyone know how to post file using curl to the google documents. I write this code: $header[] = "Authorization: GoogleLogin auth=seсretkey"; $header[] = "Content-Type: application/pdf"; $header[] = "Slug: testdoc"; $header[] = "Content-Length: ".$_FILES['file']['size'].""; $url = "http://docs.google.com/feeds/documents/private/full"...