How to work with mirrored systems? [closed]

1

I would like to know the logic of working on a web system where I would have a main site and would distribute sites to franchisees in their domains. p>

The entire checkout process should be done on the franchisee's site but the information would be fed into the main site database.

  • Would domains have to be on the same server for this to be possible?

  • Does this system exist or need to be created?

  • Is it possible to work multiple stores in a single database?

  • What is the degree of complexity of such a system?

  • How could food bank products the site of the franchise? Via XML?

Answers can be short as long as you give me an idea of where to start. I think this compares more or less to Polishop. Someone help me?

    
asked by anonymous 12.01.2015 / 21:30

1 answer

3
  
  • Would domains have to be on the same server for this to be possible?
  •   

Not necessarily. You could just create a CNAME entry in the domain pointing to your server. When the page was loaded you could identify the domain from which the request came from, locate the client that owns that domain, and load the associated information.

  
  • Does such a system exist or need to be created?
  •   

I do not know any of the kind that is open or for sale. It is very likely to exist.

  
  • Is it possible to work multiple stores in a single database?
  •   

Yes it is. I believe even that would reduce the complexity of the system. You would only need the customer ID in those tables to associate the information.

  
  • What is the degree of complexity of such a system?
  •   

It would be a slightly complex system but nothing out of this world.

  
  • How could the food bank products the site of the franchise? Via XML?
  •   

If you use this technique the same system for everyone would all come directly from the central bank.

    
12.01.2015 / 22:10