Re: redirecting problem

2012-04-02 Thread CrotchFrog
I have to agree with Mike, are you sure it's making it that far into the code and have you tried testing the redirect on it's own? Alter your 'if' statement to alert in the case the condition (send email) fails. if ($this->Email->send()){ $this->redirect('/sellers/message'); } else {

Re: redirecting problem

2012-04-02 Thread Brian Bowler
Litto some more information would help, is it redirecting to a blank page instead of redirecting? On Mon, Apr 2, 2012 at 9:15 AM, Mike Griffin wrote: > On Fri, Mar 30, 2012 at 09:42, LITTO CHACKO wrote: > > hai guys, i have to met with other problem.. the problem is that whwn > > i tried to sub

Re: redirecting problem

2012-04-02 Thread Mike Griffin
On Fri, Mar 30, 2012 at 09:42, LITTO CHACKO wrote: > hai guys, i have to met with other problem.. the problem is that whwn > i tried to submit a form it saves all data nad when it is asked > to redirect after saving it..it doesn't work??? > >  if ($this->Email->send()) { > >                  

Re: redirecting problem

2012-04-02 Thread LITTO CHACKO
@crotch.. iam still unable to fix this redirecting problem... pls help me. On Apr 1, 12:52 am, CrotchFrog wrote: > Did it make a difference for you or are you still having problems with the > redirect? > > The difference would be in naming > conventionshttp://book.cakephp.org/2.0/en/getting-

Re: redirecting problem

2012-03-31 Thread CrotchFrog
Did it make a difference for you or are you still having problems with the redirect? The difference would be in naming conventions http://book.cakephp.org/2.0/en/getting-started/cakephp-conventions.html Sticking with conventions, 'seller' in your redirect should be plural 'sellers' to referen

Re: redirecting problem

2012-03-30 Thread LITTO CHACKO
@crotch i wrote like this.. $this- >redirect('/seller/message/'); and u told me to do this try:: $this->redirect('/sellers/message'); what's the difference between two is it same??? Litto Chacko Axtec Softwares -- Our newest site for the community: CakePHP Video Tutorials http://tv.cak

Re: redirecting problem

2012-03-30 Thread CrotchFrog
try:: $this->redirect('/sellers/message'); On Friday, March 30, 2012 4:42:47 AM UTC-4, LITTO CHACKO wrote: > > hai guys, i have to met with other problem.. the problem is that whwn > i tried to submit a form it saves all data nad when it is asked > to redirect after saving it..it doesn't w

Re: redirecting problem

2012-03-30 Thread JunLe Li
ini_set() work correctly? -- liju...@gmail.com | Public Key| Twitter | SinaWeibo On Fri, Mar 30, 2012 at 16:42, LITTO CHACKO wrote: > hai guys, i have to met with other prob