Skip to content
Snippets Groups Projects
Commit 13593e2d authored by Tim Steiner's avatar Tim Steiner
Browse files

"Updates for new location of framework files"

parent 6f6e4e5f
No related branches found
Tags
No related merge requests found
<?php
require('./config.php');
set_include_path(LIBRARY_PATH);
set_include_path(FRAMEWORK_PATH . '/library');
set_include_path(get_include_path() . PATH_SEPARATOR . APPLICATION_PATH);
set_include_path(get_include_path() . PATH_SEPARATOR . APPLICATION_PATH . '/library');
set_include_path(get_include_path() . PATH_SEPARATOR . APPLICATION_PATH . '/models/rows');
set_include_path(get_include_path() . PATH_SEPARATOR . APPLICATION_PATH . '/models/tables');
require_once('Zend.php');
spl_autoload_register(array('Zend', 'loadClass'));
spl_autoload_register(array('Nmc', 'loadApplicationClass'));
//$appReg = Nmc_Registry_Application::getInstance();
$db_config = array('host' => $db_host,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment