0

Possible Duplicate:
PHP error: Cannot modify header information – headers already sent

I've built a web-service with framework CakePHP. when i query the service it does return the expected content but, it also gives me an error: Warning (2): Cannot modify header information - headers already sent by. What is this and how can i resolve this?

Community
  • 1
  • 1
jan
  • 125
  • 1
  • 5
  • 14

1 Answers1

0

Could be that you try to set headers using header function after some of the content is already sent.

ain
  • 22,394
  • 3
  • 54
  • 74