I am trying to include a file from another directory and so far I keep getting errors such as "failed to open stream: No such file or directory in...".
Here's my directory setup.
home/
/template/header.php
/members/private/settings.php
All I want to do is include "header.php" file on my "settings.php" page. Here's an example.
settings.php
<?php $dir = dirname(__FILE__);
require_once $dir.'/template/header.php';
Can you tell me what's wrong with it? It's not working.