http://someurl.com/arc7/ setup:
<B>1. index.php</B> - Sets database entry number (where it is located, etc.) and includes the template:
include("http://someurl.com/arc7/default/templates/arc7-tmpl.tmpl");
<B>2. arc7-tmpl.tmpl-</B> creates HTML template, requires critical function file.
require("arc7-functions.inc"); ## contains functions and prints/parses content from the database
<B>3. arc7-functions.inc</B> - parses the database data and looks for [include]somepage[/include] tags. If it finds a tag like this in the data, it tries to include that page into the script:
include("whateverpage.php");
This is where I get the error. The index.php page is the most important, setting variables that tell the arc7-functions script where to look in the database for the page content. index.php determines exactly what will appear on each page.
If I put an exact copy of index.php in my /arc7/ folder, the include function will work. If I put that exact some script copy in /backend/scripts/ttrctr/, I get an error saying it can't include that page.
I hope this doesn't sound too confusing.
Thanks for any help,
Andrew