Thanks for the reply Steve.
It's kinda of weird - This is the path I use on my windows box
C:\AppServ\www\Matrix\tables\matrix
This folder contains the one file "fields.ini" with the info specified before. There are no changes to the index.php file, however I'll reprint it anyway:
$time = microtime(true);
// use the timer to time how long it takes to generate a page
require_once 'C:\AppServ\www\dataface/dataface-public-api.php';
// include the initialization file
df_init(__FILE__, '/dataface');
// initialize the site
$app =& Dataface_Application::getInstance();
// get an application instance and perform initialization
$app->display();
// display the application
$time = microtime(true) - $time;
echo "
Execution Time: $time
";
?>
The folder structure works like this:
www\
dataface\
Matrix \
.htaccess
conf.ini
index.php
tables\
compiled_stats\
episodes\
matrix\
fields.ini
matrix_item\
stats\
As a test I ran the tutorial example and everything worked fine with the "FacultyOfWidgetry". I was wondering if the "_" would mess it up in any way, but i'm grasping at straws at this point.
Again any help would be appreciated.