Zen Cart Logo
Forums / General Questions / local pc installation with XAMPP - error message

local pc installation with XAMPP - error message

Views: 2,364

Results 1 to 7 of 7
29 May 2013, 8:30 PM
#1
jbthomasfl avatar

jbthomasfl

New Zenner

Join Date:
Dec 2007
Location:
Winter Park, FL
Posts:
15
Plugin Contributions:
0

local pc installation with XAMPP - error message

We've been using Zen Cart since 2007, but always paying someone to install upgrades and modules. So, while I'm familiar with using ZC, I'm not as familiar with the programming. I bought the TenTonOnline course which goes through both local and remote server installations.

I downloaded and installed the latest versions of XAMPP, MySql and ZC 1.5.1a. Following the instructions from TenTon, I got both XAAMP and MySQL running fine then I began the install of ZC. I changed the 2 dist-config.php files to config.php and got to the page which says "You are here because..." which led me to an error message telling me the path was incorrect. I used notepad++ to try to find where the path was wrong, but I don't have a clue if that's even the right place to look. :huh::frusty:

If anyone would be so kind as to tell me where I'm missing the mark, I'd appreciate it.

I have room on my host site to set up a sandbox, but I figure it's a whole lot faster to play around with modules, templates, etc. in the local environment. I'm also trying to follow the course outline. An email to TenTon last week went unanswered.

29 May 2013, 8:38 PM
#2
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: local pc installation with XAMPP - error message

jbthomasfl:

and got to the page which says "You are here because..." which led me to an error message telling me the path was incorrect.
Can you be more specific about the exact complete message?

30 May 2013, 1:37 AM
#3
coopco avatar

coopco

New Zenner

Join Date:
Jun 2006
Location:
Sea Lake, Australia
Posts:
81
Plugin Contributions:
0

Re: local pc installation with XAMPP - error message

On the server locate the file: /catalog/includes/dist-configure.php
Rename this file to configure.php and change the permissions to 777 (read-write-execute for all)

Next, on the server locate the file: /catalog/admin/includes/dist-configure.php
Rename this file to configure.php and change the permissions to 777 (read-write-execute for all)

30 May 2013, 2:12 AM
#4
jbthomasfl avatar

jbthomasfl

New Zenner

Join Date:
Dec 2007
Location:
Winter Park, FL
Posts:
15
Plugin Contributions:
0

Re: local pc installation with XAMPP - error message

****> DrByte:

Can you be more specific about the exact complete message?

The message is:

Server error!

The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there was an error in a CGI script.

If you think this is a server error, please contact the webmaster.

Error 500

localhost
Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7

30 May 2013, 3:13 AM
#5
jbthomasfl avatar

jbthomasfl

New Zenner

Join Date:
Dec 2007
Location:
Winter Park, FL
Posts:
15
Plugin Contributions:
0

Re: local pc installation with XAMPP - error message

OK, so looking back over my installation, it's zen-cart-v1.5.1 (no a). Following the path to installation, it's C://localhost/xampp/zen-cart-v1.5.1. and the renamed files are configure.php, not config.php. Time to give it and me a rest for the night. I look forward for your reply and appreciate the previous one. Sorry to be such a pain.

30 May 2013, 4:50 AM
#6
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: local pc installation with XAMPP - error message

Not sure which version of XAMPP you used. I don't use XAMPP so I can't offer direct assistance specific to XAMPP.

But I do know that "500 Internal Server Error" messages are caused by something going wrong on the server that the server's security settings prevent it from describing to-your-face-onscreen. Instead, the cause of the error is recorded in logs that only the server administrator (you) have access to. Explained in more detail here: http://www.zen-cart.com/content.php?105-why-am-i-getting-500-internal-server-error

30 May 2013, 10:33 AM
#7
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,085
Plugin Contributions:
56

Re: local pc installation with XAMPP - error message

jbthomasfl:

OK, so looking back over my installation, it's zen-cart-v1.5.1 (no a). Following the path to installation, it's C://localhost/xampp/zen-cart-v1.5.1. and the renamed files are configure.php, not config.php. Time to give it and me a rest for the night. I look forward for your reply and appreciate the previous one. Sorry to be such a pain.
If you let XAMPP install to its default directory (c:/xampp), then your installation should be made to c:/xampp/htdocs/zen-cart-v1.5.1. That allows you to access your locally-hosted site by putting* localhost/zen-cart-v1.5.1* into your browser's address input.

I usually keep the /includes/configure.php and MY_ADMIN/includes/configure.php files as they exist in my hosted version and use /includes/local/configure.php and MY_ADMIN/includes/local/configure.php to reflect my locally-hosted versions. Just remember to never upload these local versions or you're pretty-much guaranteed to get a Server-500 error!!! Here's the contents of my c:/xampp/htdocs/v1.5.1/includes/local/configure.php file:

<?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-24 03:36:38
 */


/*************** 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://localhost');
  define('HTTPS_SERVER', 'https://localhost');

  // 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', '/v1.5.1/');
  define('DIR_WS_HTTPS_CATALOG', '/v1.5.1/');

  define('DIR_WS_IMAGES', 'images/');
  define('DIR_WS_INCLUDES', 'includes/');
  define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
  define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
  define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
  define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
  define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
  define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/');

  define('DIR_WS_PHPBB', '/');

// * DIR_FS_* = Filesystem directories (local/physical)
  //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
  define('DIR_FS_CATALOG', 'C:/xampp/htdocs/v1.5.1/');

  //the following path is a COMPLETE path to the /logs/ folder  eg: /var/www/vhost/accountname/public_html/store/logs ... and no trailing slash
  define('DIR_FS_LOGS', 'C:/xampp/htdocs/v1.5.1/logs');

  define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
  define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
  define('DIR_WS_UPLOADS', DIR_WS_IMAGES . 'uploads/');
  define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS);
  define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');

// define our database connection
  define('DB_TYPE', 'mysql');
  define('DB_PREFIX', '');
  define('DB_CHARSET', 'utf8');
  define('DB_SERVER', 'localhost');
  define('DB_SERVER_USERNAME', 'root');
  define('DB_SERVER_PASSWORD', '');
  define('DB_DATABASE', 'zc151');

  // The next 2 "defines" are for SQL cache support.
  // For SQL_CACHE_METHOD, you can select from:  none, database, or file
  // If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache 
  // or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder
  // ie: /path/to/your/webspace/public_html/zen/cache   -- leave no trailing slash  
  define('SQL_CACHE_METHOD', 'none'); 
  define('DIR_FS_SQL_CACHE', 'C:/xampp/htdocs/v1.5.1/cache');

// EOF