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 trialJason Martin
Courses Plus Student 9,316 PointsMissing helper file
Followed windows setup but upon using the command "rails server" and going to http://localhost:3000 I get a missing helper file error
1 Answer
nulled
1,890 PointsMake sure your capitalization is correct in the application helper file. For instance:
This is wrong: /Users/username/Development/folder/projectfolder/app/helpers/application_helper.rb
This is correct: /Users/username/development/folder/projectfolder/app/helpers/application_helper.rb
Rename the Development folder to development with lowercase. Let me know if this works.
Jason Martin
Courses Plus Student 9,316 PointsJason Martin
Courses Plus Student 9,316 PointsI had to switch directories as well as I was using my project folder located in Documents. I placed it and made sure all there was no capitalization - worked good. Thanks!