0
votes
1answer
33 views

POST text data as file in form

Is it possible to POST some XML data i have as string as file input type from a html form. The case is i have a form like form action="target.php" method="post" enctype="multipart/form-data"> ...
0
votes
1answer
29 views

php bool statement to check if file has been uploaded is not working properly

I have a simple php page where you add a contact and you have the option of giving them a picture. If no picture is uploaded then the contact will be given a default picture already on the server. ...
0
votes
1answer
58 views

Forcing proper charset encoding of the filename of uploaded file in Play 2.0.4

I have annoying problem with non-latin characters in names of uploaded files. I'm using upload method pretty similar as in the Play's doc (extended by DB operations) and while running dist vrsion on ...
0
votes
1answer
53 views

Invalid byte 1 of 1-byte UTF-8 sequence

how to solve this issue : com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException: Invalid byte 1 of 1-byte UTF-8 sequence. I get this exception when uploading the file to ...
1
vote
1answer
241 views

Upload File as String to JavaScript Variable

Is there any way for a client to upload a file in an HTML form (e.g. .txt or .csv formats) to a JavaScript variable as a string using only JavaScript? If so, could you provide a simple example? I ...
1
vote
1answer
89 views

I need to get the path instead of selecting file name in my browse dialog box to save my file

This is my code. This will take only the filename. I want my browse dialog to select the path location to save my file. <form name="uploadFile" method="POST" enctype="multipart/form-data"> ...
1
vote
2answers
79 views

Storing Form element ID in variable?

I have an HTML form that contains the following code: <input id="image_22" name="images[]" type="file" /> <input id="image_8" name="images[]" type="file" /> I'd like to be able to ...
0
votes
0answers
107 views

Bad gateway error when uploading too large file in html form

I have an html/php form with a file upload field. After uploading it is supposed to be handled by php and mysql, but it never gets that far in the process. For a file of size 300 kB it works as ...
0
votes
0answers
114 views

android browser, file selection dialog not showing

I open a popup window in Android 2.3.4 factory browser with this JS code: window.open('pop.html', 'popped', 'width=400, height=300') And in the popup html put a file field in a form: <input ...
0
votes
1answer
171 views

PHP File Uploader leading to “Page not Found”

I've put together an HTML Form for a PHP File Uploader but when I use the form and attempt to upload the file I get sent to a "Page not Found" and the file never ends up where it's supposed to on my ...
0
votes
0answers
286 views

GoDaddy Apache Shared Hosting Using PHP Script to upload files

I am trying to setup a HTML form backed with PHP script to allow the users to upload their files onto the server. <?php $path1 = "upload/" . $HTTP_POST_FILES['ufile']['name'][0]; $path2 = ...
0
votes
1answer
341 views

Uploading files to amazon S3 and other fields to local server using Django

I'm writing a project in Django that has user uploaded images related to products, so my product model is something like: class Product(models.Model): name = models.CharField(max_length=128) ...
0
votes
0answers
150 views

HTML form uploading file

I have been developing an application that allows a user to upload files to the server. I had working forms until recently, when suddenly they stopped working. All the forms that do not work any ...
1
vote
1answer
130 views

Add new file extension with Javascript without removing old one

There has been few similar questions (here and here) but not exactly what I want and I haven't been able to combine the codes. I have an upload form and if user uploads ZIP or RAR file, I want to ...
0
votes
1answer
312 views

How can I pass data to the success callback of an ExtJS-based AJAX file upload?

So, I've read a lot about using ExtJS's fileuploadfield to submit a form via an IFRAME. I understand that I'm supposed to reply with a JSON object indicating success or failure; fine. What I want to ...
0
votes
1answer
269 views

getting an error page, uploading a file worked last week and I have made no changes

here is my JSF/HTML page <?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ...
2
votes
3answers
927 views

Weird format of $_FILES array when having multiple fields

I have a form that has some fields like this: <input type="file" name="images[]" /> <input type="file" name="images[]" /> <input type="file" name="images[]" /> <input type="file" ...
1
vote
1answer
88 views

HTTP file upload: Can I rely on the browser always sending a file name?

According to this great article about HTTP uploads by Scott Hanselman, the browser typically sends a file name with the file's contents. Can I rely on the file name always being transmitted or do I ...
3
votes
3answers
16k views

Asynchronous file upload (AJAX file upload) using jsp and javascript

I am planning on having asynchronous file uploads. That is the file should be uploaded to a jsp or servlet and return something to the html/jsp page without reloading the original page. It should ...