Download the PHP package hmphu/magemulti without Composer
On this page you can find all versions of the php package hmphu/magemulti. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hmphu/magemulti
More information about hmphu/magemulti
Files in hmphu/magemulti
Package magemulti
Short Description Something that similar to Magento Go service :). This extension allow you host multiple clients on the same Magento codebase
License OSL 3.0
Informations about the package magemulti
MAGENTO MULTI CLIENTS
Something that similar to Magento Go service :)
This extension allow you host multiple clients on the same Magento codebase. Every single client has their own local.xml and modules/*.xml directory. That means you can setting separate databases, caching services and modules per clients.
I. Installation
Via modman
Via composer
II. Structure
Every clients will have seperate config, media, cache, report, ...
directories under the clients
directory. This prevents file collisions and lets you use a single CDN domain.
Config directories
Media directories
Var directories
III. Server settings
1) The CLIENT_CODE
environment variable
To make Magento work with the correct database and client's folder I had to modify the index.php
and Mage.php
files. This is done by two git patches in this repository and it will checks the CLIENT_CODE
variable to know wich client this visited site is.
See index.php Mage::app()/Mage::run() is intialized.
2) NGINX configuration
Most of this is typical Magento Nginx config. The important lines are: fastcgi_param CLIENT_CODE foostore;
3) APACHE configuration
Most of this is typical Magento Apache config. The important lines are: SetEnv CLIENT_CODE foostore
When you setup new domain and visit the site it will open the Magento Installation page and you can continue setup your magento site. The module will create new directories and new local.xml
file under the clients
folder
IV. CRON configuration
Because Magento need to known the CLIENT_CODE
to run exactly site so I had to created new mcron.php
and mcron.sh
files. This will looks for folders in clients
folder which are CLIENT_CODE
So you have to setup your crontab to run mcron.php
and mcron.sh
instead of the default magento files (they are cron.php
and cron.sh
)
Example:
V. To Do
- Tests and CI
- Shell script
- Make it work with Aoe_Scheduler module
- Bash script to create new client sites