How to Install diazo Premium Plone Themes on Plone 4.1
The following are general instructions for premium diazo themes installation on Plone 4.1. There is INSTALL.txt file in every theme's /docs directory with the exact installation instructions for every theme.
After you compete buying process for any of Quintagroup Premium Themes on 2CheckOut, Inc., you will receive personal <customer_id> and <customer_password>, required for premium diazo themes installation.
To install this diazo theme on your Plone 4.1 site:
- Open buildout.cfg file in the root of your instance
- Add the following address to the list of find-links. Note: insert your own <customer_id> and <customer_password> into the link below
[buildout] find-links = ... http://dist.quintagroup.com/products http://<customer_id>:<customer_password>@dist.quintagroup.com/skins/quintagroup.theme.themename
- Add quintagroup.theme.themename
to the list of eggs to install
[instance] eggs = ... quintagroup.theme.themename
- Re-run buildout with the following command in the terminal
./bin/buildout
- Restart the Zope server, for example, with the following command in the terminal
./bin/instance restart
- On your Plone site go to Site Setup -> Add-ons and select the theme among products available for installation and press Activate.
Installation: development mode
If you want to customize purchased diazo theme - please use the following installation instructions:
- In the root of your instance run the following command, specify your own <customer_id> and <customer_password>. This will download quintagroup.theme.themename package into src directory
$ easy_install -f http://<customer_id>:<customer_password>@dist.quintagroup.com/skins/quintagroup.theme.themename -b src -e quintagroup.theme.themename
- in buildout.cfg file of your buildout add quintagroup.theme.themename to the list of eggs you are developing and to the list of eggs to install
[buildout] ... develop = src/quintagroup.theme.themename ... eggs = ... quintagroup.theme.themename
- Re-run buildout
$ ./bin/buildout
- Start instance in development mode
$ ./bin/instance fg
- On your Plone site go to Site Setup -> Add-ons and select the theme among products available for installation
and press Activate.


