upload

iPhone App Upload - CodeSign Missing?

Hi, For a long time now I have been searching through the forum whilst teaching myself the delights of iPhone programming, and I thank you all for the massive number of questions you have unknowingly helped me with! I seem to have come up against a brick wall regarding the upload of my finished application to Apple and would appreciate...

How to gracefully handle files that exceed PHP's `post_max_size`?

I'm working on a PHP form that attaches a file to an email, and trying to gracefully handle cases where the uploaded file is too large. I've learned that there are two settings in php.ini that affect the maxiumum size of a file upload: upload_max_filesize and post_max_size. If a file's size exceeds upload_max-filesize, PHP returns the...

jQuery AjaxUpload, have to click button twice?

Hey guys, I am using the AjaxUpload plugin with jQuery, and everything is working fine for the most part, but I have to click my button twice to get it to execute. I'm guessing this is a scope issue... or(?) still learning... Here is my code: $(".upload-button").live("click", function(event) { event.preventDefault(); ...

What's a good client-side, resize-before-upload, flash/java uploader?

Hi, does anybody know a good client-side, resize-before-upload, flash/java uploader? We need this terribly on our project, since we have a lot of people uploading photos and most of them have photos which are bigger than 3MB. We want to be able to resize these photos before they get sent out to us. I've googled for client-side java/fla...

Uploading file(s) to webserver in silverlight (C#)

Alright, so i have a silverlight application, it opens a filedialog, gets the selected file, transfers it to asp.net which saves it to the server, but i want to know how to implement a progress bar for it. for big files, and multiple file uploads, i will need to know the progress of the file upload to the server, is this possible? ...

GoDaddy Subdomain Hosting Issue/Question with Disk Access (C#/ASP.NET 3.5)

This isn't a very complicated scenario really, but as I start to type out the problem I'm realizing how convoluted it can become textually. Let me try and be very clear: First, the set up... I have a C#/ASP.NET web application that is publicly facing on my main domain (www), let's call it www.mysite.com. Nothing fancy, just a front-e...

Upload File to Website Using Save/As From Software Application

We all know that it is possible to "open" a Word document (or file from any arbitrary application) by clicking on a website link and then clicking the Open button. I also know that, if I want to upload an application document to a web server, I must first save the document to my computer, and then go to an upload page, click a file/open...

TABS.Upload question in classic ASP

I can't find any documentation about it except the examples. I'm trying to use their server side uploading component and I would like to save a file with another. There is no SaveAs function. What do I do? ...

Flash plugin which allows image upload from clipboard to server

Hi I want to embed a flash to my site, that allows the user to paste an image which is in clipboard, and this images will then be uploaded to the server. Is there a script that can do that? i googled for about an hour now, but didn't find anything that fits my needs. the best thing would be if you also coul crop your image when its up...

How Do I Upload Multiple Files Using the iPhone

I am posting (HTTP POST) various values to the posterous api. I am successfully able to upload the title, body, and ONE media file, but when I try to add in a second media file I get a server 500. They do allow media and media[] as parameters. How do I upload multiple files with the iPhone SDK? ...

upload an image in asp.net vb.net

does anyone know how to upload an image from asp.net using vb.net i need a browse and upload button on aspx side. i already have an image field in the table in sql server 2008. thanks for helping ...

Upload stop working suddenly ! move_uploaded_file problem

I have a script on my server for uploading file. It is working fine before but suddenly it cannot upload files to the server. I did not change the code, I did not change anything related to php setting or directories permission also for the server. I did not change any thing in the webserver (apache). I created a small script to isolate ...

Apache commons -> File Upload -> parseRequest() error

Apache returns this error while trying to upload a file (I only kept the first lines of the stacktrace and root causes): HTTP Status 500 - type Exception report message description The server encountered an internal error () that prevented it from fulfilling this request. exception org.apache.jasper.JasperException: Exception in JS...

Is it possible to grab the id3 metadata from an mp3 file while it's uploading from the user's browser to allow prefilling a form about the users track?

I have this requirement for a site I'm working on: The business owners want to show users a track form for the mp3 they're uploading as soon as they start uploading it and prefilling the form with the id3 data from the mp3. I don't see how this is is possible apart from perhaps using custom flash (e.g. SwiffUploader customised to look ...

Resize and Save an image in PHP4

I have been working on a script that uploads an image to a server and add a reference to that Image in a database. The server runs a PHP4 version on apache ( and there is no chance to upgrade ) So I wanna modify the following upload script to resize the image automatically <?php include_once('CheckLogin.php');...

Temporary uploaded file location in grails

I'm about to program a file upload in a Grails app - using g:form with *"multipart/form-data"*. Before saving it to disk, I'll check if the file is bigger than a given number of bytes, in which situation it will be discarded. My concern is: is the temporary file stored in some directory before it is moved to the final destination ? Becau...

ics file mime type

I'm trying to upload an ics file to my site. It was exported from iCal on Mac OSX. I thought that ics files had a mime type of text/calendar, but for some reason this file seems to be of type Application/octet-stream. This makes the upload fail my verification tests. Anyone have any ideas why the type isn't what I expect?! ...

Is it possible to use <input type="file"> just to post the filename without actually uploading the file?

Ok I really didn't know how else to sum it up for the title. I need to create a form where a user can specify an existing file, but I don't need to upload it (it's on a shared server already accessible) -- I just need to grab the filename and save it in the database so it's linked to other data. I thought about the input tag as it provi...

Image uploader + crop

Hello! I'm running a web application built on Seam. I would like to have an image upload + crop component.Preferably on client side, so the image uploaded to the server would be the result of the crop. I read this can be made with Flash 10. I was thinking flex is also a possibility. Does anyone has good hints to give me, what component ...

jQuery file upload after page load

I have a page that loads an HTML form via a $.ajax request. The form has a file upload option. I have tried several Ajax upload plugins and they all require me to instantiate some ajaxUpload() type object which internally creates the click listener. However these listeners dont trigger because the dynamically loaded form is not DOM acce...