Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

No 'Boxes' in Fresh install of BS 2341


Recommended Posts

Hi,

I Just installed a fresh version of bootstrap 2341 frozen to do some playing around with however, when I go to the admin page all the left hand side navigation boxes are missing.... I'm assuming it has something to do with the config file but I think that is all ok... Ill include it here... any ideas on what could be wrong?

<?php
  define('HTTP_SERVER', 'https://creativeabundance.com.au');
  define('HTTPS_SERVER', 'https://creativeabundance.com.au');
  define('ENABLE_SSL', true);
  define('HTTP_COOKIE_DOMAIN', 'creativeabundance.com.au');
  define('HTTPS_COOKIE_DOMAIN', 'creativeabundance.com.au');
  define('HTTP_COOKIE_PATH', '/sales/admin/');
  define('HTTPS_COOKIE_PATH', '/sales/admin/');
  define('HTTP_CATALOG_SERVER', 'https://creativeabundance.com.au');
  define('HTTPS_CATALOG_SERVER', 'https://creativeabundance.com.au');
  define('ENABLE_SSL_CATALOG', 'true');
  define('DIR_FS_DOCUMENT_ROOT', '/home/creativ3/public_html/sales/');
  define('DIR_WS_ADMIN', '/sales/admin/');
  define('DIR_WS_HTTPS_ADMIN', '/sales/admin/');
  define('DIR_FS_ADMIN', '/home/creativ3/public_html/sales/admin/');
  define('DIR_WS_CATALOG', '/sales/');
  define('DIR_WS_HTTPS_CATALOG', '/sales/');
  define('DIR_FS_CATALOG', '/home/creativ3/public_html/sales/');
  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/');
  define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
  

  define('DB_SERVER', 'localhost');
  define('DB_SERVER_USERNAME', 'xxxxx');
  define('DB_SERVER_PASSWORD', 'xxxxxx');
  define('DB_DATABASE', 'xxxxxx');
  define('USE_PCONNECT', 'false');
  define('STORE_SESSIONS', 'mysql');
  define('CFG_TIME_ZONE', 'Australia/Melbourne');
?>

 

Link to comment
Share on other sites

Try changing these lines

  define('HTTP_COOKIE_DOMAIN', 'creativeabundance.com.au');
  define('HTTPS_COOKIE_DOMAIN', 'creativeabundance.com.au');
  define('HTTP_COOKIE_PATH', '/sales/admin/');
  define('HTTPS_COOKIE_PATH', '/sales/admin/');
  define('DIR_FS_DOCUMENT_ROOT', '/home/creativ3/public_html/sales/');

to

  define('HTTP_COOKIE_DOMAIN', '');
  define('HTTPS_COOKIE_DOMAIN', '');
  define('HTTP_COOKIE_PATH', '');
  define('HTTPS_COOKIE_PATH', '');
  define('DIR_FS_DOCUMENT_ROOT', '/home/creativ3/public_html');

 

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

A very quick question: you're sure you have the Bootstrap version? You got the installable from GitHub, and not from the Downloads section of this site? The official 2.3.4.1 on this site is an obsolete version, and not the 2.3.4.1BS you're looking for.

Link to comment
Share on other sites

The interface is a bit different on the BS version, so I thought I'd check. People see the "official" download is 2.3.4.1, so they assume that it's the BS version, which is also 2.3.4.1. It's not. I think that link is to the good "Frozen", but you might want to check it against the "Frozen" link in my signature, which is a/the good version.

Unfortunately, Gary (Burt) refuses to put a unique identifier in his releases, and does not give repository link and file names that clearly differentiate versions. Too bad... otherwise his work is great. It would be superb if he would just do that. Then there would be absolutely no confusion about what BS version you're dealing with.

Link to comment
Share on other sites

7 hours ago, Portman said:

I have reinstalled using your link.

Like many you have fallen into the trap of following pointless repeated questioning of the origin of installs! You have simply downloaded and installed the same version. Your  original link ie Burts was correct.

 

Link to comment
Share on other sites

And just what the fuck was "pointless" about asking him to confirm what he had installed? The current setup can be quite confusing to those who haven't been closely following the discussion. Gary doesn't help by refusing to properly label his releases, either in the version number or the repository file name, and it's very easy to get mixed up and think that the official 2.3.4.1 download is the same one as the 2.3.4.1BS download being suggested. I didn't tell the OP to reinstall -- that's his choice. I did tell him to double check where his install came from.

Link to comment
Share on other sites

remembering what version you have can be quite simple if you care to take a few minutes to do it. Yes you can just write it down, but you can also put it in your install.

so should you forget all you need to do is use the version checker in admin!

image.png.8579b3c316bf7134fe91a0b52491c4eb.png

simply edit /public_html/yourdimin/version_check.php at line 95 ish, as so. Yes I know it's not elagent but it's better than nothing. Now if anyone askes what are you running you will know.

<td class="smallText"><?php echo TITLE_INSTALLED_VERSION . ' <strong>osCommerce Online Merchant v' . $current_version . '----Frozen BS4 installed on 29-10-2018</strong>'; ?></td>

 

 

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...