Skip to content

Instantly share code, notes, and snippets.

@cmalven
Created May 4, 2013 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmalven/5517650 to your computer and use it in GitHub Desktop.
Save cmalven/5517650 to your computer and use it in GitHub Desktop.
Basic ExpressionEngine Config File
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
// Site basics
$config['app_version'] = '252';
$config['install_lock'] = "";
$config['license_number'] = "1253-2348-9481-3149";
$config['debug'] = '1';
$config['site_label'] = 'CSAJ';
$config['is_system_on'] = "y";
// Paths
$config['site_url'] = "http://{$_SERVER['HTTP_HOST']}/";
$config['base_path'] = $_SERVER['DOCUMENT_ROOT'];
$config['cp_url'] = $config['site_url'] . 'system/index.php';
$config['theme_folder_url'] = $config['site_url'] . 'themes/';
$config['theme_folder_path'] = $config['base_path'] . '/themes/';
$config['tmpl_file_basepath'] = $config['base_path'] . '/templates/';
$config['doc_url'] = "http://expressionengine.com/user_guide/";
$config['allow_extensions'] = 'y';
$config['cookie_prefix'] = '';
// Templates
$config['save_tmpl_files'] = 'y';
$config['enable_online_user_tracking'] = "n";
$config['enable_hit_tracking'] = "n";
$config['enable_entry_view_tracking'] = "n";
$config['dynamic_tracking_disabling'] = "";
// END EE config items
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment