fnobi / php-express

enable express server to exec php.
36 stars 15 forks source link

header() statements ignored? #1

Open japhy- opened 10 years ago

japhy- commented 10 years ago

I'm using php-express to serve PHP pages that occasionally return content other than text/html. In particular, I have a page which returns JSON, and has a header("Content-type: application/json") statement. However, the headers returned from this request are still text/html, as verified by the network monitor in FireFox, and the fact that prototype.js (which I'm using in the code which reads this response) does not set responseJSON in the Ajax response.

I've gotten around this problem by using prototype.js's evalJSON() function, but this fails to address the issue.

Cowprod commented 7 years ago

Hi, First thank you for this great module ! I think I have the same issue, I try to redirect to my login page and header("location: login.php"); does nothing...stranger... If I echo a string before calling header, I have the following error (logical)

Warning: Cannot modify header information - headers already sent by (output started at ...