I Looked everywhere to find an answer but nothing fits my case.

Let me explain.

Environment

I have a website in php that works with a solr indexation server.

It's based on CodeIgniter

Changes made

We got a whole lot of new contentns, so we flushed the database, and had to reindex the content (about 168 000 elements)

I created a script to index the contents by slices of 500. So when the script finishes, we launch the next indexation

It works perfectly on my local test environment, but on production I get this 500 error.

[Thu Dec 02 ...] [error] [client IP] Premature end of script headers: index.php

Other informations

There is absolutely nothing in my php.log, just the apache error_log that returns it.

I've seen it happen on other pages of the website once or twice, but it was during this indexation.

Has anyone an idea ?

link|improve this question

29% accept rate
1  
There is not enough information to tell. If it works on your test envioronment, I would suspect file permissions: is the apache server running as a different user perhaps? – Colin Fine Dec 2 '10 at 15:48
1  
1 or 2 errors are OK but 500 errors are too much. /s – WhatIsOpenID Dec 2 '10 at 15:52
So, let the script write to log info after every several lines so that you would know where it breaks exactly. – FractalizeR Dec 2 '10 at 15:57
Colin Fine : I don't think it comes from the user, I run php with suphp, every server is compartmented WhatIsOpenID : no it's not 500 different errors, it is apache that returns a "500 internal server error" code – Onigoetz Dec 3 '10 at 10:10
If you run with suphp, maybe you should look for the inside suphp.log – Dr.Molle Dec 4 '10 at 10:48
feedback

2 Answers

This error is usually caused by the FastCGI setup of IPCCommTimeout.

You can try to solve it putting this into your vhost.conf:

<IfModule mod_fcgid.c>
IPCCommTimeout 300
</IfModule>

You can increase it as you need and then restore the original value once the reindexing process is complete.

link|improve this answer
I'm not completely familiar with the apache configuration and all these things. is suphp considered as fastCGI ? do the same rules apply ? If yes, I'll try your solution, because I think it's a timeout problem too – Onigoetz Dec 3 '10 at 10:15
I have never used suphp. Anyway, you can try with a simple php script that sleeps for more than 100 secs for example. If you get the same error, then you can try my solution. – Fabrizio D'Ammassa Dec 3 '10 at 11:51
feedback

What's your error_level in php? The error-message you get there inside the log is often result of a simple PHP-error, but the server is setup to do not deliver error-messages to the client for security-reasons. By this the message is not very helpful, it could be everything.

link|improve this answer
The error level is set to display_errors on and to throw all errors, complementarily to this I have a logging system that does a complete debug bagtrace on any error and stores it in the database. so there is nothing on this side. – Onigoetz Dec 3 '10 at 10:12
feedback

Your Answer

 
or
required, but never shown

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