♥zelf Posted December 10, 2005 Posted December 10, 2005 (edited) Just posting this for anyone else with a headache installing this contrib. I now have it installed on a virgin install of osC very latest version using the instructions below. Hope this helps someone. And this really is an incredible contrib/upgrade to the Admin Control Panel. Thanks to the developers. Please fix the installation instructions and take into account users with register globals off though. Download the latest contrib by Gyakutsuki updated on Dec 10, 2005.This contrib has been updated to not include other contribs that some people may not have installed, which was causing a lot of problems. If you find your edit_orders.php page is blank after selecting a product category then you are having an issue with your register globals being off, which is a good thing. The following code fixes the page for users with register globals off.Add the following line of code immediately after "<?php" in admin/edit_orders.php. View http://www.oscommerce.com/forums/index.php?s=&...ndpost&p=581317if (!empty($_GET)) { extract($_GET); } else if (!empty($HTTP_GET_VARS)) { extract($HTTP_GET_VARS); } if (!empty($_POST)) { extract($_POST); } else if (!empty($HTTP_POST_VARS)) { extract($HTTP_POST_VARS); } Follow instructions 10, 11, 12, 14a, 14b, 14c.. Instruction 13 is already done. I am going to dump a contrib up as soon as I can confirm that all the bugs are out of install. Edited December 10, 2005 by zelf Quote Virtual Merchant a.k.a. Elavon, ViaKlix, Nova Payment Module Contribution
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.