Quote Originally Posted by jeffiec View Post
Not sure I fully understand what you are saying, have cleared all temp files and the link you posted matches what that file already has, remember, I uninstalled and re-installed to 4.3.1 IH is working fine.

Telling someone they need to pay for help can be taken a few ways, i will for arguments sake, take it in a neutral way.

So what you are saying is instead of sharing ideas, with fellow coders, is not the way to go? I should just go out and hire someone who will no doubt do the same thing, unless it's deva herself? And like i said, i don't even think IH is the issue, however, most of the searches so far, have pointed at IH, that's why I am asking if someone knew of another add-on i could look at or java.
So let me weigh in on mc12345678's "pay for help" comment.. It's a suggestion I too have made when it seems warranted.. Not sure why people appear to get their feathers ruffled over this as it is a LEGIT suggestion.. The comment is neutral and meant to mean that if after trying to get help, you reach an IMPASSE (for whatever reason), that one should/could consider paying for professional help.. I've done it when it's become necessary.. (hell I don't know everything, and I don't mind paying for professional advice/help when needed) but some folks find the thought objectionable.. The suggestion is not an insult, or a way or avoiding helping or anything else that's been suggested.. it's truly a legit option.. 'tis all.. Everything is NOT going to be free just because Zen Cart is free.. (IJS)


Quote Originally Posted by mc12345678 View Post
Please share. What was the fix and associated problem?

Quote Originally Posted by jeffiec View Post
Thank you Thank you Thank you Working as intended.
Jeff
lhungil posted the solution a few posts ago (quoted below).. It appears the issue is due to left over 1.3.9 code which was missed during the upgrade..

Quote Originally Posted by lhungil View Post
The code you posted looks like Zen Cart 1.3.x code... Possibly Zen Cart was upgraded from a previous version and something was missed when merging files... Or maybe some older code was merged into your "/admin/categories.php" by mistake when installing a plugin...

The code from Zen Cart 1.5.1 for "/admin/categories.php" (note the parts in red):
Code:
case 'setflag':

      if ( isset($_POST['flag']) && ($_POST['flag'] == '0') || ($_POST['flag'] == '1') ) {
        if (isset($_GET['pID'])) {
          zen_set_product_status($_GET['pID'], $_POST['flag']);
        }
      }

      zen_redirect(zen_href_link(FILENAME_CATEGORIES, 'cPath=' . $_GET['cPath'] . '&pID=' . $_GET['pID'] . (isset($_GET['page']) ? '&page=' . $_GET['page'] : '') . ((isset($_GET['search']) && !empty($_GET['search'])) ? '&search=' . $_GET['search'] : '')));
      break;