Zen Follower
- Join Date:
- May 2006
- Posts:
- 323
- Plugin Contributions:
- 0
Why isn't the install script working?
Instead of launching the install script, I see this:
<?php /** * index.php -- This is the main hub file for the Zen Cart installer * * @package Installer * @access private * @copyright Copyright 2003-2006 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: index.php 3178 2006-03-12 22:30:49Z drbyte $ */ define('IS_ADMIN_FLAG',false); require('includes/application_top.php'); if (!isset($_GET['main_page']) || !zen_not_null($_GET['main_page'])) $_GET['main_page'] = 'index'; $current_page = $_GET['main_page']; $page_directory = 'includes/modules/pages/' . $current_page; $language_page_directory = 'includes/languages/' . $language . '/'; require('includes/languages/' . $language . '.php'); // init vars: $zc_first_field = ''; // lang must be loaded before the header module require('includes/languages/' . $language . '/' . $current_page . '.php'); require($page_directory . '/header_php.php'); require(DIR_WS_INSTALL_TEMPLATE . 'common/html_header.php'); require(DIR_WS_INSTALL_TEMPLATE . 'common/main_template_vars.php'); require(DIR_WS_INSTALL_TEMPLATE . 'common/tpl_main_page.php'); ?>I have to be honest and say I usually have Fantastico for installs, so this part is new to me. I normally just install with a click and then start the customization process...so, anyway, what have I missed here?
Thanks!