e-commerce

What ecommerce script is /pws/ShippingOptions.ice?

假装没事ソ 提交于 2019-12-06 16:06:25
问题 I recently noticed lots of stores using the same URLS I cant seem to find what it is that is powering their stores: /pws/ShippingOptions.ice?viewBasket=true If you Google that you can see it has lots of different sites that it uses. My first choice was Venda, then tried ATG Commerce, IBM Websphere.. I can't seem to figure it out! Thanks 回答1: The script is FrescaCommerce Platform. Now merged as BT Expedite & Fresca, Multichannel Retail. 来源: https://stackoverflow.com/questions/7074770/what

asp.net ecommerce solutions [closed]

六月ゝ 毕业季﹏ 提交于 2019-12-06 15:43:43
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I'm working on several ASP.NET ecommerce projects where we're using Aspdotnetstorefront solution. It is not so bad. It has a lot of useful features, it is extensible, it is stable, but... the source code is like nightmare. If you need customize something - it becomes a problem for you, because you need to change

In frontend how to get which language is active among installed different languages in Open cart?

99封情书 提交于 2019-12-06 15:07:16
问题 I have installed and themed Opencart 1.5.4x with multiple languages (English, Duch, German) on live server. Opencart application works properly with these languages. When I click on the language link and browse whole site, the content of the site is translated in this language, but how to find out, programatically, which language is active? I need to show the user which language is currently active. 回答1: I guess You should call $this->config->get('config_language_id'); within a controller or

Amazon-like interface for selecting product size and color (i.e., click a little red box to select a red product, etc)

[亡魂溺海] 提交于 2019-12-06 12:10:01
问题 In my online store, I want to implement an interface like Amazon's for selecting product size and color. I.e., instead of radio buttons for the different sizes / colors, the user should see a bunch of little boxes, each containing either a swatch of color or the name of a size. When the user clicks a box, the border should change to indicate it's selected. I'm using jQuery already, so I thought that the jQuery selectable widget would be a natural way to implement this. Unfortunately, it doesn

Prestashop 1.6 custom module not displaying up on front end

て烟熏妆下的殇ゞ 提交于 2019-12-06 11:20:15
问题 My module is not displaying on the frontend , I was following this link doc.prestashop.com/display/PS15/Creating+a+PrestaShop+module to create a custom module in prestashop 1.6.I've checked the position , cleared and disabled the cache , uninstalled and reinstalled the module but nothing worked so far . p.s the config.xml was generated automatically. here is my mymodule.php code <?php if (!defined('_PS_VERSION_')) exit; class MyModule extends Module { public function __construct() { $this-

Magento - get all categories containing products by brand

点点圈 提交于 2019-12-06 10:40:51
I've spent a bit of time trying to figure this out but to no avail. If I had a series of pages that displayed a collection of products filtered by manufacturer, and I wanted some navigation in, say, the left column on each of these pages, which contained a list of categories containing products by the current manufacturer, how would I go about populating this without resorting to some horribly slow code? (There are a few thousand products). I could put something similar to this in a loop, iterating through each category, seeing if there are any results for a manufacturer returned for each

Audit logging for products data?

匆匆过客 提交于 2019-12-06 09:51:15
When the staff change the information of product name, option name or prices. It should insert the data into history log and who done it. items table: item_id (PK) item_name item_description Note: item prices are in the item_options table item_options table: option_id (PK) item_id (FK) option_name option_price A item can have 1 or more options. If I want to change the name items.item_name , It should copy the current record to the history table, delete current record from items table and then insert a new record with the new information in the items table? What about the item_options , how

how to Commercially Licence Java Software? [closed]

∥☆過路亽.° 提交于 2019-12-06 08:38:33
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 4 years ago . I have written a Desktop based accounting software in Java. I want to put a key or licence or other kind of security to prevent redistribution of the software by the client. I just want to know how to go about it? 回答1: The short answer: DRM doesn't stop piracy. It only hurts your

Multi merchant payment system with PayPal

让人想犯罪 __ 提交于 2019-12-06 08:22:45
问题 I need to build web application where users can sell goods. Each user should be able to get money directly on his PayPal account. Can you suggest which PayPal service/payment method (or other payment system) it is better/safely to use in this case? Thanks in advance 回答1: This is easily set up (if I read your requirements correctly). You would have to create your part of the system, but that's obvious. The rest, specifically vendor payments, could be handled all by PayPal. PayPal could process

Mysql database design for customer multiple addresses and default address

旧城冷巷雨未停 提交于 2019-12-06 07:59:38
问题 I am creating the database structure of an ecommerce with Mysql and INNODB engine. Point 1 : To create multiple addresses for the customers i have this tables Am I doing it in the correct way? And how should I store the default address (in which table)? Point 2 : I have another table called "Suppliers", should i just connect it to addresses with a "supplier_address" table or is there a better way? Point 3 : What about the tables cities and countries? Should i add something or is that ok?