
Originally Posted by
jonbonse
Hi!
What do you mean add the line on the top?
Thanks!
note - I am replicating my "real world" cart to be able to customize a template on an installation on my own computer.
Code:
<?php
/**
* @package Installer
* @access private
* @copyright Copyright 2003-2010 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: application_top.php 17117 2010-07-31 18:19:41Z drbyte $
*/
/**
* ensure odd settings are disabled and set required defaults
*/
//@ini_set("session.auto_start","0");
//@ini_set("session.use_trans_sid","0");
@ini_set('date.timezone', 'America/Vancouver');
@ini_set("arg_separator.output","&");
/**
* Set the local configuration parameters - mainly for developers
*/
if (file_exists('includes/local/configure.php')) {
/**
* load any local(user created) configure file.
*/
include('includes/local/configure.php');
}
/**