Jump to content

convict

Member
  • Posts

    1,302
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by convict

  1. $productListQuery = "SELECT ".$glob['dbprefix']."CubeCart_cats_idx.cat_id, ".$glob['dbprefix']."CubeCart_cats_idx.productId, productCode, quantity, description, image, price, name, popularity, sale_price, stock_level, useStockLevel FROM ".$glob['dbprefix']."CubeCart_cats_idx INNER JOIN ".$glob['dbprefix']."CubeCart_inventory ON ".$glob['dbprefix']."CubeCart_cats_idx.productId = ".$glob['dbprefix']."CubeCart_inventory.productId WHERE ".$glob['dbprefix']."CubeCart_cats_idx.cat_id = ".$db->mySQLSafe($_GET['catId'])." ORDER BY ".$glob['dbprefix']."CubeCart_inventory.name ASC";
  2. The get variable ACT with content STEP5 is never used in cart.inc.php. Just have a look into cart.php: case "step5": include("includes/content/gateway.inc.php"); $body->assign("PAGE_CONTENT",$page_content); break;
  3. convict

    List of mods?

    CubeCart version 2 mods Free mods are no longer supported on cubecart.com.
  4. Well I have noticed this at our store today first time. Order disapeared from order list and yes, customer id was 0 and all invoice data were lost and order time has been changed. Reason: user logged out, basket is not empty (delivery data there) does hit the checkout step5 again (gateway is set) for some reason. Quick fix, but important. Step5 (gateway.inc.php) does not contain any check if user is logged-on. includes/content/gateway.inc.php SEARCH FOR require_once("classes/cart.php"); ADD BEFORE if($ccUserData[0]['customer_id']<1) { header("Location: cart.php?act=step1"); exit; } Similar code does contain cart.inc.php (since 3.0.11) with $_GET['act']=="step5", but useless - step5 is NOT there. :w00t:
  5. Have a look into cubecart.org forum, there is a mod for.
  6. I think the best is to post this to cubecart.org, there is a Hire a Web Designer/Developer forum.
  7. CubeCart not installed into M1760_06pro database, bad database name or missing tables prefix in your config.inc.php probably.
  8. PRODUCT ID IN ADMIN NOTIFICATION EMAIL Open includes/content/gateway.inc.php SEARCH FOR $prodtext .= sprintf($lang['front']['gateway']['admin_email_body_4'], $basket['invArray'][$i+1]["name"]); REPLACE WITH $prodtext .= sprintf($lang['front']['gateway']['admin_email_body_4'], $basket['invArray'][$i+1]["name"], $basket['invArray'][$i+1]["productId"]); save, close, upload Open language/en/lang.inc.php SEARCH FOR 'admin_email_body_4' =>"Product: %s\n", REPLACE WITH 'admin_email_body_4' =>"Product: %s\nProduct ID: %s\n", save, close, upload PRODUCT ID IN THE ADMIN ORDERS SECTION Open admin/orders/order.php SEARCH FOR (about line 169) <td class="subHead"><strong><?php echo $lang['admin']['orders']['product'];?></strong></td> ADD AFTER <td class="subHead"><strong><?php echo "ID";?></strong></td> SEARCH FOR (about line 225) <td class="<?php echo $cellColor; ?>"><span class="copyText"><?php echo $results[$i]['productCode']; ?></span></td> ADD BEFORE IT <td class="<?php echo $cellColor; ?>"><span class="copyText"><?php echo $results[$i]['productId']; ?></span></td> SEARCH FOR (about line 250) <td rowspan="4" class="btmSubNav">&nbsp;</td> REPLACE WITH <td rowspan="4" colspan="2" class="btmSubNav">&nbsp;</td>save, close, upload Done ;)
  9. Do you want to add this to notification emails, payment gateways or to admin area? Yes this is possible.
  10. Success/failure page URLs are sent via form to LinkPoint central in checkout process. Dont use own ones in your LinkPoint Central account setting - you did somethig wrong in URL. This message occurs when cookies are not accesible because of another domain. The most issues are domain name in URL w/o www or w/o SSL prefix or not covered conditions when basket is empty caused call back URLs like PayPal IPN.
  11. Strange, no such issue with latest FF for me regardless to FCK version.
  12. Welcome on board of crossbrowsers 'compatibility' Add appropriate line-height (about 1.2em) to appropriate css class and you will be happy.
  13. Seems to be blocked session cookies. Please have a look into Privacy/Cookie control.
  14. Dont worry about and you are welcome :rolleyes:
  15. Well, this is a notorious question. another topic includes/boxes/categories.inc.php SEARCH FOR REPLACE WITH (or add red marked) What about pinned topic LOL.
  16. You may assingn to open the template files to any HTML editor.
  17. You have got the point! You are absolutely right this is a bug. The code you have mentioned: if( isset($_GET['redir']) && !eregi("logout|login|forgotPass|changePass",base64_decode($_GET['redir']))){ Have to be: if(isset($_GET['redir']) && !empty($_GET['redir']) && !eregi("logout|login|forgotPass|changePass",base64_decode($_GET['redir']))){ PM has been sent to Al.
  18. I think this is NOT core CC3 files issue because of PayPal. However I agree, this situation have to be incorporated because of PayPal . Hope you understand my point of view. :rolleyes:
  19. You posted the same content in CubeCart.org and in PM. Is this fixed one? I dont think so :rolleyes:
  20. I am sorry, FF is my default browser for a long time. I dont see any issue you have mentioned. :sourcerer:
  21. Some standard CubeCart gateways do use Credit Card details transfering - what those gateways are using? SSL. Your solution is much more secure as manual prcessing gateway stored Credit Card data on site. Your solutiion is comparable to standard used SSL via HTTP but remember - it depends to transer way. Email is NOT transfered direct to email box in most of cases.
  22. Of course, blank line or \n is the same on unix based servers.
  23. Seems to be a general MAC email client problem.
  24. Do you use SSL? If so it seems to be bad configured shared SSL.
  25. The processing status is the only status download links email is sent. The another story is to see customer used the download link without any click on order details. The best way is to see Completed status if custmer have used the link. Well, have a look at CubeCart.org there is a mod doing this automaticaly.
×
×
  • Create New...