Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Gtowr

Archived
  • Posts

    9
  • Joined

  • Last visited

Profile Information

  • Real Name
    Hubert Mannetti

Gtowr's Achievements

  1. Found the solution! :lol: I'm running ECJoomCommerce and it turns out I simply had leave both register_globals and RG_EMULATION on or 1 for my modules to show. Check out this post for more details Hope this helps a bloke with the same problem one day...
  2. Permission to ask one last stupid question... When I run through the checkout process, the site never asks me with which method I'd like to pay. I suppose it's logical because I've not seen the modules in the admin interface and I've can't install them. But another thought just crossed my mind... Am I not using some sort of demo with this payment stuff disabled? Hubert
  3. I've gone and looked in the /htdocs/administrator/components/com_oscommerce/modules.php file and here is the Code: 100 case 'remove': 101 $file_extension = substr($PHP_SELF, strrpos($PHP_SELF, '.')); 102 $class = basename($_REQUEST['module']); 103 if (file_exists($module_directory . $class . $file_extension)) { 104 include($module_directory . $class . $file_extension); 105 $module = new $class; 106 if ($action == 'install') { 107 $module->install(); 108 } elseif ($action == 'remove') { 109 $module->remove(); 110 } 111 } 112 tep_redirect(tep_href_link(FILENAME_MODULES, 'set=' . $set . '&module=' . $class)); 113 break; This code gives the error when I click on the install button, but that can't be the reason why my payment modules are not showing. It is just a result of something else. Any help out there! :o
  4. And the weird thing about it is that the Payment Modules .php files are at the path given by the site: When I click on the install button I get the following eror messages: Does this mean anything? :blush: Help!
  5. Hi All, I'm using OSCommerce with Joomla, that ECJoomCommerce Component. There are a few glitches, but that we can live with... But when you click on payment modules in admin, I get the following: Module Directory: /htdocs/components/com_oscommerce/includes/modules/payment/ Of course with no modules showing. The forums told me there something amiss in my config.php file, and so I've messed around in Config.php file, broke it and fixed it again, but still no payment modules are displayed. Do you have any suggestions as to where I can search... ThanX in advance. Hubert
×
×
  • Create New...