upload

PHP module uploadprogress installed but can't be detected

Hey all. I've successfully installed the php extension uploadprogress on my 1and1 acct. You can verify at www.mgxvideo.com/info.php. Using code I got from this site, I get the following error: Fatal error: Call to undefined function uploadprogress_get_info() Basically, you can view my code at progress.txt and upload.txt. I've spent ...

Is there much overhead with HTTP uploads?

I have files often uploaded via browser and maybe considering using another method to make uploads faster. When a file is uploaded via browser, is there much overhead due to encoding? Do you know how much? Thanks! ...

javafx question

Have any tutorials about making gui with Adobe Illustrator, step by step, naming conversation? Example for multiple upload Note: i have done a conversation with google. ...

Post file directly from byte array in ASP.net.

How do you replicate a traditional POST form (file post) in code, the end goal is to stream a byte array as the file into the posted form, the example below is the form that I am trying to replicate in code. <form method="POST" action="http://export.writer.zoho.com/remotedoc.im?apikey=[apikey]&amp;output=editor" enctype="multipart/f...

Changing upload_max_filesize on PHP

I'm using PHP 5.3.0 and have encountered something that might be a bug (in which case I'll report it) or might be me - so I'm asking to make sure. When running this code: <?php ini_set('upload_max_filesize', '10M'); echo ini_get('upload_max_filesize'), ", " , ini_get('post_max_size') I end up with: 2M, 8M This is despite my php.in...

Process file with ActiveX on client machine or upload file to server

Hi, I have question about running activex on client machine to process file then send data to the server vs upload file to the server then have server process it. (assuming a text/excel files) which is a better option? performance, security....anything..... thanks ...

Image Upload with Zend_Service_Nirvanix

I can't seem to upload an image using Zend_Service_Nirvanix. Is it even possible? I have a feeling that my problem has something to do with not being able to figure out how to set the UploadHost on the Transfer Service. Any help is greatly appreciated! My deadline is July 16th! Here is my code: $nirvanix = new Zend_Service_Nirvanix(ar...

Basic jQuery plugin for flash-based single file upload?

Hello, I'm looking for a simple jquery plugin to upload a file via flash. What I want: ability for the script to interpret an XML response from the server What I don't want: multiple file upload progress indicator and all the bells & whistles ...

Why doesn't HttpPostedFile perform as advertised and buffer downloads to disk rather than memory?

I am uploading large files to an ASP.NET server using a standard HTML <input> control posting multipart-form data. This is an ASP.NET MVC application. According to MSDN, the HttpPostedFile class buffers to disk out of the box: "Files are uploaded in MIME multipart/form-data format. By default, all requests, including form fiel...

Recommended architecture for handling user image uploads

In the past, I've handled user image uploads in two different ways: Save the image data in a database table, and load it via a PHP script Upload the image, convert it to jpeg, put it in a directory and load it via HTML tags The first option worked fairly well, but I had to keep fairly constraining size restrictions on uploaded images...

jQuery - do you know any server file picker/uploader?

Hello there I'm building an application which requires the user to pick an image file from the images folder on the server. What I am looking for is a popup plugin that when clicking the browse button it will show a list of all files in the specified folder and return the filename of the selected file. Additionally (but not mandatory) i...

can i find out when a webpage was last uploaded?

as the question asks, is there a way of finding when a page was uploaded/updated last. I've got a client who has an 'SEO' company and I've just been asked by client if i've changed the the ftp login details, i haven't but it could be the seo company, want to know if they've updated a page and uploaded it after i did.... thanks in advanc...

Remove spaces in file names apache

1.Hi, I have a internal use only file upload script that uploads the files to a directory. When I upload something from my computer with a spcace in the name i.e example 1.zip it uploads with a space in the name thus killing the link in a email. Is it possible to make apache remove the space when its uploaded or make it a underscore? Th...

How can I abort a Catalyst upload based on Content-Length or MIME-Type?

I've tried to use parse_on_demand as shown in: http://search.cpan.org/~flora/Catalyst-Runtime-5.80007/lib/Catalyst.pm#ON-DEMAND_PARSER However, I can't seem to stop the upload. I'm testing this simply by creating an action that dies immediately, however the browser seems to upload the very large file I've selected before it ever reaches...

photo upload with codeigniter

Hi friends, I know there are many tutorials online, but I could not make them work :( maybe something particularly wrong with my system :/ My Controller localpath is: /localhost/rl/applications/backend/controller/ Controller: function do_upload() { $config['upload_path'] = './uploads/'; $config['allowed_types'] = 'gif|jpg|png'; $...

jQuery upload plugin to work with JSP/Java

Hello, I'm trying to accomplish the following: Upload a file to the application by submitting a form (enctype: multipart/form-data) to a JSP action which handles the rest (including writing the file to the disk, processing and returning some xml data about the upload). Until recently, I was using this plugin: http://valums.com/ajax-upl...

codeigniter photo thumb create and upload...

hi friends... it gives blank screen :/ it uploads first image, thats fine. than it call _create_thumbnail and it gives blank screen at line "$this->image_lib->resize()" :/ any idea what can be the problem? Thanks!! /** * ================================================================== * Upload photo * * Thumb = 210px - 16...

How to upload files larger than 16k to a WCF-service?

To make a long story short: Making a web application Each user profile contains exactly one profile image, which is stored in the database The bottom layer uses ADO.NET entity framework for data access and relationships between classes Inserting images into the database on the bottom data access layer of the application works fine On t...

How can I select and upload multiple files with HTML and PHP, using HTTP POST?

I have experience doing this with single file uploads using <input type="file">. However, I am having trouble doing uploading more than one at a time. For example, I'd like to be able to select a series of images, then upload them to the server, all at once. It would be great to use a single file input control, if possible. Does anyo...

File uploading : What should be the files name to save ?

I am going to add file upload control to my ASP.NET 2.0 web page so that users can upload files.Files will be stored in the server in the folder with the name as of the user. I want to know what is the best option to name the files when saving to server. Needs to consider Security,Performance,Flexibility to handle files etc... .If i mis...