Hi,
I wonder why do you use the "get" method in the frontend's forms. I think that in "write" operations, POST method must be used. The W3C published (some time ago) an interesting interesting document about this matter.
Apart from the "destructive" effects of using "get" in some cases, you can get annoying errors. For example, we have 839 hosts in our testing installation (counting servers, ups, routers and so on). So, I was trying to remove a bunch of those machines but I've got an "URI too large" error (more than 255 characters). Just changing from "get" to "post" did the trick.
See ya!
I wonder why do you use the "get" method in the frontend's forms. I think that in "write" operations, POST method must be used. The W3C published (some time ago) an interesting interesting document about this matter.
Apart from the "destructive" effects of using "get" in some cases, you can get annoying errors. For example, we have 839 hosts in our testing installation (counting servers, ups, routers and so on). So, I was trying to remove a bunch of those machines but I've got an "URI too large" error (more than 255 characters). Just changing from "get" to "post" did the trick.
See ya!
Comment