Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a script that works fine on my test server (using IIS6). The script processes an ajax request and sends a response with the following line:

header( 'application/javascript' );

But on my live server, this line crashes the page and causes a 500 error.

Do I need to allow PHP to send different MIME types in IIS7? If so, how do I do this? I can't find any way on the interface.

share|improve this question

3 Answers

up vote 16 down vote accepted

The header is incorrect, try this instead:

header('Content-Type: application/javascript');
share|improve this answer

the MIME type of javascript files is 'text/javascript'. so the correct php code to send header is:

header('Content-Type: text/javascript');
share|improve this answer
@the_person_who_voted_this_down: I've used the accepted answer, but out of curiosity: What's wrong with text/javascript? – gogowitsch Jun 18 '12 at 10:43

take a look at http://en.wikipedia.org/wiki/Mime_type

There it says you should use application/javascript instead of text/javascript.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.