Jump to content

convict

Member
  • Posts

    1,302
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by convict

  1. convict

    Firefox issue

    Yes this can be the issue I am tired, forgot to have look at FF status bar I have disabled Java Script by default. May be the suggestion to add a <noscript> section with warning to global template as CubeCart standard code.
  2. convict

    Statistics

    I see you want to replace product popularity box with best order placed products Only you need is replace the SQL query in includes/boxes/popularProducts.inc.php with: "SELECT ".$glob['dbprefix']."CubeCart_inventory.productId, ".$glob['dbprefix']."CubeCart_inventory.productCode, ".$glob['dbprefix']."CubeCart_inventory.name, sum(".$glob['dbprefix']."CubeCart_order_inv.quantity) as salesCount FROM ".$glob['dbprefix']."CubeCart_inventory LEFT JOIN ".$glob['dbprefix']."CubeCart_order_inv ON ".$glob['dbprefix']."CubeCart_inventory.productId = ".$glob['dbprefix']."CubeCart_order_inv.productId LEFT JOIN ".$glob['dbprefix']."CubeCart_order_sum ON ".$glob['dbprefix']."CubeCart_order_inv.cart_order_id = ".$glob['dbprefix']."CubeCart_order_sum.cart_order_id " GROUP BY productId ORDER BY salesCount DESC LIMIT 10"; Query result is what you would like PS: i have made just copy & paste and WHERE conditon deletion from ..... (advertisment is not allowed) LOL
  3. Totaly agree with shandaman. I sugessted do this any customer wanted this in the past BTW: shandaman, you have different nick name in the .org forum LOL, nice to see 'hobbit' theme as avatar ROFLOL
  4. I can't find any non-secure items such as images, they're all contained within the site.Only I suggest - your search have to be strictly. Easiest way is to investigate source code immediately(IE message is gone by OK click). Search for http: FF is benevolent no argue.
  5. Shout to the Dark My post was a inherent process of making money on webshop i sell digital goods.
  6. Why do you use other peoples commercial mods you never paid for on your CubeCart sites? Is it fun to save some money by breaking Copyright laws? I think not.
  7. Default item of option is the first assigned to product options :w00t:
  8. Would you like this feature for every or some of top level categories? If so there is a mod in cubecart.org forum. Just send me a PM we can sort this out.
  9. Of course a standard way as CubeCart offers does work as EH mentioned, no argue. The 'little' problem is when store has a houndred of products. Without proper CC db, sql knowledge standard way is a boring process.
  10. I use PHP with Safe mode ON with cubecart at one of my development site last year and no problem! Only issue was a PHP v4.3.11 but patched. Issue with JPEGs as fwizard has mentioned.
  11. Confirmation emails going out AFTER payment has been confirmed. Seems to you have some problem. Payment Gateway Support is the right area for your problem.
  12. The easiest way is to make a symbolic links. I have installed several cubecart copies on several "subdomains" for development purpose, sharing one db and use this feature. Help
  13. fwizard just read Forum Rules carefully :w00t:
  14. There exists a mod for this. CubeCart.org I sent you a PM with more details.
  15. Happy Easter to all of you. :)
  16. Thank you Mark, that exatly was what i meant :)
  17. Latest version is 3.0.10, just a side words. Suppose your problem is in currency ratio, check this in Admin Control Panel->Store Config->Currencies. What number is for AUS? Anything else than 1.000000? If so this is the problem. Payment gateway files doesnt recalculate prices as front-end does.
  18. chantesse is right however cleaner way is to manage templates and remove any assigned so called template variable for product code. Main reason is the upgrade.
  19. Welcome on board You have to manage: 1) PHP categories file 2) TEMPLATE categories file 3) CSS . . You have to be familiar with PHP temlate system.
  20. You are in the bad forum however affilate modules are called in includes\content\confirmed.inc.php. I suggest you write a affiliate module, it is a clean solution anyway :D
  21. You have retrieved this issue probably, didnt see any problem. The main problem is in your home page: onLoad="MM_preloadImages('file:///G|/DanceTrenz/Photo%20White.jpg', 'file:///G|/DanceTrenz/Banner4.jpg','file:///G|/DanceTrenz/Dancetrenz1a.jpg')" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF">I dont have any of those files on my local/shared disk :D
  22. I think the correct is following: $tmpdesc = substr(strip_tags($productResults[$i]['description']),0,$config['productPrecis'])."&hellip;"; OR just another condition $tmpdesc = substr(strip_tags($productResults[$i]['description']),0,$config['productPrecis']); if(empty($tmpdesc)) { $view_cat->assign("TXT_DESC",""); } else { $view_cat->assign("TXT_DESC",$tmpdesc."&hellip;"); } SW made just programmer's typo, useless copied end parenthesis :w00t:
  23. Check includes/ini.inc.php. error_reporting(E_ALL ^ E_NOTICE); must be there like <?php error_reporting(E_ALL ^ E_NOTICE); @ini_set("display_errors", "1");
  24. Tell a friend does not work too?
  25. Just have look at cubecart.org and you find solution I sent you a PM with direct link.
×
×
  • Create New...