Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Admin Payment, Shipping, and order total are gone


chamtech

Recommended Posts

Posted

Hi,

 

After installing a code to take care of the flat rates, now the admin does not allow me to select a payment, shipping, or order_total options to install>

 

payment_admin.png

Posted

I am not even sure if that caused the options not to appear on the screen. You see, I also enabled SSL on my site and maybe on modules.php I have messed up something that causes these options not to display.

 

Part of the modules.php

 

require('includes/application_top.php');

 

$set = (isset($HTTP_GET_VARS['set']) ? $HTTP_GET_VARS['set'] : '');

 

if (tep_not_null($set)) {

switch ($set) {

case 'shipping':

$module_type = 'shipping';

$module_directory = DIR_FS_CATALOG_MODULES . 'shipping/';

$module_key = 'MODULE_SHIPPING_INSTALLED';

define('HEADING_TITLE', HEADING_TITLE_MODULES_SHIPPING);

break;

case 'ordertotal':

$module_type = 'order_total';

$module_directory = DIR_FS_CATALOG_MODULES . 'order_total/';

$module_key = 'MODULE_ORDER_TOTAL_INSTALLED';

define('HEADING_TITLE', HEADING_TITLE_MODULES_ORDER_TOTAL);

break;

case 'payment':

default:

$module_type = 'payment';

$module_directory = DIR_FS_CATALOG_MODULES . 'payment/';

$module_key = 'MODULE_PAYMENT_INSTALLED';

define('HEADING_TITLE', HEADING_TITLE_MODULES_PAYMENT);

break;

}

}

 

Apperantly the value of the set is NULL and none of these options are getting displayed.

 

Your thoughts

Posted

Can some one direct me to find out where to look for and solve this issue I have with payment, shipping, and order_total not showing on my admin pages.

 

Thanks in advance

 

shipping_admin.png

 

shipping_admin.png

 

order_total_admin.png

Archived

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

×
×
  • Create New...