upload

Coldfusion forms and image upload with cffile

I'm learning some Coldfusion, and I'm having trouble with this small form based application I'm building for a coworker. Here is the first page: http://pastebin.com/aLPYHPsF As you can see, what I want to do is get the user input and take that input and output it to html. The text stuff works fine, but I can't get the image to upload! ...

Error uploading in high speed internet connection?

Hi, We have a site with video upload option. we are using slick upload to handle the upload process. When i try to upload a sample file on low speed internet connection[Cell modem], which is very slow, the upload took an hour, but it completed successfully. I did the same with a high speed internet connection, but its failed. I tried ...

How to upload image to facebook album using C/C++/C#?

Given a picture file, how do I programmatically upload it to one of my Facebook albums? If possible, I would like to do this using native MFC code (client side). Otherwise I'll stick to C#. I've seen that Facebook comes with different SDKs, but I'm not sure which technique is best suited. Please point me in the right direction, or bett...

uploadprogress_get_info and large files

It seems that the PECL package "uploadprogress" works on files less then 10MB, But Anything greater than 10MB, it fails miserably. I've changed my php.ini to support larger upload, but it just doesn't return anything! Any Help on this? ...

Uploading Files in ASP.NET

My web form creates Input file controls dynamically using javascript: var input = document.createElement("input"); input.setAttribute("type", "file"); div.appendChild(input); How do I get the "PostedFile" from these controls on the server side? ...

Google app engine images API - get image size

How can I get the size of an image transformed with the app engine images API? Note: I mean the size in bytes, not the dimensions. ...

Camtasia html page Video does not play when uploaded to Server

Hi All, The graphic designer created a camtasia video yesterday and im just trying to upload it to our production server. When i navigate to the html page the video and screenshot of the video show without issue. When i click play the media bar shows up down the bottom but nothing will play. Any ideas? Thanks ...

My php site was hacked by codes uploaded as image..?!

Yesterday my site was comprised. The attacker changes the index.php file to their own (with all their glory messages and greet). I've notified the hosting company about this (we are running on a dedicated server), and on my part, I'm trying to fix anything that seems to be the cause, cause I'm still unable to point how exactly did our se...

How to upload a file via ftp in PHP?

I have a form with html browse type and a submit button. I chose a file using browse button and submit the form. On form submission following code is called. $conn_id="myid"; $conn_id = ftp_connect ( 'server' ); $ftp_user_name="username"; $ftp_user_pass="password"; // login with username and password $login_result = ftp_login ( $conn_i...

Uploading test iPhone/iPod application from iTunes ?

Hi, is there a way to upload application to registered development device from Windows PC with iTunes ? My boss want to see current beta version on one development iPod touch, but he uses Windows 7 and iTunes ... no OS X, no XCode. Is it possible ? 10x! ...

Can I Upload video or audio from iPhone to web server?

I'm going to develop an application for uploading video & audio from iPhone to web server.I know how to upload to web server by HTTP Post or FTP,but I'm not sure whether I can access the audio files in the specific path like 【/private /var/ mobile/Media /iphone video Recorder】 on iPhone bacause Apple will rejects request that attemp to a...

Pass file name from file upload control to filestream

hi I use the code SqlConnection conn = new SqlConnection("Data Source=DDPRO8-WIN7X86\\SQLEXPRESS;Initial Catalog=mp3bytes;Persist Security Info=True;Integrated security=true; User ID=; Password=;"); SqlCommand cmd = null; SqlParameter param = null; cmd = new SqlCommand(" INSERT INTO mp3_bytes (songs) " + " Values (@songs...

AJAX Submit Form.. data not sending

Hi, I have been battling with this piece of code for literally days now... Would appreciate any help The script calls the php file without a problem when the submit key is hit. However, it doesnt post the form data with it. The HTML form <form id="image_form" name="image_form" method="POST" action="" ...

Uploading IPhone App For Review

Hi All, Im just at the step of using the application loader to upload my iphone app to the app store. My question is (and im sure its a dumb question, and im sorry for that) when i get to the step of the application loader where it is asking to choose a file to upload, WHAT FILE DO I NEED TO SELECT? Thanks in advance ...

PHP Upload File Validation

Hello All, Hope you're having great day/night. I'm creating file upload script and I'm looking for the best techniques and practices to validate uploaded files. Allowed extensions are: $allowed_extensions = array('gif','jpg','png','swf','doc','docx','pdf','zip','rar','rtf','psd'); Here's the list of what I'm doing. Checking file ...

Can Html5 drap&drop interact with RichFaces fileUpload component?

Hi, My App used JBoss Seam, RichFaces. In the upload photo page, I want to use "drag&drop" a photo from desktop. I have tried with html5 but don't not find a way to interact with richfaces upload file control. Have a way to automatic start richface uploadfile on "ondrop" event in html5? Thanks, Huy ...

Simplest way to upload images

Hello, what is the simplest way to upload multi images (like 30-50) at once using PHP to process them? Do you know any js/ajax script? Or it possible to use java uploader like on facebook? I don't need images to use them on WYSIWYG editor, but to upload images per album. so all at once ...

Uploading images with PHP and hitting the script memory limit.

I am trying to upload a JPG image using a PHP script, but the image is keeps causing my script to time out and die giving this error: Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2136 bytes) in image.php on line 38 How can I prevent the upload from taking place if the image is too big, or have thi...

ASP.NET Connection Reset on Upload

Hi all, I'm running into a problem with my app (ASP.NET MVC 2) where I can't upload files (images in my case). I've changed the web.config to accept up to 20MB, and I'm trying to upload a file that's only 3MB. The app itself has two ways to upload. The initial upload which starts a Gallery and then an additional upload to append to a G...

Max file number can php upload at same time

Hello I am using the tag for uploading multiple files with php. I notice that if i choose more than 20 files php uploads only the first 20 files.Is there a way to expand this limit? ...