upload

Photo uploading via email

I'd like to be able to upload photos via email, which I've seen (and used) on eat.ly and meetups.jquery.com but I haven't been able to work out how to do this, does anyone have a solution? Essentially I believe the process should be something like this: 1) user adds picture to email on mobile device then send to a specific email address...

Web page looking bad after uploading on server

I'd create a web page with jquery and css3 and is looking good on my computer but after upload on server is awful in IE. In any other browser everything is good. Any suggestion why is that? ...

PHP upload filename

I'd like to have my PHP script upload a file with a certain filename in a directory of my choosing. However, the catch is that I need it to exist there immediately upon upload so I can moniter it on my server. I don't want to use a PHP extension or something - this should be very easy to transfer to any PHP setup. So basically: Is there...

How to programatically upload document on Google Docs?

Hi, I building a small application uploading documents on Google Docs. Is there any API like Goolge API (Ver2) for same? Is it possible by using Goolge API (Ver2) ? Thanx ...

Unable to upload large files to Google Docs

I am uploading documents on Google Docs as: DocumentsService myService = new DocumentsService(""); myService.setUserCredentials("[email protected]", password ); DocumentEntry newEntry = myService.UploadDocument(@"C:\Sample.txt", "Sample.txt"); But when I try to upload a file of 3 MB I get an exception: An unhandled exception of...

jQuery: select checkbox when upload field is clicked

I'm working on a CMS. When a user wants to replace an existing thumbnail image, they can upload a replacement, and check a checkbox to certify that they are indeed replacing the image. The checkbox seems necessary because otherwise the form submits a blank value (due to the blank default value of the upload field, a security default for ...

Upload images to fixed positions

Hello! I really need your help. I would like to ask if it is possible using flash to upload multiple images to particular positions. For example, I have a target that is called "people" and when someone uploads an image that is called "people" the image will be placed on that target. I apologize for my English. Thank you in advance. ...

How to increase timeout values in GData.Client (Google API Ver 2) ?

Hi, I am trying to upload a 2MB file on Google Docs. In one of forum reply user suggested me to increase timeout values in GData.Client. But how can i do that? ...

Resumable File Upload in Google API Ver 2

Hi, I am trying to upload large file on Google Docs. And i came across Resumable Upload. But how can i implement it in Google API Ver 2 ? Thanx ...

How do I run this swf for uploading?

I compiled a swf from the source here by path_to_mxmlc.exe path_to_as, but it doesn't pop up any dialog after I drop the swf in a browser. What can be wrong? ...

Silverlight File Upload: is this safe?

I've seen the Silverlight upload sample here referenced multiple times on this site and elsewhere, but I have a question about whether or not it's really safe. Quick review: This code does "chunked" uploading to an ASHX handler. UploadFileChunk() instantiates a WebClient and uses OpenWriteAsync and an OpenWriteCompletedEventHandler to s...

Block upload of executable images (PHP)

It has come to my attention that a user has been trying to create an exploit through avatar image uploads. This was discovered when a user reported to me that they were getting a notice from their Norton Anti-virus saying "HTTP Suspicious Executable Image Download." This warning was referencing the user's avatar image. I don't think t...

Writing direct to disk with php

I would like to create an upload script that doesn't fall under the php upload limit. There might be an occasion where I need to upload a 2GB, or larger file and I don't want to have to change the whole server execution to above 32MB. Is there a way to write direct to disk from php? What method might you propose someone would use to...

File upload-download in its actual format.

hi, I've to make a code to upload/download a file on remote machine. But when i upload the file new line is not saved as well as it automatically inserts some binary characters. Also I'm not able to save the file in its actual format, I've to save it as "filename.ser". I'm using serialization-deserialization concept of java. Thanks in ...

Need to get the uploaded file to my local PC

Hi, I have created a test form which will ask users to enter a name and upload the image file: <html lang="en"> <head> <title>Testing image upload</title> </head> <body> <form action="/services/upload" method="POST" enctype="multipart/form-data"> File Description: <input name='fdesc' type='text'><br> File name: <input ty...

PHP - Ignoring script files from a directory when navigating to them?

Hey there. I'm currently working on a file uploading sript in PHP, but i'm kind of stuck. Users are allowed to upload files such as PHP and JS, but i don't want the scripts to run when a user is trying to download them. Is it possible to block that somehow using htaccess or something? Thanks in advance. ...

I need to upload files in tomcat 5.5.28 in a network unit

Hi Basically i have an aplication deployed over tomcat 5.5.28 , i need put the files that the applicatio upload in a network unit in a shared folder. I know how make the configuration at web.xml level . I've not never upload file in the shared folder over the netwok unit....is it possible....? ...

Ajax -jquery image upload to iFrame resize problem

I'm modifiying an ajax like jquery image uploader from /www.atwebresults.com/php_ajax_image_upload/ to see image on screen in iframe. I need the image to come in at 100% so I can use jquery resize. filename=name&maxSize=9999999999&maxW=200&fullPath=http://localhost/nyb/uploads/&amp;relPath=../uploads/&amp;colorR=255&amp;colorG=255&amp;c...

How to get the Video-ID of a just uploaded Youtube movie

Hi, how can i get the video-id of a just uploaded Youtube movie? I'm using this code: $yt = new Zend_Gdata_YouTube($httpClient); // create a new Zend_Gdata_YouTube_VideoEntry object $myVideoEntry = new Zend_Gdata_YouTube_VideoEntry(); // create a new Zend_Gdata_App_MediaFileSource object $filesource = $yt->newMediaFileSource('mytestm...

How to upload a directory via Grails or Java ?

What is the best way to upload a directory in grails ? I try this code : def upload = { if(request.method == 'POST') { Iterator itr = request.getFileNames(); while(itr.hasNext()) { MultipartFile file = request.getFile(itr.next()); File destination = new File(file.getOriginalFilename()) ...