Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Recommended Posts

Posted (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.

  1. 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.


  2. 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

    if (!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);
    }


  3. 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 by zelf

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...