Hello,
Here is my problem. I have a ticket-tracking system that is not very 'user friendly' but I have a desire for my users to submit 'tickets' to the system without having them to see it.
I got as far as just using a custom HTTP Form and posting to the ticket tracking system. One problem is the 'success/completion' page has a tende...
I've been looking all over Google for an easy, clean way to change the style of the Browse button of the HTML <input type=file> control, but all solutions I've found so far involve hidden controls, absolute positioning of images, jQuery plugins etc. Is there a way to accomplish this using CSS2 that I've missed?
...
I'm just sounding things out about this having looked around for a while and drawn a blank. I'd like to see if this is even possible as so far I can't see a way to do it.
I want to encrypt a file locally (in the browser using existing libraries) before uploading it. Then I'll need to retrieve it and decrypt it before presenting the file...
Is there any limit theoretically on the size of file that can be uploaded by a client using the browser's file upload using HTML form?
I am posing this because Flash has a drawback where the largest file size you can upload is lesser than the size of available RAM. I am wondering if there is any such restrictions with the browsers...
...
Hi!
I'm using file upload in my site. I'm uploading word Document(Doc,Docx). Suddenly, it's not working. It is not getting the filename. It is showing empty!!! My Code is as follows:
<asp:Content ID="Content1" runat="server" ContentPlaceHolderID="ContentPlaceHolder1">
<table width="100%" align="center">
<tr>
<td style="...
I'm having this weird thing happen. My Zend Framework (PHP) web application that I have been developing locally works fine on my computer, but once it's uploaded to the server, it thinks that the uploads directory doesn't exist.
My application has an uploads directory which is a symlink to a directory outside of the application:
#local...
I want to use blockUI plugin for my project. I want to block UI during the uploading images, but i use simple image upload component (non ajax). Does any kind to identify when uploading images is finished and unbock UI?
Thx
...
I have such a form
<form name="" method="post" action="Save" enctype="multipart/form-data">
<div id="dialog" title="Upload files">
<input type="file" id="Image" name="fileUpload" size="23"/>
</div>
<input type="submit" value="Create" />
</form>
how sould i get the get the images bytes in ...
Hi,
I would like to create dynamically the destination of my uploaded files.
But, it seems that the 'upload_to' option is only available for a models, not for forms. So the following code is wrong.
class MyForm(forms.Form):
fichier = forms.FileField(**upload_to='files/%m-%Y/'**)
In the view handling the uploaded file, the ...
Hi!!
This is my partial code of fileupload control page. This is the one I'm using. When uploading the file, the filename, postedfile, everything is empty.I tried ajax file upload too. It is showing the error, "Object reference not set to an instance". Wat is the problem with my coding?
<table>
<tr>
<td align="center">
...
Hi,
is there any way you can get a browser to compress a file before uploading it?
ie from an <input type="file">
Thanks, Jamie
...
I am using the following code to add a button to a page
$("#myDiv").html("<button id='fileUpload'>Upload</button>");
I am then creating an Ajax Upload instance on the button.
var button = $('#fileUpload'), interval;
new AjaxUpload(button, {
action: '/upload.ashx',
name: 'myfile',
onSubmit: function(file, ext) {
bu...
The user will enter a customer number, then select a file to upload, then enter a description and press the save button. However, when I check to see if they've selected a file, it always returns false! I'd like to know why.
Edit: I am now using form with parameter enctype="multipart/form-data" and this is wrapped in an update panel. Bo...
I haven't done much file uploading in Symfony to this point and I'm trying to figure out how to do it in 1.2+
I can get the files submitted to the action and retrieve them via:
$files = $request->getFiles();
How can I get then save the file to the file system? I don't see any documentation besides the old 1.0 depreciated code.
It l...
hi,
I am using the following mootools1.2 form check js.
http://mootools.floor.ch/en/demos/formcheck/
For form check is working fine, its working fine with ajax form post.
My problem is that when i post the form with AJAX with file upload.
Then its not returning me the $_FILES array to PHP side.
If i post the form normally (i.e. with...
When the user selects an item from a dropdownlist containing image names, I would like the FileUpload text box to be filled with a message I program such as "Replace this image with..." How would I do this?
...
I'm looking for a basic web-based file management application. It must have an affordable price, and fairly easy installation would be a plus. ASP.Net / IIS based would be easiest for me to work with. Basically, I'd like it to create a secure web site where myself and a few people can exchange various types of files, etc. I'm looking...
I can upload small size files with no problem,
but fail when the size is more than 1M.
What's the matter?
...
Does anyone know of an image uploader that will work for JSF - something more then the OTB solution of uploading a single file.
Looked at the following: http://demo.aurigma.com/ImageUploader6/BasicDemo/default.aspx which would do the trick but it would still have to be integrated/wrapped into JSF unless I am missing something.
Ideals?...
I read that the HTML5 spec introduced the ability to select multiple files in an upload form. What browsers currently support this? Does Adobe AIR support it?
Bonus question: Is there a JavaScript library that takes advantage of this functionality?
...