Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

tknospdr

Members
  • Posts

    12
  • Joined

  • Last visited

Profile Information

  • Real Name
    David Muszynski

tknospdr's Achievements

  1. I don't think it's particularly tied to SSL (although I could be wrong). I've posted more findings in this thread, hoping it'd get more exposure. Thanks, David
  2. Quick update, if I add a product to my shopping cart then click on the 'Checkout' button the link redirects correctly. When I empty the cart then I get the URL problem again.
  3. I do, but I deleted the cache files in the admin section, then reset my browser and the issue still persists. I then went into the admin section again and turned caching off completely and the problem went away. Then I went to my test server and turned cache on and the problem started there as well. So there probably needs to be an update to the mod to make it work correctly with cache turned on. That sucks, I was hoping for, " Oh yeah, change line 468 of blah.php and all your problems will go away." Oh well. The catalog files themselves are safe to move to another installation as long as I change the configure.php files correctly right? I'm thinking I should just package up my working test environment and move it to the production site.
  4. I tested out this contrib on my sandbox store and all worked fine. I then set up a new store for a customer of mine and immediately installed both SPPC and Hide for SPPC. The first mod works as advertized, but the Hide mod doesn't work. This is my set up - 3 groups, Retail, Wholesale, and VIP. I also have 5 top level categories - Livestock, Supplies, Deadstock, Merchandise, VIP. When I created top level category VIP I hid it from Retail and Wholesale; however it continues to show itself for guests except on the login page, and it shows for logged in users that are not in the VIP group except on the 'My Account' page. A possibly unrelated issue that I'm having is that the 'Checkout' link isn't working right. If I hover over the link it shows the correct location, which should be something like: https://secure.technospider.com/~ts_tgearheart/catalog/checkout_shipping.php?osCsid=xxx But when I click on it part of the correct link is stripped out like so: https://secure.technospider.com/catalog/checkout_shipping.php?osCsid=xxx That obviously creates an error. Even if I copy the link and paste it, it pastes correctly but when I press enter it gets rewritten with the missing directory. The shop is located at http://www.tarantulaspiders.com/catalog/ - I'd really appreciate any help. Thanks, David PS - I know I'm using a self-signed security cert, if you could just trust it for the sake of testing I'd appreciate it.
  5. Below is that code in my catalog/admin/boxes/customers.php file. <?php /* $Id: customers.php,v 1.16 2003/07/09 01:18:53 hpdl Exp $ adapted for Separate Pricing Per Customer v3.6 2005/01/28 osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2002 osCommerce Released under the GNU General Public License */ ?> <!-- customers //--> <tr> <td> <?php $heading = array(); $contents = array(); $heading[] = array('text' => BOX_HEADING_CUSTOMERS, 'link' => tep_href_link(FILENAME_CUSTOMERS, 'selected_box=customers')); // original code below: /* if ($selected_box == 'customers') { $contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_CUSTOMERS, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CUSTOMERS_CUSTOMERS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_ORDERS, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CUSTOMERS_ORDERS . '</a>'); } */ // BOF Separate Pricing Per Customer if ($selected_box == 'customers') { $contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_CUSTOMERS, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CUSTOMERS_CUSTOMERS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_ORDERS, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CUSTOMERS_ORDERS . '</a><br>' . '<a href="' . tep_href_link('customers_groups.php', '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CUSTOMERS_GROUPS . '</a>'); } // EOF Separate Pricing Per Customer $box = new box; echo $box->menuBox($heading, $contents); ?> </td> </tr> <!-- customers_eof //--> When I surf to www.store.com/catalog/admin/customers_groups.php directly it shows up and works fine. But there is no link in my admin sidebar to allow me to select it. Was that supposed to be something I have to code directly? If so, where? I'm not at all familiar with how to make php do it's thing. Thanks, David
  6. Alright, I must be a total dunderhead. I've installed this mod and everything on the board seems to be working just fine. I spent an hour going through the entire admin section of my catalog site and I can't seem to find any damn way to add more customer groups. Is there a way to do it through the web interface, or do you have to define new groups directly through MySQL? I read through the first 3 pages of this thread intending to find my answer, but then realized that it's 137 pages long. So what's the scoop? Thanks, David
×
×
  • Create New...