Re: error with long form post

2007-10-25 Thread Jon Clausen
Is your form action set to "GET" (or not defined) instead of set to  
"POST"?  If you're getting a "URL too long" error it sounds like your  
form data/text is being passed in the URL string.

Jon

On Oct 25, 2007, at 11:00 AM, William Seiter wrote:

> I get a error that says url too long.  this appears to be a browser  
> error
> and not a cfm or web server error.



~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292072
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: error with long form post

2007-10-25 Thread William Seiter
Greg,

Can you post the actual error message that you are receiving?
Also, what are you doing with the post?  Are you placing it into a database?
Is that database column setup for text fields of this size?

William

-- 
William E. Seiter
 
Have you ever read a book that changed your life?
Go to: www.winninginthemargins.com
Enter passkey: goldengrove
 
Web Developer 
http://William.Seiter.com
-Original Message-
From: Greg benson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 25, 2007 6:48 AM
To: CF-Talk
Subject: error with long form post

Have you ever had a problem with a form post being too long?
 
I am trying to post a form that uses fckeditor to post a large amount of
rich text.  5000+ chars.  I have also tried this with out fck editor and
just a normal textarea and still get the problem.  If the chars is small
then the post works.  I have read that different brioswers have url lenght
limist, but this is in a form post so it shouldnt be in the url. Am I
missing something that is making the form data end up in the url?
 
I get a error that says url too long.  this appears to be a browser error
and not a cfm or web server error.
 
I increased the limit in the cf admin to 1000 MB per post and still had the
same error.  (I set that back to a lower amount after testing)
 
The setup/environment:
 
I am using the post method in the form, cfserver 7.02 enterprise, windows
server 2000, have tried it with IE6 and the latest firefox.  IE wont even
submit the form, and firefox gives the error. Also using a standard submit
buttton, and have tried with a button calling the submit via javascript
 
After the post with a smaller amount of data all the data is in the url of
the address bar.  Is there a way to block that so the form post isnt in the
url? I havent had this problem before.
 
Any feedback would be great
Thanks
Greg




~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292066
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: error with long form post

2007-10-25 Thread Dean Lawrence
Greg,

Make sure your form method is set as "POST" and not "GET". You may
have just inadvertantly set it this way (as I think some editors
insert the "GET" as a default.

Dean

On 10/25/07, Greg benson <[EMAIL PROTECTED]> wrote:
> Have you ever had a problem with a form post being too long?
>
> I am trying to post a form that uses fckeditor to post a large amount of rich 
> text.  5000+ chars.  I have also tried this with out fck editor and just a 
> normal textarea and still get the problem.  If the chars is small then the 
> post works.  I have read that different brioswers have url lenght limist, but 
> this is in a form post so it shouldnt be in the url. Am I missing something 
> that is making the form data end up in the url?
>
> I get a error that says url too long.  this appears to be a browser error and 
> not a cfm or web server error.
>
> I increased the limit in the cf admin to 1000 MB per post and still had the 
> same error.  (I set that back to a lower amount after testing)
>
> The setup/environment:
>
> I am using the post method in the form, cfserver 7.02 enterprise, windows 
> server 2000, have tried it with IE6 and the latest firefox.  IE wont even 
> submit the form, and firefox gives the error. Also using a standard submit 
> buttton, and have tried with a button calling the submit via javascript
>
> After the post with a smaller amount of data all the data is in the url of 
> the address bar.  Is there a way to block that so the form post isnt in the 
> url? I havent had this problem before.
>
> Any feedback would be great
> Thanks
> Greg
>
-- 
__
Dean Lawrence, CIO/Partner
Internet Data Technology
888.GET.IDT1 ext. 701 * fax: 888.438.4381
http://www.idatatech.com/
Corporate Internet Development and Marketing Specialists

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292059
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


error with long form post

2007-10-25 Thread Greg benson
Have you ever had a problem with a form post being too long?
 
I am trying to post a form that uses fckeditor to post a large amount of rich 
text.  5000+ chars.  I have also tried this with out fck editor and just a 
normal textarea and still get the problem.  If the chars is small then the post 
works.  I have read that different brioswers have url lenght limist, but this 
is in a form post so it shouldnt be in the url. Am I missing something that is 
making the form data end up in the url?
 
I get a error that says url too long.  this appears to be a browser error and 
not a cfm or web server error.
 
I increased the limit in the cf admin to 1000 MB per post and still had the 
same error.  (I set that back to a lower amount after testing)
 
The setup/environment:
 
I am using the post method in the form, cfserver 7.02 enterprise, windows 
server 2000, have tried it with IE6 and the latest firefox.  IE wont even 
submit the form, and firefox gives the error. Also using a standard submit 
buttton, and have tried with a button calling the submit via javascript
 
After the post with a smaller amount of data all the data is in the url of the 
address bar.  Is there a way to block that so the form post isnt in the url? I 
havent had this problem before.
 
Any feedback would be great
Thanks
Greg


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292054
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4