file-upload

Uploading Difficulties to Discountasp.net, new at C#

I've been trying to upload a new page to a site hosted on a DiscountASPnet server, but have been having trouble. I have been working on this site in the development server for a while now. it was already built and hosted when I got my hands on it, and I haven't worked in ASP.net before. First I uploaded the page itself, the code behind, ...

What's the best ruby gem for image uploads?

Hey everyone, I've been dealing with Rails 3, Paperclip and Windows 7 for a few nights now and don't feel like I'm actually getting anywhere. I've hit config issue after config issue and it's a bit of a nightmare. Can anyone recommend any other gems that will accomplish the same thing? Thanks, Brandon ...

PHP - wysiwyg style image upload?

I am rolling my own blog framework, mainly to learn how everything works. I would like to be able to upload an image while typing my post (and be able to insert the image's tag without refreshing the page). Basically, the goal is to be able to embed an image with ease similar to that of a wysiwyg editor. What is a step in the right d...

how to save uploaded file in another server?

I have tow servers for my web site. first, for database and php files. the second, for save useres' uploaded files. So, if I uploade a file in server-1 xxx.com. how could i save it in server-2 yyy.com?? ...

Security Exception when Uploading From Silverlight to PHP

I am using the official Microsoft example and this example as the basis for my code to upload a file from Silverlight to a PHP script. I am calling **HttpWebRequest.BeginGetRequestStream()**, writing the file over a file stream, and then calling **HttpWebRequest.BeginGetResponse()** to get the response. When I call HttpWebResponse.End...

php script for uploading mp3 files wont play ball

After looking around on Google for some time, I'm stuck =/ Could someone help me out please? Seems to work with most files I try, except .mp3 files. The (X)HTML <html> <body> <form enctype="multipart/form-data" action="upload.php" method="post"> <input type="hidden" name="MAX_FILE_SIZE" value="71680000" /> Choose a file to u...

PHP doesn't recognize POST Upload done with HttpClient

Java Code: HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost( "http://localhost/SC/upload.php"); FileBody bin = new FileBody(f3); MultipartEntity reqEntity = new MultipartEntity(); reqEntity.addPart("bin", bin); httppost.setEntity(req...

Problems with form and POST

Hello, i am facing problems with my form, i wrote a app in Python3.1 and when i make a GET or a POST via AJAX works pefectly but when i' ve try to do the same thing with the form-way the environ['wsgi.input'] give me this: -----------------------------4974611941277794205934495116--\r in the first time i think this was because the file...

animated Photo upload control

Hi there, would u recommend the best ajax upload photo control for asp.net? i need to show the progress bar while uploading the photo and limit the file extensions to jpeg, gif, and ico only. been looking into Ajax upload jquery and multiple file upload plugin but they're not what i'm after. thanks ...

Remain path of FileUpload control after postback....

I have a FileUpload control and a DropDownlist control in an UpdatePanel and when user select a file for the FileUpload control (no upload yet), in the meanwhile the user select an option from the DropDownList control which will cause a postback! Once the page postback, the path selected in the FileUpload control will gone. How can i rem...

Using jQuery Form Plugin not working

I've been trying to figure out how to work this jQuery Form plugin to upload a file, but it doesn't seen to do what I need it to do. I have the jQuery: $('.upload-file').click(function() { $('#htmlForm').ajaxForm({ // target identifies the element(s) to update with the server response target: '#htmlExampleTarge...

1GB file upload using php

Hi, I am trying to upload a file of 1GB size using php script and it works perfectly if file size is less than 20MB, but when I increase the file size than after pressing upload button on website, it uploads the file (I guess as it takes few minutes) and after that, instead to execute upload.php, my firefox asks me to download upload.ph...

Simple File Upload, Facing Problem With Writing File (Also Weird $_FILES problem)

The file I'm uploading is either not getting written into the temporary folder or is it not getting processed by PHP properly.... Enctype - Check Name, Method - Check Form (syntax) - Check (Take it from me that the data is being passed by the form to the PHP) The PHP code - 0) { echo "Return Code: " . $_FILES["file"]["error"] ....

Silverlight Http Post to upload images

I have been trying to perform an HTTP Post request to upload an image in a silverlight application for a windows phone 7 application. The sample codes online do not get me the desired response from the API. Could anyone please provide a working code which does this? By desired response I mean that the API responds saying that the upload...

Get HttpRequest with a Web Method ASP.NET

I have a page web method, and I need to get access to the headers, and particularly the uploaded files. Is this possible? Can a web method receive a file? If not, what would you recommend to upload files without post back? I am using the jQuery forms library that has support for this (and I have had it working with Django), however, I a...

Problem saving uploaded files in Python3

Hello, i control the problem of the data what is uploaded by the POST method, in the web if the file is a text theres no problem but the trouble comes when it's an enconded file as a Picture or other what the when the system insert the data into the file well it doesn 't encoded in the write way i will put all the code, from the area wha...

Flash Uploader not Calling upload php file.

Hello everyone I'm trying to make a flash uploader. The issue however that has me stumped the uploader doesn't seem to be calling the php file. I'm watching in httpfox and its dosen't seem to be calling any file. Yet it appears to be uploading. It never actually uploads anything but it acts normally I don't get any errors I check the...

Warnings in FileReference - can not find the cause

I'm trying to make a loader of a few photos (use FileReference). I get the warnings, but I do not know the reason for their appearance. warning: unable to bind to property 'fr' on class 'Object' (class is not an IEventDispatcher) warning: unable to bind to property 'name' on class 'flash.net::FileReference' warning: unable to bind to pr...

Amazon s3 signed url upload from java.

Hello, sry for my English, i'm bad at it. My problem is: I generate signed Upload link to amazon signedUrl = StorageConnection.getInstance().getS3Service().createSignedPutUrl(buck_name, KeyID, null, expiryDate); And i want to upload at this from other program, zipping file at stream: private void put(String link, InputStream stream) ...

Upload files asynchronously (AJAX) with HTTP/1.1 PUT method, why not ?

Uploading files via PUT method, even binary or text, via a "normal web browser" is possible. Why many people are just saying, that is not possible ? Sample code with jQuery and PHP. $(document).ready(function() { $("#uploadbutton").click(function() { var filename = $("#file").val(); $.ajax({ type: "PUT", ...