Added .htaccess file, fixed some comments, updated config-dist so it's a little less confusing.

git-svn-id: svn://10.0.0.236/trunk@186460 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mike.morgan%oregonstate.edu
2005-12-22 22:28:57 +00:00
parent 56f5f0e206
commit b550999af2
4 changed files with 26 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
# You MUST define [your path]/inc as an include_path!
# Going to have to change this, bub.
php_value include_path /home/morgamic/public_html/v2/inc:.:/usr/share/pear:/home/morgamic/public_html/v2/lib
php_value include_path /home/morgamic/public_html/v2/public/inc:.:/usr/share/pear:/home/morgamic/public_html/v2/shared/lib
# Init script to set up required libraries.
php_value auto_prepend_file init.php

View File

@@ -11,7 +11,7 @@
startProcessing('index.tpl', 'nonav');
// init the stuff we need to generate content
// Init only the stuff we need to generate content.
require_once('includes.php');
// Arrays to store clean inputs.

View File

@@ -11,25 +11,33 @@
define('DISPLAY_ERRORS',1);
define('ERROR_REPORTING',2047);
define('ROOT_PATH','/home/morgamic/public_html/v2');
define('WEB_PATH','/~morgamic/v2');
// This is the root directory for public.
define('ROOT_PATH','/home/morgamic/public_html/v2/public');
// This is the web path from the hostname.
// In production, it's typically just "".
define('WEB_PATH','/~morgamic/v2/public/htdocs');
// The repository directory is the place to store all addons binaries.
// This directory should be writable by the webserver (apache:apache).
define('REPO_DIR',ROOT_PATH.'/files');
define('LIB',ROOT_PATH.'/lib');
// Shared library directory contains all class definitions and central code.
define('LIB','/home/morgamic/public_html/v2/shared/lib');
// Smarty configuration.
define('SMARTY_BASEDIR','/usr/local/lib/php/Smarty');
define('TEMPLATE_DIR',ROOT_PATH.'/tpl');
define('COMPILE_DIR',LIB.'/smarty/templates_c');
define('CACHE_DIR',LIB.'/smarty/cache');
define('CONFIG_DIR',LIB.'/smarty/configs');
define('COMPILE_DIR',ROOT_PATH.'/templates_c');
define('CACHE_DIR',ROOT_PATH.'/cache');
define('CONFIG_DIR',ROOT_PATH.'/configs');
define('DB_USER','username');
define('DB_PASS','password');
define('DB_HOST','localhost');
define('DB_NAME','database');
define('DB_PORT', '3306');
// Database information.
define('DB_USER','');
define('DB_PASS','');
define('DB_HOST','');
define('DB_NAME','');
define('DB_PORT', '');
define('USE_DB_SESSIONS', TRUE);
// When set to true, db sessions are available.
define('USE_DB_SESSIONS', true);
?>

View File

@@ -8,7 +8,7 @@
*/
// Include config file.
require_once('config.php');
require_once('/usr/local/lib/php/Smarty/Smarty.class.php'); // Smarty
require_once(SMARTY_BASEDIR.'/Smarty.class.php'); // Smarty
// Set runtime options.
ini_set('display_errors',DISPLAY_ERRORS);
@@ -46,8 +46,8 @@ function startProcessing($aTplName, $aPageType)
$tpl = new AMO_Smarty();
if ($tpl->is_cached($aTplName)) {
include ("finish.php");
exit;
require_once('finish.php');
exit;
}
}