$this->inc path wrong (via concrete folder instead of application folder) [SOLVED]

Permalink
This is probably a really easy issue to solve, but whenever I try including something on a page like this:
<?php $this->inc('elements/header.php');?>

It follows this path:
include(D:\Program Files (x86)\web development\wamp\www\GP_Theme2\concrete5.7.5.6\concrete/themes/GP_Theme V2/elements/header.php): failed to open stream: No such file or directory

I realised that the include tries to go by the concrete5.7.5.6/concrete folder, rather than the concrete5.7.5.6/application folder (where I'm building my theme).

How do I fix this?

 
hutman replied on at Permalink Best Answer Reply
hutman
I'm not sure if this is the issue or not, but theme names need to be all lower case and no spaces, also could be a namespacing issue.
ghoststalker195 replied on at Permalink Reply
Oooh! No wonder that I couldn't find the error in the code. Yup this fixed it! Thanks!