upload

Round trip editing of binary documents stored on a server

Hi all, I'm looking to build some functionality for a content management system for the editing of files stored on the server. I'd like to provide users the ability to easily download files locally to their computer, open the file for editing, and save it back to the server. The process should be as seamless as possible. Here's the s...

Using jQuery, Restricting File Size Before Uploading

On PHP, they have a way to restrict file size AFTER uploading, but not BEFORE uploading. I use the Malsup jQuery Form Plugin for my form posting, and it supports image file posting. I was wondering if perhaps there's a restriction where I can set how many bytes can pass through that AJAX stream up to the server? That could permit me to ...

How do I upload a document to SharePoint with Java?

I'm creating some big files (DB exports) with Java and I need to put them somewhere on our SharePoint server. Right now, I'm doing this with IE but I'd like to automate this step, too. I searched the web and I found some hints to use SOAP but I don't really see to the ground of all this, yet. Can someone provide me with some sample code...

What's the most bullet-proof way to upload large files in a web app?

We have to accept large file uploads (video content) and want to do that in a way that works well across all standards-compliant browsers and plug-ins. Our current setup looks like this: SWFUpload input type="file" for graceful degradation On the server-side, we have nginx and the upload module streaming the uploaded files into the s...

Posting base64 encoded files to an asp.net 1.1 page

We are making an automated patching application and would like to post files on production server through asp.net page (or maybe a web service), since we can only access production server via http. The page should accept files and store them to appropriate location. The path to files will be declared in external XML file. So, is it possi...

Probs with ASP.NET MVC Postback + Callback Synchronously

Hi Guys, I am trying to create an upload control for ASP.NET MVC with jQuery progress bar. In ASP.NET the implementation works no problems, but in MVC the problem is that the server doesn't respond to my callbacks until the file is uploaded. The upload control is based on html file upload element, and I cannot for the life of me, under...

PHP File Upload...files disappearing into the great void..where noone can hear them scream..

Hi I am running Ubuntu8.041. Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.3 with Suhosin-Patch configured Can't get file uploading to work at all. Have tested locally on the Ubuntu box... and from my Vista Box. Ubuntu is running inside VMWare on the Vista box. Here is uploadTestBrowse.php <?php ?> <form enctype="multipart/form-data" a...

How do I make Flex file upload work on firefox and safari?

I have a flex app that uploads files to a server. The server requires authentication to be able to upload. In IE the upload works fine. However in FF and Safari, it does not upload. I have seen people all over with this same problem but no answers. Don't fail me now stackoverflowers. ...

Internet Explorer: What happens when you select a non-existing file for upload in an HTML form?

On Internet Explorer, the standard HTML file upload form also allows for direct input of the file name (instead of using the file selector dialog). This makes it possible to enter non-existing files. On other browsers (which do not let you do that) I suppose this case can still occur if you delete the file after having selected it. In o...

Image Uploading with Classic ASP

Hey I was wondering if there were any way to upload images in ASP? I am working on my school's server and I don't really know what is installed and what isn't I Googled a little and came up with "Persits.Upload.1" I tried to instantiate the object with this line: Set Upload = Server.CreateObject("Persits.Upload.1") It gave me this er...

How to upload files to password protected HTTPS site using CURL?

Hi, How can I upload files to a HTTPS site using CURL? The site is also password protected. What's the command line used to upload for that particular site? ...

How do I save a NamedTemporaryFile into a model FileField in Django?

I created a NamedTemporaryFile, added some content in it and now I want to save it into a model FileField. The problem is that I get a SuspiciousOperation because the tmp directory is not within the FileSystemStorage directory. What's the proper way to do this? ...

Better interface for file downloads and uploads from a web page?

I have what seems like a typical usage scenario for users downloading, editing and uploading a document from a web page. User clicks a link to download a document User edits downloaded file User saves the file User goes back to the web page and uploads the new file with the changes The problem is that downloaded files are typically s...

uploading a file to a website with ruby/rails

I am building a rails app to test our flagship product (also web based). The problem is that part of the testing requires using the production app's web interface to upload files. So what i need to do is have the rails app upload these files to the production application (not rails). Is there a way to have rails post the file to the p...

Background Intelligent Transfer Service In C#

Anyone successfully using this in c# or is there a better alternative to this? Also any good working project that I can look at and get a good feel? most projects i have come across is in C++ and was looking for a C# project ...

Python urllib2 file upload problems

Hello everyone, I'm currently trying to initiate a file upload with urllib2 and the urllib2_file library. Here's my code: import sys import urllib2_file import urllib2 URL='http://aquate.us/upload.php' d = [('uploaded', open(sys.argv[1:]))] req = urllib2.Request(URL, d) u = urllib2.urlopen(req) print u.read() I've placed this .py fi...

Check if ValidationSummary is Valid using OnClientClick

Is there a way to check if a ValidationSummary control has its IsValid property set to true using Javascript in the OnClientClick event of a button? What I'm trying to do is to show a message that says "please wait while your file is uploading" on an upload page, but if I use javascript to show that message, it shows up even when the V...

How to get data sent with WebClient.UploadData

Hello all, i'm trying to upload some data from an ActiveX control to a webpage. The best way for me to do it is in a byte array through WebClient.UploadData. I'm having some trouble to find how i can retrieve my data on pageload... There are plenty of examples on how to send the data, but i am yet to find one that shows how to get the ...

How to upload PHP and MySql into webserver

I am Developing site in vertigoserver, now I need to test the webpage in webserver. I am using the webserver Host-Europe VirtualServer 3.0 Now what are the steps to need to upload the PHP pages, What are the softwares need to upload MySQL queries Any tutorials or suggestions? ...

Flash upload image resize client side

Does anyone got an ideia on how to get client side image resize using flash. Example: Client chooses an image with 1200x800 and before it uploads it flash will turn it into half of it or something. Any thoughts? ...