So, I had to force a script to set a 200 OK … otherwise Apache would set it a 404… due to RewriteEngine On bla bla bla…
So…
header('HTTP/1.0 200 OK')
Wasn’t working… but *everyone* says to use it that way!… ok…
I’v find out that the PHP version on my client server has a bug…
http://bugs.php.net/27026
So I had to set 299 OK.
This might not be the best solution I know…