Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Alek Snyder
10,328 PointsProblem with Code Challenge 2/3
Hopefully someone can help me understand why my code won't pass. Every time I try to submit, the page throws back an error saying I'm not including the company.php file. Any suggestions?
Here's the question for reference:
There is a file located at htdocs/config/company.php on the server. We need to include that file to get access to some of information about the company. At the very top of the file below, before any of the HTML, include that company.php file using a relative server path.
<?php
include('../../config/company.php');
?>
<html>
<head>
<title>Leadership | Shirts 4 Mike</title>
</head>
<body>
<h1>Leadership</h1>
<p><strong>Owner:</strong> ????</p>
<p><a href="/contact/">Contact</a></p>
</body>
</html>
2 Answers

Alek Snyder
10,328 PointsI figured it out. There was an error with the "workdir" not being set on line 76. Something on the server I guess. I changed the include to "include('../../workdir/config/company.php')" and it worked. Thanks for looking into it!

Yijun Wang
961 Points../../config/company.php is the link right? where is your index.php file please?

Alek Snyder
10,328 PointsThe index.php is located in about/leadership/index.php. The company.php file is located in htdocs/config/company.php.
Jason Anello
Courses Plus Student 94,592 PointsJason Anello
Courses Plus Student 94,592 PointsHampton Paulk
There seems to be a problem with task 2 of this challenge.