<?php
/**
 * Compiler configuration 
 * @package PLUG
 */


/** Remote Host address */
define('COMPILER_REMOTE_HOST''somelivehost.com');

/** Remote username */
define('COMPILER_REMOTE_USER''someuser');

/** Remote user's password */
define('COMPILER_REMOTE_PASS''somepass');

/** Remote virtual site root */
define('COMPILER_REMOTE_ROOT''httpdocs');

/** 
 * Define a PHP token to use for inline includes.
 * T_INCLUDE, T_INCLUDE_ONCE, T_REQUIRE, T_REQUIRE_ONCE.
 * All other include/require statements will be kept intact and not parsed
 * You *MUST* also use this token to require the core PLUG compiler `PLUG/compiler.php'
 */
define('COMPILER_INCLUDE'T_INCLUDE);


?>