Re: Cannot modify header information

2011-02-13 Thread Ryan Schmidt
On Feb 12, 2011, at 10:08, tubiz wrote: > PLease presently i am testing my cakephp application online but when i > tried to visit my admin page at testserver.tunsicash.co.cc/admin i am > getting this error Cannot modify header information - headers already > sent by (output started at /home/tunsi

Re: Cannot modify header information

2011-02-12 Thread Miloš Vučinić
Which version of cake are you using ? If 1.2.* go to controller.php and delete empty line at the end as well as any other space or hidden characters you might have. Even if you are using some other version check for this. At 99.999 times, this error means you have some empty line or hidden

Re: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\admitizer\cake\libs\object.php:3)

2009-10-06 Thread Dr. Loboto
Did you check object.php itself? On line 3 there should be comments only. On Oct 6, 2:00 pm, lokesh sharma wrote: > Cannot modify header information - headers already sent by (output > started at C:\xampp\htdocs\admitizer\cake\libs\object.php:3) > > There is no white space after ?> in model , co

Re: Cannot modify header information - headers already sent by

2009-07-28 Thread JamesF
don't use ?> to end a php file. just leave it out and you will solve 90% of these errors. On Jul 28, 12:36 pm, Delberto wrote: > Problem solved. Seems there was a space in the webroot/index.php Quite > frustrating. > > On Jul 28, 12:44 pm, Delberto wrote: > > > Hello, > > > I am having a proble

Re: Cannot modify header information

2009-07-28 Thread betinho
salve seu model e controller com encoding ANSI On 20 jul, 15:54, "Dave Maharaj :: WidePixels.com" wrote: > I have debug = 2 and I get > Cannot modify header information > > turn debug to 0 and it works the way i want. Doing a redirect after login to > redirect a user to appropriate area. > No wh

Re: Cannot modify header information - headers already sent by

2009-07-28 Thread Delberto
Problem solved. Seems there was a space in the webroot/index.php Quite frustrating. On Jul 28, 12:44 pm, Delberto wrote: > Hello, > > I am having a problem with my application. I have it running fine on > my local development machine. Yet when I put it on the server I get > this error "Cannot mo

Re: Cannot modify header information

2009-07-20 Thread Isaac Raja
From:* Pablo Viojo [mailto:pvi...@gmail.com] > *Sent:* July-20-09 5:07 PM > > *To:* cake-php@googlegroups.com > *Subject:* Re: Cannot modify header information > > Now what? > Try looking at /cake/basics.php:108 ... I found it belongs to function > debug(), so maybe you'r

RE: Cannot modify header information

2009-07-20 Thread Dave Maharaj :: WidePixels.com
Ok, thanks for the tip. Will check it out. Dave _ From: Pablo Viojo [mailto:pvi...@gmail.com] Sent: July-20-09 5:07 PM To: cake-php@googlegroups.com Subject: Re: Cannot modify header information Now what? Try looking at /cake/basics.php:108 ... I found it belongs to function

Re: Cannot modify header information

2009-07-20 Thread Pablo Viojo
basics.php:108) [CORE/cake/libs/controller/controller.php, line > 640] > > Now what? > > > > > From: Pablo Viojo [mailto:pvi...@gmail.com] > Sent: July-20-09 4:39 PM > To: cake-php@googlegroups.com > Subject: Re: Cannot modify header

RE: Cannot modify header information

2009-07-20 Thread Dave Maharaj :: WidePixels.com
@googlegroups.com Subject: Re: Cannot modify header information Normally that error comes with something like: Warning (2): Cannot modify header information - headers already sent by (output started at file:line) Regards, Pablo Viojo pvi...@gmail.com http://pviojo.net (#340 y creciendo

Re: Cannot modify header information

2009-07-20 Thread Pablo Viojo
Normally that error comes with something like: Warning (2): Cannot modify header information - headers already sent by (output started at file:line) Regards, Pablo Viojo pvi...@gmail.com http://pviojo.net (#340 y creciendo!) Ayudar nos

Re: Cannot modify header information - headers already sent by

2009-02-03 Thread gkc
Ok, I got you. The extra whitespace was before the opening wrote: > On Feb 3, 5:46 pm, gkc wrote: > > > > > Ok, I removed the php close tag from all the models and controllers > > but that didnt work. > > > Here is the full error message I am getting: > > > =

Re: Cannot modify header information - headers already sent by

2009-02-03 Thread AD7six
On Feb 3, 5:46 pm, gkc wrote: > Ok, I removed the php close tag from all the models and controllers > but that didnt work. > > Here is the full error message I am getting: > > = > Warning (2): Cannot modify header information - headers already

Re: Cannot modify header information - headers already sent by

2009-02-03 Thread gkc
Ok, I removed the php close tag from all the models and controllers but that didnt work. Here is the full error message I am getting: = Warning (2): Cannot modify header information - headers already sent by (output started at /home/user/public

Re: Cannot modify header information - headers already sent by

2009-02-03 Thread AD7six
On Feb 3, 7:45 am, gkc wrote: > I have researched this problem and have already removed any blank > space after the closing php tag. > > Here is the controller code: > >    function beforeFilter() { >                 if(isset($this->params['admin'])) { >                         $this->checkAdmi

Re: Cannot modify header information - headers already sent by

2009-02-03 Thread Marcelo Andrade
On Tue, Feb 3, 2009 at 3:45 AM, gkc wrote: > (..) > Again, I have already removed all the extra whitespace from the end of > all models, controllers, and views. I don't analyze your code. But you made the correct action removing extra spaces like that's the primarily cause of this problem. Any