PHWinfo banniere

Titres
PORTAIL ANNUAIRE ARTICLES COMPARATEUR HÉBERGEURS DEVIS FORUMS RÉDUCTEUR D'URL
Précédent   PHWinfo > Forums Hébergement > Forum Hébergement serveur > comp.info.servers.unix > Is there a limit with forms POSTing?
S'inscrire FAQ Membres Recherche Messages du jour Marquer les forums comme lus
comp.info.servers.unix Web servers for UNIX platforms.

Is there a limit with forms POSTing?

Réponse
 
LinkBack Outils de la discussion
Vieux 11/03/2005, 09h24   #1
Randell D.
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Is there a limit with forms POSTing?


Folks,

Sorry for the cross post into multiple newsgroups on this, but html
forms processing is supported across all three groups so I was hoping
someone might know.

I did a check with Google and found dated 1996 and 1997... This is a bit
too old for me to rely on...

Thus... Does anyone know if there is a limit when POSTing? I think a
FORM METHOD of GET has a standards limit of 1024 though most browsers
ignore this limit... However I can't recall a limit when posting data.

Thanks... Replies please via the newsgroup so all can learn...

randelld
  Réponse avec citation
Vieux 11/03/2005, 09h40   #2
Matthew Lock
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?

Servers can be configured to have limits on http posts. But they vary
from server to server. Typically it's quite a bit more than get though.

  Réponse avec citation
Vieux 11/03/2005, 09h40   #3
Matthew Lock
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?

Servers can be configured to have limits on http posts. But they vary
from server to server. Typically it's quite a bit more than get though.

  Réponse avec citation
Vieux 11/03/2005, 09h48   #4
Brent Palmer
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?

Because of the variable limits you might be better off using session vars
for storing info.
Brent Palmer.



"Matthew Lock" <lockster@gmail.com> wrote in message
news:1110534047.000026.96790@g14g2000cwa.googlegro ups.com...
> Servers can be configured to have limits on http posts. But they vary
> from server to server. Typically it's quite a bit more than get though.
>



  Réponse avec citation
Vieux 11/03/2005, 09h48   #5
Brent Palmer
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?

Because of the variable limits you might be better off using session vars
for storing info.
Brent Palmer.



"Matthew Lock" <lockster@gmail.com> wrote in message
news:1110534047.000026.96790@g14g2000cwa.googlegro ups.com...
> Servers can be configured to have limits on http posts. But they vary
> from server to server. Typically it's quite a bit more than get though.
>



  Réponse avec citation
Vieux 11/03/2005, 09h57   #6
Duncan Booth
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?

Randell D. wrote:

>
> Thus... Does anyone know if there is a limit when POSTing? I think a
> FORM METHOD of GET has a standards limit of 1024 though most browsers
> ignore this limit... However I can't recall a limit when posting data.
>


No official limit, although you the server will probably impose limits on
the size it is willing to accept. Both Apache and IIS have configuration
parameters which can be used to limit the maximum size of a request.

It is a good idea to set a maximum size on your server to prevent DoS
attacks attempting to upload multi-gigabyte files (unless you actually need
to upload very large files!)

See:
http://httpd.apache.org/docs/mod/cor...mitrequestbody

for relevant Apache directives on maximum request size and also limits on
the number and size of fields.

  Réponse avec citation
Vieux 11/03/2005, 09h57   #7
Duncan Booth
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?

Randell D. wrote:

>
> Thus... Does anyone know if there is a limit when POSTing? I think a
> FORM METHOD of GET has a standards limit of 1024 though most browsers
> ignore this limit... However I can't recall a limit when posting data.
>


No official limit, although you the server will probably impose limits on
the size it is willing to accept. Both Apache and IIS have configuration
parameters which can be used to limit the maximum size of a request.

It is a good idea to set a maximum size on your server to prevent DoS
attacks attempting to upload multi-gigabyte files (unless you actually need
to upload very large files!)

See:
http://httpd.apache.org/docs/mod/cor...mitrequestbody

for relevant Apache directives on maximum request size and also limits on
the number and size of fields.

  Réponse avec citation
Vieux 11/03/2005, 11h46   #8
John Dunlop
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?

Randell D. wrote:

> Thus... Does anyone know if there is a limit when POSTing? I think a
> FORM METHOD of GET has a standards limit of 1024 though most browsers
> ignore this limit... However I can't recall a limit when posting data.


Neither POST nor GET is limited by the spec, but there are
implementation-specific limits for both.

--
Jock
  Réponse avec citation
Vieux 11/03/2005, 11h46   #9
John Dunlop
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?

Randell D. wrote:

> Thus... Does anyone know if there is a limit when POSTing? I think a
> FORM METHOD of GET has a standards limit of 1024 though most browsers
> ignore this limit... However I can't recall a limit when posting data.


Neither POST nor GET is limited by the spec, but there are
implementation-specific limits for both.

