SEO and firefox

EDIT: I’ve tried this on my linux host and it does not happen. but it does happen on my wamp



Cs-cart 2.0.5



If I turn on SEO, Firefox does not display the page properly, but internet explorer works.



Example





I’ve narrowed it down to



(notice the redundant \)

Which is in the code if SEO is on.

[quote]












[/quote]

Remove the “/” from the config.local.php file where it states site root

I don’t have a site root entry in my config.local.php



tks

kogi

```php

/***************************************************************************
* *
* Copyright (c) 2009 Simbirsk Technologies Ltd. All rights reserved. *
* *
* This is commercial software, only users who have purchased a valid *
* license and accept to the terms of the License Agreement can install *
* and use this program. *
* *
****************************************************************************
* PLEASE READ THE FULL TEXT OF THE SOFTWARE LICENSE AGREEMENT IN THE *
* "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
****************************************************************************/


//
// $Id: config.local.php 7636 2009-06-30 07:03:06Z zeke $
//

if ( !defined('AREA') ) { die('Access denied'); }

/*
* PHP options
*/

// Disable notices displaying
error_reporting(E_ALL ^ E_NOTICE);

// Set maximum memory limit
@ini_set('memory_limit', '48M');

// Set maximum time limit for script execution
@set_time_limit(3600);

/*
* Database connection options
*/
$config['db_host'] = 'localhost';
$config['db_name'] = 'cscart';
$config['db_user'] = 'cscart';
$config['db_password'] = 'x';
$config['db_type'] = 'mysql';

/*
* Script location options
*
* Example:
* Your url is http://www.yourcompany.com/store/cart
* $config['http_host'] = 'www.yourcompany.com';
* $config['http_path'] = '/store/cart';
*
* Your secure url is https://secure.yourcompany.com/secure_dir/cart
* $config['https_host'] = 'secure.yourcompany.com';
* $config['https_path'] = '/secure_dir/cart';
*
*/

// Host and directory where software is installed on no-secure server
$config['http_host'] = 'localhost';
$config['http_path'] = '';

// Host and directory where software is installed on secure server
$config['https_host'] = 'localhost';
$config['https_path'] = '';

/*
* Misc options
*/
// Names of index files for administrative and customer areas
$config['admin_index'] = 'admin.php';
$config['customer_index'] = 'index.php';

// DEMO mode
$config['demo_mode'] = false;

// Tweaks
$config['tweaks'] = array (
'js_compression' => false, // enables compession to reduce size of javascript files
'check_templates' => true, // disables templates checking to improve template engine speed
'inline_compilation' => true, // compiles nested templates in one file
);

// Key for sensitive data encryption
$config['crypt_key'] = 'x';

// Developer configuration file
if (file_exists(DIR_ROOT . '/local_conf.php')) {
include(DIR_ROOT . '/local_conf.php');
}

define('AUTH_CODE', 'x');

?>

```

Do you have allready a solution for this problem?

I have the same issue on 2.0.8!