I have a virtual server with Windows Server 2008 R2/IIS 7.5.

I set up PHP 5.2 with FastCGI, MySQL 5 and put TYPO3 on it. Which doesn't work. I just get an "Internal Server Error - 500", which pretty much sums it up. No additional information.

PhpMyAdmin is working flawlessly, I imported the database with it (migrating a locally developed installation to this server).

Any hints or ideas?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

IIS7 defaults to hiding detailed error messages. Add this to a file called web.config in the root of your site:

<configuration>
  <system.webServer>
    <httpErrors errorMode="Detailed" existingResponse="PassThrough" />
  </system.webServer>
</configuration>

That should force IIS to render the underlying error.

link|improve this answer
Could solve it now, thanks! – pduersteler Jan 27 at 14:41
feedback

Your Answer

 
or
required, but never shown

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