Huh, guess I didn't realize that was the real issue. If you look in the file:
Includes/configure.php
Is there a line that reads something like:
Define('DIR_WS_INCLUDES','includes/');
yes, here it is about 1/3 down, it doesn't shown line #s, but line 7 looks nothing like described
application/x-httpd-php configure.php
PHP script text
<?php
/**
* @package Configuration Settings circa 1.5.1
* @copyright Copyright 2003-2012 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license
http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* File Built by zc_install on 2012-09-20 05:38:29
*/
/*************** NOTE: This file is similar, but DIFFERENT from the "admin" version of configure.php. ***********/
/*************** The 2 files should be kept separate and not used to overwrite each other. ***********/
// Define the webserver and path parameters
// HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
// HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
define('HTTP_SERVER', 'http://pinewoodforge.com');
define('HTTPS_SERVER', 'https://pinewoodforge.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'false');
// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
define('DIR_WS_CATALOG', '/zencart/');
define('DIR_WS_HTTPS_CATALOG', '/zencart/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
I may have some of the content wrong, but it looks like there is either a missing define, or in the file /home/pinewood/public_html/zencart/index.php on line 7 something is typed wrong.
One place to look at what is expected to be in the configure.php file is a few of the FAQ's on configure.php:
http://www.zen-cart.com/content.php?...ents-explained
http://www.zen-cart.com/content.php?...figurephp-file
For a few.