Reputation: 1650
I'm using WebMatrix 3 for some experimental sites I want to get up and running on my development machine as fast as possible.
I've switched the php-ini
to the development version so I can see the errors I get, the problem is I've seen other people after having configured their Apache
server get very nicely coloured and detailed errors like this:
While mine look like this:
Is there any settings I can modify or add-ons I can install to make my errors look more like those from Apache (I don't need the exact colour scheme but a coloured table and more info would be great) ?
Upvotes: 1
Views: 69
Reputation: 96454
That is how xdebug shows PHP error messages.
For how to configure what is displayed exactly, see section “Stack Traces” here: http://xdebug.org/docs/all
Upvotes: 2