Jump to content

Search the Community

Showing results for tags 'cubecart v5'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • CubeCart News & Announcements
    • News & Announcements
  • CubeCart Support Forums
    • Issue / Bug Reporting & Feature Requests
    • Install & Upgrade Support
    • Official CubeCart Hosting
    • Technical Help
    • Customising Look & Feel
  • CubeCart Extension Marketplace
    • Visit the CubeCart Extension Marketplace
    • Extension Discussion
    • Developer Forum
  • General
    • General Discussion
    • Show Off

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Location

  1. Greetings, I am stumped by this problem. Perhaps someone can point me in the right direction. I have noticed that when using Internet Explorer Version 9 (may also be happening with other IE versions as well) when I select an item the program is supposed to go directly to the cart which should be populated with the selected item for checkout. What happens is the program does take me to the cart but the item is not there. I see the message that "Your Cart is Empty". The program seems to be working flawlessly when I use Firefox. The selection of an item immediately brings me to the checkout page and my selected item is listed in my cart. This has really been bumming me out as I am currently losing around 50% of my purchasing customers because they can't checkout if using IE. Any thoughts would be greatly appreciated. Thanks.
  2. I just completed setting up my store in v5. The customer can print a receipt, but an email of the order receipt is not being sent. When I had v3, there wasn't a problem with automatic email of receipts. What am I missing in v5? I really need my customers to get an emailed receipt. Help!!!
  3. This month we want to move our shop system to a dedicated server, running Windows Server 2008 or 2012. (preferable). Currently we run CC V.5.2.14 on a dedicated Linux server. We need help for seeting up CC on this windows server. We have a budget and we need your offer for this setup. This setup must include setup of the database server (MySQL or MS SQL (preferred), needed additional software like PHP and their configuration within MS IIS 8.0 After your work, this IIS must be up and runnung with CC, ready for the backup files of our current system. Please PM me with your first offer and we discuss more details. KSD
  4. I was checking in stats and noticed that I have two robot.txt folders. how do I get rid of one. they are marked /robots.txt and //robots.txt . I am using 5.2.14
  5. Hello, I have a question. A few years ago I developed a list of automatic prodcutos with coin dollars and pesos (currency of my country) to cubecart 4. my question is, how can I transfer it to cubecart 5 ??? This is the full code <style> .style_titulos { background-color: #CEDFFF; color: #000; border-color: #FF0000; /*text-transform:uppercase;*/ text-decoration: none; border-width: 0px; background-repeat: repeat-x; font-size: 16px; } .style_activado { background-color: #7C7C7C; color: #FFF; border-color: #000000; border-width: 1px; text-decoration: none; text-indent:10px; font-size: small; } .style_activado a{ text-decoration: none; color: #FFF; } .style_desactivado { background-color: #7C7C7C; color: #B6B6B6; border-color: #000000; border-width: 1px; text-indent:10px; font-size: small; text-decoration: line-through; } .style_desactivado a { text-decoration: line-through; color: #B6B6B6; } a:visited { color: #FFFC; } a:hover { color: #EA9900; } </style> <?php ob_start(); ////////////////////////////////////////////////////// if(!defined('CC_INI_SET')){ die("Access Denied"); } permission("statistics", 'read', true); require($glob['adminFolder'].CC_DS."includes".CC_DS."header.inc.php"); ///////////////////////////////////////// require_once ("ini.inc.php"); // archivo ini, sin zlib.output_compression ini.inc.php propio require_once ("includes".CC_DS."global.inc.php"); require_once ("includes".CC_DS."functions.inc.php"); require_once ("classes".CC_DS."db".CC_DS."db.php"); //////////////////////// // BUILD SUB CATEGORIES //////////////////////// $query = "SELECT productId, ".$glob['dbprefix']."CubeCart_inventory.cat_id, name, cat_name, date_added, price, disabled, sale_price, useStockLevel, stock_level, productCode FROM ".$glob['dbprefix']."CubeCart_inventory INNER JOIN ".$glob['dbprefix']."CubeCart_category ON ".$glob['dbprefix']."CubeCart_inventory.cat_id = ".$glob['dbprefix']."CubeCart_category.cat_id ORDER BY cat_name ASC, price ASC, name ASC"; $db = new db(); $products = $db->select($query); $simbolo = "&nbsp;$"; // pesos $simboloD = "&nbsp;uSs"; // dolares //////////////////////////// // carga monedas require($glob['adminFolder'].CC_DS."includes".CC_DS."cotizacion.inc.php"); // fin moneda //////////////////////////// $coti = $currencies[0]['value']; $PESOS = number_format($coti, 2, ',', ' '); // con solo 2 decimales ///////////////////////////////////////////////////////////// echo "<table width="100%" border="0" cellpadding="3" cellspacing="1" class="mainTable">"; echo "<tr>"; echo "<td colspan="2" class="tdTitle">Estadisticas de productos - precio - stock - valorizado</td>"; echo "</tr>"; echo "<tr>"; echo "<td colspan="2">"; echo "<ul>"; echo "<li><a href="http://www.nickhard.com.ar/tienda/admin.php?_g=stats/index" class="txtLink"><< Volver</a></li>"; echo "</ul>"; echo "</td>"; echo "</tr>"; echo "</table>"; ///////////////////////////////////////////////////////////// echo "<table class="style_titulos" style="width: 100%" border="1" id="Exportar_a_Excel">"; echo "<tr>"; echo "<td class="style_activado" width="100%" colspan="6">LISTADO DE PRECIOS USO INTERNO - &nbsp;Cotizaci&oacute;n:&nbsp;".$simbolo."&nbsp;".$PESOS."</td>"; echo "</tr>"; for ($i=0; $i<count($products); $i++){ if($products[$i]['cat_id']!==$products[$i-1]['cat_id']){ echo "<tr bgcolor="#FFFFE1">"; echo "<td class="style_titulos"> :: ".$products[$i]['cat_name']."</td>"; //echo "<td class="style_titulos">Precio".$simbolo."&nbsp;(Pesos)<h style="color:red" >Oferta</h></td>"; echo "<td class="style_titulos">Precio".$simbolo."&nbsp;(Pesos)</td>"; echo "<td class="style_titulos">Stock</td>"; echo "<td class="style_titulos">Valorizado de stock</td>"; echo "</tr>"; echo "<tr>"; } /////////////////////////////// // COMIENZO DEL IF RPINCIPAL // /////////////////////////////// //////////////////////////////////////////////////// // SI EL STOCK ES 0 ENTONCES NO CREA NINGUNA FILA // //////////////////////////////////////////////////// //echo "<td id="6" style="background-color: #FFFFE1; color: #FF0000; font-weight: bold; font-size: small">".substr(strip_tags($products[$i]['name']), 0, 85)."... (NO/FUERA DE STOCK)"."</td>"; ////////////////////////////////////////////////////////// // COMIENZO SI EL STOCK ES 1 O MAYOR A 1 ENTONCES CREA LAS FILAS // ////////////////////////////////////////////////////////// //////////////////////////// // COMIENZO DEL IF OFERTA // //////////////////////////// // if($products[$i]['disabled']){ if($products[$i]['stock_level']<="0"){ ////////////////////////////////////////// // Fin productos desactivados // si el producto esta desactivado // directamente no se muestra en la lista ////////////////////////////////////////// } else if(!$products[$i]['disabled']){ echo "<td class="style_activado" ><a target="_blank" href="http://nickhard.com.ar/tienda/index.php?_a=viewProd&amp;productId=".$products[$i]['productId']."">".substr(strip_tags($products[$i]['name']), 0, 125)."..."."</a></td>"; // FILA PRODUCTO // solo ver un precio, oferta o fijo. ////////////////////////////////////////// //echo "<td class="style_activado">".$simbolo."&nbsp;".round($products[$i]['price']*$coti)." (".$simbolo."&nbsp;".round($products[$i]['sale_price']*$coti).")</td>"; // FILA PRECIO if($products[$i]['sale_price']<="0"){ echo "<td class="style_activado">".$simbolo."&nbsp;".round($products[$i]['price']*$coti)."</td>"; // FILA PRECIO }else{ //echo "<td class="style_activado" style="color:red">".$simbolo."&nbsp;".round($products[$i]['sale_price']*$coti)."</td>"; // FILA PRECIO echo "<td class="style_activado">".$simbolo."&nbsp;".round($products[$i]['sale_price']*$coti)."&nbsp;(Oferta)</td>"; // FILA PRECIO } // solo ver un precio, oferta o fijo. ////////////////////////////////////////// echo "<td class="style_activado">".$products[$i]['stock_level']."</td>"; // FILA PRICE // valorizado if($products[$i]['sale_price']<="0"){ echo "<td class="style_activado">".$simbolo."&nbsp;".round($products[$i]['price']*$coti)*$products[$i]['stock_level']."</td>"; // FILA PRICE }else{ //echo "<td class="style_activado" style="color:red">".$simbolo."&nbsp;".round($products[$i]['sale_price']*$coti)."</td>"; // FILA PRECIO echo "<td class="style_activado">".$simbolo."&nbsp;".round($products[$i]['sale_price']*$coti)*$products[$i]['stock_level']."</td>"; // FILA PRICE } // valorizado /*activado desactivados funciona */ } echo "</tr>"; } echo "</table>"; ////////////////////////////////////////////// ?> <style> .navTitle2 { padding: 0px; font-size: 12px; } </style>
  6. I am trying to use the card capture but it wont show the credit card details anywhere. where do I find them at? I am using 5.2.14
  7. Hello, I would like to change an order status to "payment received" (in Dutch it's called Betaling ontvangen). I would also that a n e-mail is sent to the client. In e-mail templates there is a template for payment received, but i can't choose that subject in the order status. How can I solve this problem? See my attached files please.
  8. Hi, I get the following error messages in my error log. Anyone who know if it's something that need to be taken care of? I sometimes get an "Internal Server Error" on my admin page. [Mon Mar 23 22:30:54 2015] [error] [client 37.2.146.2] PHP Warning: Invalid argument supplied for foreach() in /www/mysite/admin/sources/products.index.inc.php on line 1077, referer: http://www.mysite.com/admin.php?_g=products&sort%5Bupdated%5D=DESC&cat_id=135&action=edit&product_id=991 [Mon Mar 23 22:31:06 2015] [error] [client 37.2.146.2] PHP Warning: Invalid argument supplied for foreach() in /www/mysite/admin/sources/products.index.inc.php on line 342, referer: http://www.mysite.com/admin.php?_g=products&sort%5Bupdated%5D=DESC&cat_id=135&action=edit&product_id=991 [Mon Mar 23 22:34:04 2015] [error] [client 37.2.146.2] PHP Notice: GD::gdLoadFile - Unknown file type in /www/mysite/classes/gd.class.php on line 75, referer: http://www.mysite.com/admin.php?_g=categories&parent=111&action=edit&cat_id=200 [Mon Mar 23 22:35:49 2015] [error] [client 37.2.146.2] PHP Warning: Invalid argument supplied for foreach() in /www/mysite/classes/ajax.class.php on line 163, referer: http://www.mysite.com/admin.php?_g=categories&parent=111&action=edit&cat_id=200 [Mon Mar 23 22:36:29 2015] [error] [client 37.2.146.2] PHP Warning: Invalid argument supplied for foreach() in /www/mysite/admin/sources/categories.index.inc.php on line 19, referer: http://www.mysite.com/admin.php?_g=categories&parent=111&action=edit&cat_id=200 [Mon Mar 23 23:18:10 2015] [error] [client 37.2.146.2] PHP Warning: Invalid argument supplied for foreach() in /www/mysite/admin/sources/products.index.inc.php on line 1059, referer: http://www.mysite.com/admin.php?_g=products [Mon Mar 23 23:18:10 2015] [error] [client 37.2.146.2] PHP Warning: implode() [<a href='http://docs.php.net/manual/en/function.implode.php'>function.implode.php</a>]: Invalid arguments passed in /www/mysite/admin/sources/products.index.inc.php on line 1073, referer: http://www.mysite.com/admin.php?_g=products [Mon Mar 23 23:18:10 2015] [error] [client 37.2.146.2] PHP Warning: Invalid argument supplied for foreach() in /www/mysite/admin/sources/products.index.inc.php on line 1077, referer: http://www.mysite.com/admin.php?_g=products [Mon Mar 23 23:18:12 2015] [error] [client 37.2.146.2] PHP Notice: GD::gdLoadFile - Unknown file type in /www/mysite/classes/gd.class.php on line 75, referer: http://www.mysite.com/admin.php?_g=products&action=add [Mon Mar 23 23:18:14 2015] [error] [client 37.2.146.2] PHP Warning: Invalid argument supplied for foreach() in /www/mysite/admin/sources/products.index.inc.php on line 1059, referer: http://www.mysite.com/admin.php?_g=products&action=add [Mon Mar 23 23:18:14 2015] [error] [client 37.2.146.2] PHP Warning: implode() [<a href='http://docs.php.net/manual/en/function.implode.php'>function.implode.php</a>]: Invalid arguments passed in /www/mysite/admin/sources/products.index.inc.php on line 1073, referer: http://www.mysite.com/admin.php?_g=products&action=add [Mon Mar 23 23:18:14 2015] [error] [client 37.2.146.2] PHP Warning: Invalid argument supplied for foreach() in /www/mysite/admin/sources/products.index.inc.php on line 1077, referer: http://www.mysite.com/admin.php?_g=products&action=add [Tue Mar 24 00:07:07 2015] [error] [client 95.211.238.108] PHP Notice: GD::gdLoadFile - Unknown file type in /www/mysite/classes/gd.class.php on line 75 [Tue Mar 24 00:08:27 2015] [error] [client 95.109.121.109] PHP Warning: Invalid argument supplied for foreach() in /www/mysite/classes/cubecart.class.php on line 1691, referer: http://mysite.com//index.php?_a=category&cat_id=125&page=1 [Tue Mar 24 00:08:27 2015] [error] [client 95.109.121.109] PHP Warning: ksort() expects parameter 1 to be array, null given in /www/mysite/classes/cubecart.class.php on line 1718, referer: http://mysite.com//index.php?_a=category&cat_id=125&page=1
  9. Hello, has anyone ever received this error message and or how to fix. I've checked the shipping weights and everything appears to be fine. This is also a city in within the US. Any help is greatly appreciated. The following errors were detected: Unfortunately there are no suitable shipping methods available for your order. This may be because the total weight of your order is too high or we cannot ship to your country. Please contact a member of our staff for any further inquiries.
  10. Please test: In the admin skin template settings.index.php, near line 369: Find: <div><label for="email_smtp_user">{$LANG.settings.smtp_user}</label><span><input name="config[email_smtp_user]" id="email_smtp_user" type="text" class="textbox" value="{$CONFIG.email_smtp_user}" autocomplete="off"></span></div> <div><label for="email_smtp_password">{$LANG.settings.smtp_pass}</label><span><input name="config[email_smtp_password]" id="email_smtp_password" type="password" class="textbox" value="{$CONFIG.email_smtp_password}" autocomplete="off"></span></div> Add after: <div><label for="smtp_test_url"><span style="color:red;font-weight:bold;">Save First, then</span> Launch Email Test</label><span> <button type="button" id="smtp_test_url" onclick="$.colorbox({ href:'{$STORE_URL}/{$SKIN_VARS.admin_file}?_g=xml&type=email&q={$CONFIG.email_smtp_password}&function=test' })">Test</button> </span></div> In admin, Manage Hooks, Code Snippets tab, Add Snippet: Enabled: Checked Unique ID: test_email@cubecart (<== max 32 chars) Execution Order: 1 Description: After saving email settings, makes a test email. Trigger: class.ajax.load Version: 1.0 Author: https://forums.cubecart.com/topic/49495-testing-the-stores-email-settings/ PHP Code: <?php if (CC_IN_ADMIN && isset($_GET['type']) && $_GET['type'] == 'email' && isset($_GET['function']) && $_GET['function'] == 'test') { $pass = ($_GET['q']) ? $_GET['q'] : ''; @ob_start(); $test_mailer = Mailer::getInstance(); $test_mailer->SMTPDebug = 2; $test_mailer->Debugoutput = "html"; $test_mailer->ClearAddresses(); $test_mailer->Password = $pass; $test_mailer->AddAddress($GLOBALS['config']->get('config', 'email_address')); $test_mailer->Subject = "Testing CubeCart"; $test_mailer->Body = "Testing from CubeCart v".CC_VERSION." at ".CC_STORE_URL; $test_mailer->AltBody = "Testing from CubeCart v".CC_VERSION." at ".CC_STORE_URL; // Send email $email_test_send_result = $test_mailer->Send(); $email_test_results = @ob_get_contents();@ob_end_clean(); if(!empty($email_test_results)) { $email_test_results_data = array ( 'request_url' => 'mailto:'.$GLOBALS['config']->get('config', 'email_address'), 'request' => 'Subject: Testing CubeCart', 'result' => $email_test_results, 'error' => ($email_test_send_result) ? null : "Mailer Failed" , ); $GLOBALS['db']->insert('CubeCart_request_log', $email_test_results_data); $json = $email_test_results; } else { $json = "Test failed to execute."; } } This will give you the dialog the Mailer has with whatever you have set as the means and server to accept emails from your store. A copy of the dialog is saved in admin, Request Log. The above needs testing! My development environment is not the same as a production environment.
  11. Hi all, My employer has tasked me with embedding a product demo video on a product page. I've had no trouble using the YouTube video however he has decided he wants the original file embedded to remove any association with YouTube. The code I used for the YouTube version worked fine. This was: <p> <iframe allowfullscreen="" frameborder="0" height="214" src="https://www.youtube.com/embed/LbAYBlrFhjI?feature=player_detailpage" width="380"></iframe> </p> I attempted altering the "src" to the files location on our server: https://www.leegodbold.com/public_html/video/kitsoundsonar.mp4 and https://www.leegodbold.com/public_html/video/kitsoundsonar.ogv However I get several error messages telling me that the sites security certificate is not valid, please contact the webmaster etc etc. Is there another way to embed the video? A way which I wouldn't have to deal with the security certificate and such other business. Any advice, positive or negative, would be really appreciated. I'm totally stumped as it stands as I'm not yet a pro with html. Thanks very much! George B
  12. I'm working on putting the meta title/description/keywords into the databases for my pages. However in the admin section under store settings > search engine, there is meta information. Which page does this information show for? The main page or every page on the site? Also, there is an option below it for Global Meta Data Behaviour with disable/merge/replace. What does this mean? Thank!
  13. Hi, I'd love some feedback on my site please. http://www.zakshomemade.com It's taken a while, as it's a first attempt, so any constructive critisism would be greatly appreciated. Thanks to BSmither and Al, along with others who have helped me along the way.
  14. Just gone on-line live for the first time. Still needs much more work but it's ready to start taking orders. Would be interested to receive feedback, thanks. http://torqracewear.co.uk/
  15. Hi, I'm having a problem with my automatic e-mails. On a new order being placed (processing stage email selected) I receive an admin 'order confirmation', but the customer receives a cart 'confirmation' AND an admin 'confirmation'. On completing an order (manually changing status from processing to complete) no cart 'order complete' email is being sent to the customer (I need them to send as a follow up and feedback request). I have checked all my store settings>advanced settings and all seems ok, and there are no restrictions imposed from my server. I also have 'force order completed emails' selected, but I think this only refers to straight to complete orders? Any help would be greatly appreciated.
  16. Hi, I've managed to get an SSL certificate applied to my site, which is working fine. I would now like to add the trust seal badge, I have the code, and think the best place for the seal badge would be in the final 3rd of the 'search and language' bar at the top of the each page (as this is currently unused space). Could you tell me where I would need to add the code for this to happen. Thank as always for any help.
  17. Everytime I go to my site I get pushed to the login screen. Without fail, even with direct links to other pages. I'm assuming this is a cookie that remembers my login and wants me to just sign in. It's annoying. How do I disable this feature? Thanks
  18. Is there a way of slowing down the way the Sidebar toggles down for sub-categories? I don't mind the way that it toggles down but it is very trigger happy, and you only have to move your cursor over the sidebar before it starts expanding. It usually means you have to start chasing the menu item you are after, or stealthily approach it from the side. Here is the code from /skins/kurouto/js/script.js... /* Custom JavaScript for default template */ /* Acordion menu (only opens, doesn't collapse) */ $('#menu.accordion a ~ ul').each(function(){ $(this).siblings('a:first').addClass('menu_closed').hover(function(){ $(this).addClass('menu_open').siblings('ul').slideDown(); return; }); });
  19. I'd like to request the addition of Propay to the current list of Integrated Credit Card Gateways. This company has been around for years and is used by Artfire and other online ecommerce sites. Etsy members get a discount on their low yearly rate. Their fees are about the same as PayPal. They have lots of ways to process orders - USB card readers, Phones, online, etc. I've had an account with them for about 4 years. Very reliable.
  20. Does anyone know if CubeCart or anyone else has a tax module that will support County taxes? Or taxes by zipcode?
  21. Working for a client. The previous backup folder is 755. When I try to back up files or database, I am getting errors... either a 500 internal server error or a non resolving page. Any suggestions? Ideas? There are older file and db backups in the folder, but that shouldn't be an issue, should it? WARNING: Your store is not up-to-date, v5.2.16 is available, but you are running v5.2.13
  22. I'm having an issue with the built in tax module. I'm placing the State tax rate at .029 for Colorado. When I get to check out, it shows 3% (think it should show 2.9% like it's supposed to but whatever) but it's charging it at .0003%. So a $100 total is showing up at 3 cents tax not 3 dollars. I've deleted the rule and replaced it and I'm still getting the same result. How do I correct this?
  23. Hello, I was running CC 5.2.15 (just upgraded to 5.2.16 today) and noticed a problem recently I think may be a hack. So, I noticed the problem when receive emails from the store after an order confirmation, so for example here is an order email I received (I edited identifying information about the customers) NOTE PLEASE DON"T CLICK ON ANY OF THESE LINKS SINCE I DON"T KNOW IF THEY ARE SAFE A HACKER MAY HAVE PUT THEM IN xxxxxx just placed order number 150217-134808-9488 on 17 Feb 2015, 13:48. This order can be managed online by following the link below. https://hyper-vpn.com/admin.php?_g=orders&action=edit&order_id=150217-134808-9488 Billing address: Email: xxxxxx Shipping address: Item Quantity Cost order 1 €30.00 Shipping: (Flat_Rate: Air Mail Delivery (1-3 days)) €34.00 Discount: €0.00 Subtotal: €300.00 Order Total: €64.00 Kind regards, Your Shop Staff https://hyper-vpn.com Notice, the top of my store logo in the beginning of the message, it was hyperlinking to "https://hyper-vpn.com" Also, if you notice both other links in the message, "order can be manages at online..." and "Kind regards, ...." there are links for https://hyper-vpn.com Now, the "https://hyper-vpn.com" is not our website at all, have never heard of it either. All other previous store emails were normal (giving our real shop URL). So, something has edited our system just recently so that the emails being sent out are replacing our store URL's with other URL's that I have never heard of. Also, I just heard from a customer today that they received a notification with links to a separate address of a site "https://www.englandinn.com/index.php?_a=product&product_id=5" So, something is changing this. Has anyone heard of this before? I am not sure if it is a Cubecart vulnerability, or its from my webhosting providor issues? I upgraded to 5.2.16 just now, does anything think this will solve the problem? Please let me know any input, thanks!
  24. Call to a member function select() on a non-object in /XXXX/public_html/plushcatalog/classes/seo.class.php on line 753 I saw that someone was having problems with this message quite a few versions back, but I thought this had been fixed. I'm getting so many of them in a course of a few minutes that the error log is useless to me, as far as spotting any important messages in it. I understood from the other post that this is an unimportant message. If so, is there any way to keep this message from showing?
  25. How do I unblock a locked account? I managed to lock myself out of my own store (lol) by forgetting I had the caps lock on. Now this is not my admin login, this is a customer account I created to test things. That being said, I was blocked from accessing it. I could not find anywhere how to unblock my account (or anyone elses for that matter). I tried to create another account and it blocked the creation of that as well (givenly) but than created it after I had to go in and delete the user.class.php file after 15 minutes of not allowing me to sign in. Not sure why it held onto that information if it was blocked from creating it.
×
×
  • Create New...