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 trialJuliette Tworsey
Front End Web Development Techdegree Graduate 32,425 PointsWhen I type mail into console
When I type mail into the console it just says that there are "no messages fro Treehouse" and nothing else. There is no mention of any version...
Why is that?
Thanks-
2 Answers
Daryl Peterson
7,812 PointsIt means your message did not send. I had the same problem at first. Add this to the top of your file. It should help you find your problem.
ini_set('display_errors',1);
ini_set('display_startup_errors',1);
error_reporting(-1);
php
Daryl Peterson
7,812 PointsYes, add that to the top of your index.php
Juliette Tworsey
Front End Web Development Techdegree Graduate 32,425 PointsJuliette Tworsey
Front End Web Development Techdegree Graduate 32,425 Points..at the top of the index.php file...or are you referring to the .htaccess file?
Thanks:-)