--
Jock
  Réponse avec citation
Vieux 11/03/2005, 17h30   #10
bruce_brodinsky@glic.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?

Theoretically, there's no limit, but I most definitely encountered a
limit at my shop. And it wasn't even that large of a limit, it
surprised me. I forget the numbers though. I guess this limit is
necessary to discourage hackers.

  Réponse avec citation
Vieux 11/03/2005, 17h30   #11
bruce_brodinsky@glic.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?

Theoretically, there's no limit, but I most definitely encountered a
limit at my shop. And it wasn't even that large of a limit, it
surprised me. I forget the numbers though. I guess this limit is
necessary to discourage hackers.

  Réponse avec citation
Vieux 14/03/2005, 01h16   #12
Randell D.
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?

Brent Palmer wrote:
> Because of the variable limits you might be better off using session vars
> for storing info.
> Brent Palmer.
>
>
>
> "Matthew Lock" <lockster@gmail.com> wrote in message
> news:1110534047.000026.96790@g14g2000cwa.googlegro ups.com...
>
>>Servers can be configured to have limits on http posts. But they vary
>>from server to server. Typically it's quite a bit more than get though.
>>

>
>
>


You've made an incorrect assumption... I'm not storing info - I'm
posting what could be a rather large <TEXTAREA> value - a few thousand
characters... perhaps (but unlikely) to hit the hundred thousand
characters... Its a one way transaction...

Thanks for replying...
  Réponse avec citation
Vieux 14/03/2005, 01h16   #13
Randell D.
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?

Brent Palmer wrote:
> Because of the variable limits you might be better off using session vars
> for storing info.
> Brent Palmer.
>
>
>
> "Matthew Lock" <lockster@gmail.com> wrote in message
> news:1110534047.000026.96790@g14g2000cwa.googlegro ups.com...
>
>>Servers can be configured to have limits on http posts. But they vary
>>from server to server. Typically it's quite a bit more than get though.
>>

>
>
>


You've made an incorrect assumption... I'm not storing info - I'm
posting what could be a rather large <TEXTAREA> value - a few thousand
characters... perhaps (but unlikely) to hit the hundred thousand
characters... Its a one way transaction...

Thanks for replying...
  Réponse avec citation
Vieux 14/03/2005, 01h17   #14
Randell D.
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?


  Réponse avec citation
Vieux 14/03/2005, 01h17   #15
Randell D.
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?

Duncan Booth wrote:

> Randell D. wrote:
>
>
>>Thus... Does anyone know if there is a limit when POSTing? I think a
>>FORM METHOD of GET has a standards limit of 1024 though most browsers
>>ignore this limit... However I can't recall a limit when posting data.
>>

>
>
> No official limit, although you the server will probably impose limits on
> the size it is willing to accept. Both Apache and IIS have configuration
> parameters which can be used to limit the maximum size of a request.
>
> It is a good idea to set a maximum size on your server to prevent DoS
> attacks attempting to upload multi-gigabyte files (unless you actually need
> to upload very large files!)
>
> See:
> http://httpd.apache.org/docs/mod/cor...mitrequestbody
>
> for relevant Apache directives on maximum request size and also limits on
> the number and size of fields.
>


Thanks - this is just the info I needed...

Randell D.
  Réponse avec citation
Vieux 14/03/2005, 01h18   #16
Randell D.
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?

bruce_brodinsky@glic.com wrote:

> Theoretically, there's no limit, but I most definitely encountered a
> limit at my shop. And it wasn't even that large of a limit, it
> surprised me. I forget the numbers though. I guess this limit is
> necessary to discourage hackers.
>


Thanks - its my own server - its also an intranet based application -
Another ng reply tells me that there is a parameter that one can use
within Apache to create this limit - I will probably use it,but
configure it within my guesstimated limits...

thanks for the reply
randelld
  Réponse avec citation
Vieux 14/03/2005, 01h18   #17
Randell D.
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Is there a limit with forms POSTing?

bruce_brodinsky@glic.com wrote:

> Theoretically, there's no limit, but I most definitely encountered a
> limit at my shop. And it wasn't even that large of a limit, it
> surprised me. I forget the numbers though. I guess this limit is
> necessary to discourage hackers.
>


Thanks - its my own server - its also an intranet based application -
Another ng reply tells me that there is a parameter that one can use
within Apache to create this limit - I will probably use it,but
configure it within my guesstimated limits...

thanks for the reply
randelld
  Réponse avec citation
Réponse


Outils de la discussion

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui


Fuseau horaire GMT +1. Il est actuellement 21h18.


Édité par : vBulletin® version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5 Tous droits réservés.
Version française #16 par l'association vBulletin francophone
PHWinfo est un site Éducation Sans Frontières ©2000-2008
Ad Management by RedTyger
©Tous droits réservés par les parties respectives
Page generated in 0,18999 seconds with 25 queries