Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Problems with colimn_left in administrator


grouppda

Recommended Posts

Are you 100% sure that you changed all entries of HTTP to HTTPS in the admin/includes/configure file and changed the define('ENABLE_SSL', false); to define('ENABLE_SSL', true);

Same should be done in the catalogue folder configure file.

REMEMBER BACKUP, BACKUP AND BACKUP

Link to comment
Share on other sites

Yes I changed it in both files

<?php
  define('HTTP_SERVER', 'http://xtreme-iceskateshop.be');
  define('HTTPS_SERVER', 'https://xtreme-iceskateshop.be');
  define('ENABLE_SSL', true);
  define('HTTP_COOKIE_DOMAIN', '');
  define('HTTPS_COOKIE_DOMAIN', '');
  define('HTTP_COOKIE_PATH', '/catalog/admin');
  define('HTTPS_COOKIE_PATH', '/catalog/admin');
  define('HTTP_CATALOG_SERVER', 'http://xtreme-iceskateshop.be');
  define('HTTPS_CATALOG_SERVER', 'https://xtreme-iceskateshop.be');
  define('ENABLE_SSL_CATALOG', 'false');
  define('DIR_FS_DOCUMENT_ROOT', '/var/www/vhosts/xtreme-iceskateshop.be/httpdocs/catalog/');
  define('DIR_WS_ADMIN', '/catalog/admin/');
  define('DIR_WS_HTTPS_ADMIN', '/catalog/admin/');
  define('DIR_FS_ADMIN', '/var/www/vhosts/xtreme-iceskateshop.be/httpdocs/catalog/admin/');
  define('DIR_FS_HTTPS_ADMIN', '/var/www/vhosts/xtreme-iceskateshop.be/httpdocs/catalog/admin/');
  define('DIR_WS_CATALOG', '/catalog/');
  define('DIR_WS_HTTPS_CATALOG', '/catalog/');
  define('DIR_FS_CATALOG', '/var/www/vhosts/xtreme-iceskateshop.be/httpdocs/catalog/');
  define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');
  define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/');
  define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
  define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
  define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
  define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
  define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

 

 

Link to comment
Share on other sites

There are examples of known good configure.php files in the Phoenix Club.

FYI, you have at least 5 mistakes in this file, these 5 should be; 

define('HTTP_SERVER', 'https://xtreme-iceskateshop.be');
define('HTTP_COOKIE_DOMAIN', '.xtreme-iceskateshop.be');
define('HTTPS_COOKIE_DOMAIN', '.xtreme-iceskateshop.be');
define('HTTP_CATALOG_SERVER', 'https://xtreme-iceskateshop.be');
define('ENABLE_SSL_CATALOG', 'true');

 

Link to comment
Share on other sites

hey Burt,

I changed: 

define('HTTP_SERVER', 'https://xtreme-iceskateshop.be');
define('HTTP_COOKIE_DOMAIN', '.xtreme-iceskateshop.be');
define('HTTPS_COOKIE_DOMAIN', '.xtreme-iceskateshop.be');
define('HTTP_CATALOG_SERVER', 'https://xtreme-iceskateshop.be');
define('ENABLE_SSL_CATALOG', 'true');

in configure.php  in catalog/admin/includes/configure.php     and the problem was solved

Thanks a lot for the service !

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...