Sunday, August 21, 2011

Re: send POST data to a controller cause a 404!

yeah but you do know that this doesn't make a different!

On Sun, Aug 21, 2011 at 11:53 PM, Tilen Majerle <tilen.majerle@gmail.com> wrote:
controller method should be underscored, so test_p_o_s_t or idk: test_post
--
Lep pozdrav, Tilen Majerle



2011/8/21 3p3r <3pehr.laal@gmail.com>
Hi all.
I have a no Model/View controller and i'm trying to send data to it
from a form with POST method. the form is not editable cuz it's not
mine. it's in another website. when I navigate to this public function
via URL, everything is fine. but when I try to send data to it, it'll
give me a 404 error. anyone knows how to deal with this issue?
here is the form:
************************************************
<form accept-charset="utf-8" method="post" action="/remitments/
testPOST">
... some inputs
</form>
************************************************

and here is the controller function:
************************************************
function testPOST()
{
       $this->disableCache();
       $this->layout = 'none';
       $this->autoRender = false;
       echo "<pre>";
       print_r($_POST);
       echo "</pre>";
}
************************************************

--
Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org
Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

--
Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org
Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions.
 
 
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php



--
------------------------------------------------------------

------------------------------------------------------------

--
Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org
Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions.
 
 
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

No comments: