Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
4answers
1k views

Why not always use enctype=“multipart/form-data”?

When building HTML forms why do we not always use enctype="multipart/form-data"?
4
votes
3answers
716 views

html form enctype

In HTML forms containg file uploads, enctype="multipart/form-data" attribute has to be set. This much I know. But why? What exactly does it change? How does it differ from ...
2
votes
2answers
66 views

Sending special characters in HTML form

I have an input field (which is filled automatically) with the format name <myemail@host.com>. I gave the form enctype="application/x-www-form-urlencoded", but when I retrieve it in PHP, it ...
2
votes
1answer
219 views

AesCryptoServiceProvider alternate in .Net 2.0

What id the alternate of AesCryptoServiceProvider (that existed in system.Core -.net 4-) in .net 2.0??
2
votes
8answers
1k views

Firefox Upload Form Issue

I've created an upload script in php that takes a file, resizes it, and creates a cropped square thumbnail. The script itself seems to work fine. However, when I tried to upload an image through ...
2
votes
1answer
393 views

About multipart/form-data?

Is there another multipart/form-data like enctype but not form-data? EDIT Especially,what others are used in web applications?
1
vote
1answer
33 views

Is it better to use htmlentities when sending html emails with special characters?

I have phpmailer setup to send emails from the contact form. I have the page set to UTF-8 character encoding and specify the email encoding as UTF-8 as well within PHPMailer. This all works fine and ...
1
vote
1answer
81 views

Python poster Content-Length error

I was trying to send image with poster module. I followed the example, but it doesn't work for me My code: from poster.encode import multipart_encode from poster.streaminghttp import ...
1
vote
1answer
67 views

Behaviour change when enctype attribute missing on <form> tag

I recently switched from a VPS server to a dedicated server. For some reason, on a custom CMS I was working on, all the forms stopped working. Instead of processing the block of execution under ...
1
vote
3answers
5k views

is application/x-www-form-urlencoded default for html form?

I found out that HTML form supports only two enctype types. They are application/x-www-form-urlencoded and multipart/form-data. I understand that I use multipart/form-data when I need to upload a ...
1
vote
2answers
499 views

How to post a HTML form using Javascript that has both “application/x-www-form-urlencoded” and “charset=UTF-8” in the Content-Type header

I need to be able to specify using Javascript how to post a form that contains both the enctype as "application/x-www-form-urlencoded" and charset as "charset=UTF-8" in the Content-Type header. Any ...
1
vote
1answer
638 views

cffile upload location

In CF7, can anyone tell me if there's a way around the file being automatically uploaded to the /tmp/ folder before being moved to a destination location I provide? I'm trying to use cffile in a ...
1
vote
3answers
412 views

ColdFusion/Linux multipart/form-data encoding file upload issue

I'm posting a form in ColdFusion on Linux. Form has a file field. CF requires the enctype="multipart/form-data" attribute on the form tag. If I have this, I get a "JRun Servlet Error - 500 No such ...
0
votes
0answers
51 views

jQuery form plugin fails to catch response 404, 500 etc. if form enctype set to “multipart/data”

I'm trying to catch server errors (400, 404, 500) upon submitting my form via jQuery AJAX form plugin. (BTW I'm not trying to upload anything) After reading carefully I found out that "statusCode" ...
0
votes
0answers
50 views

enctype multipart form-data input-field Access

I have a JSP-Page with a form with enctype="multipart form-data: <form enctype="multipart/form-data" name="upLoadForm" method="post" action="aktionFileUpload.do"> <input type="file" ...
0
votes
0answers
38 views

Django form enctype append in view

Is there any way to append enctype=multipart/form-data to form in view? Reason is that i massive import documents from xml file, which contains link to image. In view I have such code post_data = ...
0
votes
1answer
75 views

Why isn't my form being submitted?

I've got a simple HTML form, thus: <html> <head></head> <body> <form action="upload_file.php" method="post" enctype="multipart/form-data"> <input ...
0
votes
1answer
332 views

url encoding, Form encoding and mailto: encoding

I am a little bit confused about the whole encoding issues related to HTML. I am not refering to the charset in the headers or encoding in the XML prologue. That I get. Lets me explain. When the ...
0
votes
3answers
142 views

html page hanging when posting file upload

I'm trying to add a file upload script in php to a website I'm designing. I've used an online example (I know it's not secure and I plan on making it secure, I just want the basic functionality ...
0
votes
3answers
785 views

POST to PHP with enctype='multipart/form-data'

NOTE: The issue was resolved, I was apparently editing the wrong file. Silly me. Thanks I am using an image upload script that posts file to the a PHP script that then saves the file to the server. ...
0
votes
2answers
197 views

Does Dreamweaver add enctype=“text/plain” to forms automatically?

I have some forms that post to a CGI script. I set them up and they work perfectly on all browsers. Then I leave them alone. A few days later, after designers have updated the page, the forms no ...
0
votes
1answer
87 views

Enctype not working on MAC browsers

This is strange, but I have a web form in one of my sites that uploads files correctly on Windows browsers but not on Mac browsers and I'm pretty confident it has to do with the Enctype. I've ...
0
votes
2answers
3k views

HTML forms: issues combining charset with enctype in Firefox

I have a Web site with a message board. The board lets people post messages and include attachments. I had a problem where my site was hiccuping every time someone wrote a post with non-Unicode ...
0
votes
3answers
789 views

How to set session variable

I want to set the current form object as session parameter before submitting the form.Is it possible? <html> <head> Title </head> <body> <FORM method="test" name="test" ...