Jump to content

xmasnut

Member
  • Posts

    29
  • Joined

  • Last visited

  • Days Won

    1

xmasnut last won the day on February 11 2018

xmasnut had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

xmasnut's Achievements

Newbie

Newbie (1/14)

  • Dedicated Rare
  • First Post
  • Collaborator Rare
  • Conversation Starter
  • Week One Done

Recent Badges

3

Reputation

  1. Thanks for the responses. Typical non-technie here, huh? I had hoped that it would be as easy as taking the Paypal Pro extension and swapping the Square API for the Paypal API. My budget for this is in the hundreds, but not thousands. If anyone ever comes up with an Square gateway, I would definitely be a buyer. Square is SOOOOOO superior to Paypal.
  2. Dang! Isn't anyone even interested in providing me with a quote to integrate Square? Another advantage to Square is that it offers Chargeback protection--Paypal Pro does not.
  3. I see that Square now has an e-commerce API that allow you to use them to process payments on your own ecommerce site. Is anyone working on an extension for Square? They are less expensive to use than Paypal Pro. Their website address is: squareup.com/ecommerce . If there are any developers out there that would like to give me a quote on integrating Square I'd appreciate it. I'm looking for something very similar to the Paypal Pro extension on the credit card would be processed by Square instead of Paypal Pro. (I would like it to still include Paypal Express Checkout for customers that have Paypal accounts.)
  4. xmasnut

    Google Base

    I'd prefer a "fix" that does not modify the data base by adding extra fields. I have no problem with modifications to the "Froogle Feed" or Google Base file, but I think adding extra fields to my store database is overkill. Does anyone have a solution that doesn't modify the database?
  5. I had the same problem after moving to a new domain. Upgrading the FCKeditor solved the problem. There is a free mod to do this upgrade on Cubecart.org in the Free Mods section.
  6. xmasnut

    & into &

    In addition, if you put 2 spaces in a row, it gets turned into &nbsp. Seems like this is an old bug that was fixed or someone had a work-around but I can't find it. Anyone have any ideas?
  7. Host support fixed the problem. Of course they didn't provide any details on what caused it.
  8. My store CC3 (version 3.0.10) was up and running great last Friday. This morning I went out to the store and instead of seeing my store, all I get is the following: assign("SEARCHSTR",treatGet($_GET['searchStr'])); } else { $body->assign("SEARCHSTR",""); } $body->assign("CURRENCY_VER",$currencyVer); $body->assign("VAL_ISO",$charsetIso); $body->assign("VAL_SKIN",$config['skinDir']); // START MAIN CONTENT if(isset($_GET['act'])){ switch (treatGet($_GET['act'])) { case "viewDoc": include("includes/content/viewDoc.inc.php"); $body->assign("PAGE_CONTENT",$page_content); break; case "viewCat": include("includes/content/viewCat.inc.php"); $body->assign("PAGE_CONTENT",$page_content); break; case "viewProd": include("includes/content/viewProd.inc.php"); $body->assign("PAGE_CONTENT",$page_content); break; case "unsubscribe": include("includes/content/unsubscribe.inc.php"); $body->assign("PAGE_CONTENT",$page_content); break; case "taf": include("includes/content/tellafriend.inc.php"); $body->assign("PAGE_CONTENT",$page_content); break; case "login": include("includes/content/login.inc.php"); $body->assign("PAGE_CONTENT",$page_content); break; case "logout": include("includes/content/logout.inc.php"); $body->assign("PAGE_CONTENT",$page_content); break; case "forgotPass": include("includes/content/forgotPass.inc.php"); $body->assign("PAGE_CONTENT",$page_content); break; case "account": include("includes/content/account.inc.php"); $body->assign("PAGE_CONTENT",$page_content); break; case "profile": include("includes/content/profile.inc.php"); $body->assign("PAGE_CONTENT",$page_content); break; case "changePass": include("includes/content/changePass.inc.php"); $body->assign("PAGE_CONTENT",$page_content); break; case "newsletter": include("includes/content/newsletter.inc.php"); $body->assign("PAGE_CONTENT",$page_content); break; case "dnExpire": include("includes/content/dnExpire.inc.php"); $body->assign("PAGE_CONTENT",$page_content); break; default: include("includes/content/index.inc.php"); $body->assign("PAGE_CONTENT",$page_content); break; } } else { include("includes/content/index.inc.php"); $body->assign("PAGE_CONTENT",$page_content); } // END MAIN CONTENT // START META DATA if(isset($meta)){ $body->assign("META_TITLE",htmlspecialchars($meta['siteTitle']).c()); $body->assign("META_DESC",$meta['metaDescription']); $body->assign("META_KEYWORDS",$config['metaKeyWords']); } else { $body->assign("META_TITLE",htmlspecialchars($config['siteTitle']).c()); $body->assign("META_DESC",$config['metaDescription']); $body->assign("META_KEYWORDS",$config['metaKeyWords']); } // START CONTENT BOXES include("includes/boxes/searchForm.inc.php"); $body->assign("SEARCH_FORM",$box_content); include("includes/boxes/session.inc.php"); $body->assign("SESSION",$box_content); include("includes/boxes/categories.inc.php"); $body->assign("CATEGORIES",$box_content); include("includes/boxes/randomProd.inc.php"); $body->assign("RANDOM_PROD",$box_content); include("includes/boxes/info.inc.php"); $body->assign("INFORMATION",$box_content); include("includes/boxes/language.inc.php"); $body->assign("LANGUAGE",$box_content); include("includes/boxes/currency.inc.php"); $body->assign("CURRENCY",$box_content); include("includes/boxes/shoppingCart.inc.php"); $body->assign("SHOPPING_CART",$box_content); include("includes/boxes/popularProducts.inc.php"); $body->assign("POPULAR_PRODUCTS",$box_content); include("includes/boxes/saleItems.inc.php"); $body->assign("SALE_ITEMS",$box_content); include("includes/boxes/mailList.inc.php"); $body->assign("MAIL_LIST",$box_content); include("includes/boxes/siteDocs.inc.php"); $body->assign("SITE_DOCS",$box_content); // END CONTENT BOXES // parse and spit out final document $body->parse("body"); $body->out("body"); ?> When I try to go in to Admin, I get this: select($query); // no Categories $query = "SELECT count(cart_order_id) as noOrders FROM ".$glob['dbprefix']."CubeCart_order_sum"; $noOrders = $db->select($query); // no Ccustomers $query = "SELECT count(customer_id) as noCustomers FROM ".$glob['dbprefix']."CubeCart_customer WHERE type = 1"; $noCustomers = $db->select($query); // no Ccustomers $query = "SELECT * FROM ".$glob['dbprefix']."CubeCart_admin_sessions ORDER BY time DESC LIMIT 1, 1"; $lastSession = $db->select($query); ?> class="infoText"> CubeCart PHP MySQL And a bunch more garbage that won't copy. I have no idea what happened or where to even start trying to fix the problem. Anyone got any ideas?
  9. I found the image for the blue file folder. I use the Killer skin and that image is: skins/Killer/styleImages/catnophoto.gif If we can find a way to get rid of it, perhaps we can turn it into a 1 pixel gif to make the subcats list look better.
  10. I'd also like to remove the folder image and just have a list of the subcategories. I have over 100 subcategories and the list would take much less space and look a lot better.
  11. I think someone (Booker?) did a "smart search" mod for CC2, but I haven't seen anything for CC3. I need a CC3 "smart search" also.
  12. I haven't stumbled across a way to see what categories each product is assigned to--but I haven't needed it either. I'll let you know if I see a way. I have thousands of products for my store--it is a pain to click on "manage categories" for each one.
  13. You can enter one product and have it show up in multiple categories. Enter the product in the main category, then in "View Products" from the Admin menu, click on "Manage Categories" and add as many categories for the product as you wish.
  14. Mysty, thanks for being so willing to share your modifications! I really appreciate it, as I'm sure many others do too. I think you have the right idea about saving minor mods/hacks so they don't get lost among all the messages in the forums. There is already a place to store Minor Mods/Hacks. It is in the CC3:Downloads -> CubeCart 3 Hacks & Modifications area. Can't you save your message as a txt file and upload it to the Downloads are for CubeCart Version 3? Just my 2 cents worth.
×
×
  • Create New...