Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to add a few additional configuration keys to an existing OsCommerce module.

The module is called: Credit Card Via Authorize.net

I have manually added two additional configuration keys to the configuration table. (Also made sure that I followed the pattern that the module is using such as same configuration_group_id, ...)

Also in the actual module file (admin/includes/modules/payment/authorizenet.php), there is a function called keys() that just returns an hardcoded array of configurations keys. I added mine to this function as well.

While I am able to use these additional keys as constants in my project, they do not appear under the administration section where an admin can edit the values of different config keys without actually having to go to the database.

Anyone know what the proper way is to add these additional config variables to an OsCommerce module?

share|improve this question
This should work as you describe. Could you edit with dummy data a sample key? Otherwise you'll have to remove and re-install the module – random Aug 8 '12 at 4:19

closed as too localized by random, hjpotter92, acdcjunior, Vishal, Tikhon Jelvis 2 days ago

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

I found the answer. The module was installed on both Catalog and Admin side. I kept changing authorizenet.php on the admin side and nothing was changing. I figured I had to add the keys to authorizenet.php on the catalog side.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.