<?php
/**
* Template engine configuration.
* Make sure "templates" path points to the right location!
*/
$CONFIG = array();
//
// TEMPLATES PATH
// Make sure to add in the root path (i.e /home/something/public_html/ or /var/www/ etc).
//
$CONFIG['templ_path'] = "/var/www/templates/";
//
// DEFAULT TEMPLATE SET
// This will be a directory inside of the templ_path.
//
$CONFIG['default_set'] = "default";
//
// USE GZIP COMPRESSION
// Enable this if you want pages to be printed with GZIP
//
$CONFIG['use_gzip'] = "1";
?>
|