Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP Designing Interfaces in PHP Introducing Interfaces Autoloading

Darrell Conklin
Darrell Conklin
22,096 Points

500 error instead of debug

Am getting 500 errors instead of debugging for this workspace.

Darrell Conklin
Darrell Conklin
22,096 Points

Thanks Brandyn

ini_set('display_errors', 1);
error_reporting(E_ALL);

worked great I can see errors in the browser :)

If you like you can post it in the answers section and I will pick it as the best answer. Sorry for the late reply.

2 Answers

Brandyn Lordi
Brandyn Lordi
17,778 Points

You have to enable php error reporting. An easy debug solution is to use view->show console

Then you can run your file and it will output any errors it runs into. e.g, :

treehouse:~/workspace$ php index.php

Edit: To add to my existing comment to help others in the future(got confused, had to start this series over.. no shame!), you can also display errors in the browser with the following snippet:

ini_set('display_errors', 1);
error_reporting(E_ALL);

I put it in my config.php, but it can be set on a per-page basis.

Hello Darrell and Brandyn

Darrell, I hope Brandyn helped you find the error you were experiencing. Brandyn, thank you helping assist Darrel and other students.

It would be useful to the community if Darrel does not need any more assistance on this issue, to have an answer selected as best answer so this question is not still listed as unresolved.