AbleCommerce multi-store question
-
- Ensign (ENS)
- Posts: 19
- Joined: Mon Jun 02, 2008 2:20 pm
AbleCommerce multi-store question
Say I have a client that has two stores store1.com and store2.com.
Can Able handle user security so Bob can mange store1.com, but not store2.com and Sandy can manage store2.com and not store1.com?
If so, can someone explain the setup?
Thanks,
-Richard.
Can Able handle user security so Bob can mange store1.com, but not store2.com and Sandy can manage store2.com and not store1.com?
If so, can someone explain the setup?
Thanks,
-Richard.
- jmestep
- AbleCommerce Angel
- Posts: 8164
- Joined: Sun Feb 29, 2004 8:04 pm
- Location: Dayton, OH
- Contact:
Re: AbleCommerce multi-store question
Are you talking about two stores/two databases? Then it wouldn't be a problem. If you are talking about two domain names going to the same database, then it would be a problem.
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx
-
- Ensign (ENS)
- Posts: 19
- Joined: Mon Jun 02, 2008 2:20 pm
Re: AbleCommerce multi-store question
let's assume the first scenario; two stores, two databases.
Does this mean each database has it own authentication (ac_users)?
-Richard
Does this mean each database has it own authentication (ac_users)?
-Richard
Re: AbleCommerce multi-store question
Yes this means two different installations. Each store will have its own authentication as well.let's assume the first scenario; two stores, two databases.
Does this mean each database has it own authentication (ac_users)?
-Richard
-
- Ensign (ENS)
- Posts: 19
- Joined: Mon Jun 02, 2008 2:20 pm
Re: AbleCommerce multi-store question
If that is the case, is it possible to write something to achieve what I am looking for? (a single login page for two different stores)
If so, what section of the API/Code should I be looking at?
If so, what section of the API/Code should I be looking at?
Re: AbleCommerce multi-store question
User names and passwords are also stored in the database. If I wanted to keep the user names and passwords synchronized in 2 separate databases, I would create a separate process that ran on the server (probably as a service) that periodically synchronized the Users table.
Another approach would be create triggers in both that update the other. But I am personally afraid of triggers because they are (or seem) hard to debug.
Another approach would be create triggers in both that update the other. But I am personally afraid of triggers because they are (or seem) hard to debug.
Re: AbleCommerce multi-store question
Are you looking for customers to have a single page? or just the people managing the store?RevereRichard wrote:If that is the case, is it possible to write something to achieve what I am looking for? (a single login page for two different stores)
If so, what section of the API/Code should I be looking at?
Are the products the same for both stores?
-
- Ensign (ENS)
- Posts: 19
- Joined: Mon Jun 02, 2008 2:20 pm
Re: AbleCommerce multi-store question
Just for people managing the store and lets assume that the products are not the same.
Thanks,
-Richard.
Thanks,
-Richard.
Re: AbleCommerce multi-store question
To me it sounds like you want, 2 sites. with 2 different groups of customers. Different products. But for the managers of the site to only have 1 log in page. After logging in it would take the manager to site1 or site2.
-
- Ensign (ENS)
- Posts: 19
- Joined: Mon Jun 02, 2008 2:20 pm
Re: AbleCommerce multi-store question
yes, that is correct