upload

Which location to save uploaded files

hello! I am using php and i have written codes to allow a user upload a file. For testing purposes, i have saved the file to D:/final/temp/test.xls. Then i generate another file and save it to the same location. This file can be downloaded by the user. But if an actual user would be using my application, where should the location point ...

PHP upload to GoDaddy hosted site

I'm relatively new to both hosting and PHP, so apologies for (probably) missing the obvious, but… I built a page which would allow file uploads to my site, following the example laid out here: W3Schools PHP upload exercise Through the File Manage on my Godaddy hosting, I created a folder named ’upload’ so that the file would land ther...

Actionscript multiple file upload, with parameter passing is not working

Hey everyone, First off, I am very bad at flash/actionscript, it is not my main programming language. I have created my own file upload flash app that has been working great for me up until this point. It uses PHP to upload the files and sends back a status message which gets displayed in a status box to the user. Now I have run into ...

How to upload files from a VS 2008 C# desktop application to a Windows server 2008/IIS 7

I am wondering what is the best approach/methods/technology to implement a C# desktop application that can upload files to a server? I was thinking of using a HttpWebRequest in the desktop application to send the files and then a webservice to handle the files on the server. I need the server to check for user credentials and I need to...

Efficient reliable incremental HTTP multi-file (or whole directory) upload software

Imagine you have a web site that you want to send a lot of data. Say 40 files totaling the equivalence of 2 hours of upload bandwidth. You expect to have 3 connection losses along the way (think: mobile data connection, WLAN vs. microwave). You can't be bothered to retry again and again. This should be automated. Interruptions should not...

Convert uploaded video to Silverlight WMV

Can one of you smarties point me to some beginner content for converting an uploaded video to WMV? I've got a file upload, and database entry all done, but I'm finding information / tutorials on Windows Media Encoder 9 scarce. ...

asp.net image upload control (bonus - allows users to crop image before saving)

We have a scenario where we would like to allow our users to upload images to the site. We are running on ASP.Net. A quick search did not result in anything good. It would be great if the control is free/open source but we do not mind paying a little bit. ...

Upload image thumbnail dynamically in background thread iphone

Hi All, I want to upload thumbnail in my table view dynamically. I am not getting the images in a proper way as App Store's App Table does. How to do that? Thanks in advance ...

PHP - upload.class image and $_FILES

Hello, I'm using class.upload.php to upload pictures onto the server. Here is my form: <form action="<?="http://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];?&gt;" method="post" enctype="multipart/form-data"> <table style="width: 100%; padding-top: 20px;"> <tr> <td>Image file:</td> <td><input type="file" name=...

How to prevent a specific directory from running Php, Html, and Javascript languages?

Hi, Let's say i have an image uploader script, i want to prevent the upload directory from executing Php or even html by only showing it as plain text, i've seen this trick in many websites but i don't know how they do it. Briefly, if i upload evil.php to that directory, and i try to access it i will only see a plain text source , No ht...

Where are my $_FILES? Ajax Uploading

I've built a form to upload images, and processed with Prototype/PHP. $('image_upload').observe('submit', function() { var params = $H(); params.set('name', $('image_title').value); params.set('from', $('from_who').value); params.set('upload_file', $('upload_file').value); new Ajax.Request('/files/upload_proce...

swfupload + upload.class in the same php project

Hi, i have a project with upload.class from php and swfupload. Im also using zend framework, so i init upload.class in the bootstrap file. Both uploads are working well, but when i init the upload.class, through a require once, the swfupload stop working. When i try to upload an image, appears the message error 500... can´t They work...

HTML Upload Form will only upload files found in the directory of the PHP file.

I have an image uploader that uses the imgur.com API and jQuery's .ajax() function to upload images to their servers. However, if I browse for an image using the <input type="file"/> element of the form, it will only be successful in uploading an image if the image file is found in the same directory as the page.php file that the form is...

Upload file with POST method on Qt4

Hello! I'm looking for a basic code samples of how to upload files to server with HTTP POST method on Qt. My task: I have simple Qt program and I need to select any image file from the local host and upload it to the server. The selection part and GUI is simple and I have already done it, but with POST uploading I'm confused. In additi...

Multiple File Upload asp.net mvc

is it possible to be able Multiple select files when make browse file? any solution , may be flash. so on form one field type="file" but with it can be upload more then one file i know that can be add on form more then one file field ...

Django upload failing on request data read error

Hi All, I've got a Django app that accepts uploads from jQuery uploadify, a jQ plugin that uses flash to upload files and give a progress bar. Files under about 150k work, but bigger files always fail and almost always at around 192k (that's 3 chunks) completed, sometimes at around 160k. The Exception I get is below. exceptions.IOError...

Upload an image using class.upload.php via AJAX, display image in form using jQuery

I am using class.upload.php to handle an image upload from a form that submits employee details to a MySQL database. class.upload.php does EXACTLY what I want it to do, resize the image and rename it - what I am now trying to accomplish is to upload via Ajax after the user selects the file and then display it in the form while they conti...

Upload Excel or CSV file to MySQL with PHP

I'm looking to allow users to upload an Excel or CSV file to MySQL for a contact management system. Need to be able to allow users to map their columns so that they are imported into the correct column in the table. Anyone know of a good site or tutorial on this? ...

find out the connected wifi duration,upload and download speed using andorid 1.5api?

Hi, In my application,need to display the upload and download speed and duration of the connected network(wifi).I searched in api found only one method wifiinfo.getLinkSpeed() and a field LINK_SPEED_UNITS.Please give me guidance or sample code. Regards, Rajendar ...

jQuery recursive function to upload many files while giving the user some feedback

Hi guys, I'm trying to write a jQuery function to let users upload many files at once. Here's the function I thought to give the user some feedback about the upload process progress. function uploadFiles(numbersOfFiles, start) { $("#info").html(start + " files uploaded"); $.post('upload.php', { start: start }, function (d...