Jump to content

Search the Community

Showing results for tags 'admin'.

  • 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

Found 17 results

  1. This is for CubeCart 5.2.2 -- the edits should be the same, but maybe with nearby line numbers, for other versions. When the store owner administratively creates an order for a customer, and a digital product is added to that order, CubeCart does not attempt to also enable the ability for that customer to download that product. After performing the following edits: * When the admin moves the order from Pending to Processing (then, if this is a digital-only order, Cubecart moves it to Complete), CubeCart will email this message: Your Purchased Downloads with a viable link to the digital product. * The link will also appear in the customer's Account page, Digital Downloads section. I have not tested various permutations, such as, when adding a second digital product to a Completed order. Will emails be sent? What might happen to the existing digital product record in the CC_downloads table? Note: If you find that downloads are expiring immediately or in the past, make sure you have the following settings: * Store Settings, Stock tab, "Download expiry time (in seconds)" is blank or a number. * Store Settings, Advanced tab, correctly chosen the timezone you want your business to be operating in. Also, you may not need to enter anything here, but the "UTC Offset" is the number of seconds between where the server hosting your site is located and the time where your business is located: earlier (positive) or later (negative) than you. To get a good idea of what you need to put in this field, immediately after you log-in as an admin, got to the Staff Access Log. Calculate the number of hours you need to add or subtract from the time shown to get the time desired and multiply that by 3600. In the file, admin/sources/orders.index.inc.php: Near line 67: $GLOBALS['db']->update('CubeCart_order_inventory', $data, array('cart_order_id' => $order_id, 'id' => (int)$data['id'])); Add AFTER: // Updating a download not necessary (I hope) Near line 61: unset($record); } } // Update Products Add BEFORE: // Also insert a download if(isset($record['digital']) && $record['digital']) { $record['customer_id'] = (isset($_POST['customer']['customer_id']) && !empty($_POST['customer']['customer_id'])) ? (int)$_POST['customer']['customer_id'] : 0; $record['accesskey'] = md5($order_id.(int)$data['product_id'].date('cZ@u').mt_rand()); $record['expire'] = ($GLOBALS['config']->get('config', 'download_expire')>0) ? time() + $GLOBALS['config']->get('config', 'download_expire') : 0; $GLOBALS['db']->insert('CubeCart_downloads', $record); } Near line 60: $GLOBALS['db']->insert('CubeCart_order_inventory', $record); Change to: $record['order_inv_id'] = $GLOBALS['db']->insert('CubeCart_order_inventory', $record); // Capture inserted record id Near line 40: $GLOBALS['db']->delete('CubeCart_order_inventory', array('cart_order_id' => $order_id, 'id' => (int)$value)); Add AFTER: // Also remove from downloads $GLOBALS['db']->delete('CubeCart_downloads', array('cart_order_id' => $order_id, 'order_inv_id' => (int)$value));
  2. How to force CC 5 to redirect admin access always via ssl? Thanks, Peter
  3. So, I've had this issue since CC3. And I want to fix it in 5. How can I add a couple of links to the admin orders overview screen? Basically, I want a link to PAYPAL and a link to my shipping carrier. What do I need to edit to get this to work? Here's my story on this. CC5 is great, but I still am stuck with Paypal and as I understand it, there is no way to fully integrate Paypal into CC. By that, I mean I can not have information from Paypal inserted automatically into the CC orders. For instance Tracking information when shipping through Paypal. Paypal is my only payment option, so when they pay I use their confirmed address in Paypal to ship. This creates a tracking number in Paypal that I need to manually copy over to the cubecart orders. From there, I used to be able to use Paypal to request carrier pickups, but that link in Paypal is broken so I do that manually now as well. I hate Paypal more and more everyday, but it seems to be the most readily acceptable payment form online. So some minor tweaks to put an admin at ease is great! Thanks!!
  4. In the admin area, when viewing the orders list and the products list, when you click on any page numbers you are bounced back to the overview/dashboard. I can't navigate to the second page of products to edit them, or view any orders after the first page. v4.3.4 php v5.3 Recently moved from a different server, that is when it broke. The old server was running an older version of php. Not sure what went wrong.
  5. Hi, I'm Using cubecart 5.2.1. When I go to admin section and click on sales reports under Advance in the left sidebar. It displays the content of orders page (admin.php?_g=orders), however the URL says (admin.php?_g=reports). Please help me find the file where I need to change/Modify code to fix this.
  6. In the database table CC_inventory, the 'updated' column holds a Date/Time data type. Under certain circumstances, this column holds 0000-00-00 00:00:00. (I don't know how it got that way.) Queried by products.index.inc.php near line 1216, where later $updated_time is set to the column value, then used as a looks-like boolean. Since the string contains characters other than zero/decimal, this results in a true result and the Product Inventory list displays that string. The expected display is a phrase that says: Unknown. Suggest: ... = ($updated_time !== "0000-00-00 00:00:00") ? ... (Just mentioning it here until there is a publicly accessible bug tracker put online.)
  7. My CC Version 5.1.1 In admin every order reflects, like decline or payment not received. Is this as per Cube Cart? In admin all the order reflects. As it should be only the Original order should reflect in back end. Pleas let me know if any one is aware about it. Thank You, Jayson Rexs
  8. CubeCart Versão: 4.4.5 PHP Versão: 5.3.26 MySQL Versão: 5.1.68-cll Hi everyone, This is my cubecart version, show above. My costumers do normally all orders, but it happened some times that different costumers made orders and i can't see products list on backoffice, but anywhay it calculates right amount. I was on phone with a costumer and he told me he could see perfect invoice with all products. Can anyone tell me what could be the problem? here is Printed Invoice from backoffice: Factura / Recibo para: Jun 18 2013, 14:19 PreçoProduto 0 x () Sub-total: €32.00 Desconto: €0.00 Envio: €4.10 Taxa total: €8.30 Total: €44.40 best regards, Margarida
  9. Hi again, I seem to have a bit of a bug going on in my cubecart software. Not sure what caused this, but I only found out now I received a larger order. Most of the orders I get only contain 1 to 5 products. Yesterday I received one and the order was duplicated when I checked it in the admin. I contacted the customer and she made a screenshot for me so I know that the order looked correct in her email notification. See the screenshots. 'bestelling1' shows what the customer sees. 'bestelling2' shows what I see in the admin. Does anyone have any ideas? Or should I just contact Cubecart directly for this? I didn't see this reproduced before. I am using the latest version of cubecart and didn't do any special modifications, except some skin changes. But never changed anything for the order pages. Kind Regards, o: Miriam
  10. I had a new CubeCart installed yesterday by you and the username and password I was assigned won't log me in. Can anybody help?
  11. Hey Guys, Was hoping for a bit of help. My client sells tickets for events and they require to export the sales report to manage the e-tickets when the customer brings their print-off to their event/product they have bought a ticket for. http://www.mygigticket.com Unfortunately cubecart doesn't provide the product name in the sales report, only the order id, which then has to be cross referenced to find the event. This isn't very convenient and have been trying to figure out how to add product name to the report. I can see that the report in the admin is using the CubeCart_order_summary table, But I need the table in the cubecart CubeCart_order_inventory which associates the order number with the product. Can anyone help with a potential solution? Thanks in advance.
  12. I did understand that it should be possible to set sorting of the products in the categories by default within the adminpanel from this version 5.1.5 of. But I can't find the settings.... can you please explain how to sort my products? Kind Regards, Marcel I use 5.1.5, I just saw below my message it states 5.1.4. I just have to change it.
  13. Hi there, My client is working with 5.14. Now they constantly receive a notification that the shop needs an update when they login in the admin. Since I payed money to remove all those CC copyright links and stuff the last thing my client (and I) wants to see this annoying notification every time they log in. So my simple question is: How to remove this update notification permanently? Kind regards, Boudi
  14. Admin > Store Settings > Layout > Popular and Latest Products Show 'Latest Products' on homepage? = YES Number of 'Latest Products' to display = 9 Number of popular products to display = 6 Source data for popular products = Products Sales (I've also tried Product Views) Latest Products show up on the homepage but Popular Products do not. /templates/content.homepage.php has code for Latest Products but none for Popular, could that be the issue? This post has a manual method that works, modify main.php with conditional logic instead of main.php (which I would prefer to reduce conditional logic processing) perhaps the Admin option is broken and this is the only way? http://forums.cubeca...pular +homepage
  15. When in free mode CC5 has an Admin Logo which links to the Admin Dashboard - and it disappears when you license the store. We kinda like it and like to have the store branded. The Admin Logo feature does not have the Admin Skin so no way to do it there. I grabbed the code from the free store and added a logo. file: /admin/skins/default/templates/main.php image: /admin/skins/defaults/images/Admin_Logo.png image size: 32 x 156 max height and width link: ? (takes you to the dashboard) Code: <span id="logo"><a href="?"><img src="{$SKIN_VARS.admin_folder}/skins/{$SKIN_VARS.skin_folder}/images/Admin_Logo.png" alt="Mega Enterprises" title="Mega Enterprises" /></a></span> <div id="header"> <span id="logo"><a href="?"><img src="{$SKIN_VARS.admin_folder}/skins/{$SKIN_VARS.skin_folder}/images/Admin_Logo.png" alt="Mega Enterprises" title="Mega Enterprises" /></a></span> <span class="user_info">{$LANG.settings.title_welcome_back} <a href="?_g=settings&amp;node=admins&amp;action=edit&amp;admin_id={$ADMIN_UID}">{$ADMIN_USER}</a> - [<a href="?_g=logout">{$LANG.account.logout}</a>]</span> </div>
  16. I just installed CubeCart-5.1.4 last night (after a lot of struggle with the session path, which I have fixed it) and today I tried to login like Admin and nothing happens, I mean nothing, no error message, no redirection, nothing. I tried on Firefox, Chrome and IE=nothing. The page is reloaded and that's all. I checked the database, is all ok, changed the password, deleted the salt=nothing. Deleted the cache=nothing. Tried to use an admin direct URL (admin.php?_g=orders)=nothing Deleted browser cache, deleted cookies=nothing No error log, I even deleted the sessions in the database, still can't login. It's a hosting issue ?(Godaddy hosting), it's a ioncube issue (which I installed), a PHP issue ? (PHP 5.2), What is happening? Any idea?, thanks
  17. Is it possible to manually change the stock level to zero in the admin? I had an off-site order and wanted to set the stock level via the admin myself, but it won't allow me to. The lowest that field or the warning field will go is 1. I'd like to be able to have it at zero and show it out of stock on the front end. Thanks!
×
×
  • Create New...