Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Drupal 7 Multi Sites Configuration
Drupal 7 Multi Sites Configuration

Drupal 7 Multi Sites Configuration: Run multiple websites from a single instance of Drupal 7 with this book and ebook

eBook
$14.99 $16.99
Paperback
$26.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with Print?

Product feature icon Instant access to your digital copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
Product feature icon Redeem a companion digital copy on all Print orders
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Shipping Address

Billing Address

Shipping Methods
Table of content icon View table of contents Preview book icon Preview Book

Drupal 7 Multi Sites Configuration

Chapter 2. Installing Drupal for Multi-site

In the previous chapter we set up a server environment for running Drupal. In this chapter, we are going to install Drupal and create three different sites. We will cover:

  • Downloading and installing the code

  • Creating a default site

  • Adding two additional sites

While we are setting up three sites, there is nothing special about that number. A multi-site can have two or more sites.

Manual setup

When preparing our environment for setting up a Drupal multi-site, we first walked through a setup using a special Vagrant virtual machine profile. Then we looked at the manual configurations necessary for Apache and for MySQL. Specifically, we set up an Apache virtual host capable of listening for all three of our hosts (books.local, cooks.local, and looks.local). Then we created three databases in MySQL: books_local, cooks_local, and looks_local.

Note

It is best to create one database per site. Only when absolutely necessary should you install multiple Drupal sites...

Manual setup


When preparing our environment for setting up a Drupal multi-site, we first walked through a setup using a special Vagrant virtual machine profile. Then we looked at the manual configurations necessary for Apache and for MySQL. Specifically, we set up an Apache virtual host capable of listening for all three of our hosts (books.local, cooks.local, and looks.local). Then we created three databases in MySQL: books_local, cooks_local, and looks_local.

Note

It is best to create one database per site. Only when absolutely necessary should you install multiple Drupal sites into the same database instance. For example, if you are only allocated a single database instance for multiple sites, you can use Drupal's database prefix feature, which is documented online at http://drupal.org/documentation.

Running the custom Vagrant profile gives us not only a complete Linux/Apache/MySQL/PHP stack, but also pre-configures the environment for Drupal. And since Vagrant runs its own virtual server...

Downloading Drupal


In this section we are going to download Drupal and put it in the correct location on the file system. Again, if you have installed the Vagrant profile, this step is unnecessary. This is because the profile already downloaded and unpacked the most recent version of Drupal 7. Here we will see the manual version of the process Vagrant does automatically.

Note

Other Operating Systems

In the last chapter we focused on a Linux setup, but at this point it does not matter which operating system is running. While the commands shown here are on a UNIX shell, the same process is applicable to Windows and OS X. If you are using a database other than a MySQL-like database, you should consult Drupal's documentation to make sure there are no configuration nuances particular to that database.

Drupal is available for download from http://drupal.org/project/drupal. At the time of this writing, Drupal 7.12 is the current release. We will download it and move the contents to the web server...

Installing the first host


With the Drupal source code in the document root and the databases created in MySQL, we are ready to install our first site. There are two parts to installing Drupal. The first is done through the operating system, and involves creating a few directories and a file.

If you are manually installing, you will need to copy the settings file and then create a files directory with the correct permissions.

If you are using the Vagrant installation discussed in the last chapter then you do not need to do either of these things. Vagrant does them for you.

Telling Drupal about our sites

Drupal stores most of its data inside of the database. But some things can (or must) be stored in a file on the filesystem. For example, information about connecting to the database must be stored in a file.

Here is where things get interesting for a multi-site installation. Each of our sites will share the same copy of Drupal. But they will not share the same database. Each will have its own...

Creating the other sites


We spent a long time walking through the process of creating the books.local site. The good news is that the process for creating the other sites is the same. Rather than repeating the process in detail, we will look at the process again in summary form, this time doing two sites at once.

Recall that our remaining sites are cooks.local and looks.local, and that we have already created the databases cooks_local and looks_local, one for each site.

Let's begin, in the Drupal sites/ directory, we need to create two directories, cooks.local and looks.local.

Each directory needs a settings.php file. The easiest way to proceed is to copy the settings.php from books.local and change the database information:

$databases['default']['default'] = array(
'driver' => 'mysql',
'database' => 'cooks_local',
'username' => 'drupal',
'password' => 'secret',
'host' => 'localhost',
);

The lines that typically need changing are highlighted above. And these will need to be...

Getting installation help


Sometimes installations fail. This can happen for a variety of reasons. Sometimes the environment does not fulfill one of Drupal's requirements. Sometimes there is a permissions problem either on the file system or the databases. And sometimes bugs in code turn up. This can be a frustrating experience. Where do you turn for help?

Following are the best resources for trouble shooting a Drupal installation, in order:

  • The README.txt and INSTALL.txt documents: These come packaged with Drupal, and provide a surprising amount of information that will help troubleshoot installation issues. There are even database-specific installation documents (INSTALL.mysql.txt, INSTALL.pgsql.txt, and so on) with information tailored to your selected database environment.

  • The online Drupal installation manual: http://drupal.org/documentation/install. This covers the installation process in depth, with many extra notes for exceptional circumstances.

  • Community support: Available...

Summary


This chapter focused on installing Drupal. We spent most of the time looking at the first site, paying attention to the details as we walked through the process of installing the books.local site. From there, we installed the other two sites in rapid succession, and by the end of the chapter we had three sites running on a single copy of Drupal's code.

In the next chapter we will work with Drupal's module and theme systems, seeing how a multi-site installation works with these.

Left arrow icon Right arrow icon

Key benefits

  • Prepare your server for hosting multiple sites
  • Configure and install several sites on one instance of Drupal
  • Manage and share themes and modules across the multi-site configuration

Description

Drupal is one of the most powerful PHP Content Management Systems there is. However, why would you install a CMS for every site you build? With just one copy of Drupal you can host several sites. Drupal has long had multi-site support, and Drupal 7's support is even better than previous versions. Drupal 7 Multi-Sites Configuration will teach you how to host several websites on a single copy of Drupal. You will learn how to create different sites, each with its own domain, content, and theme. This valuable information will help you to save time by managing modules and sharing them across several sites as well as administering your sites all in one place.This book will show you how to configure a system for multi-site, and then install several sites on one copy of Drupal, all with their own domain name and database. Learn how to install and share modules and themes, configure Apache, PHP, and MySQL for multi-site, and then manage the site. Once your site system is successfully set up, discover some of the advanced configurations possible with Drupal multi-site, as well as how to upgrade and maintain your sites.

Who is this book for?

This book is for Drupal site builders. It is assumed that readers are familiar with Drupal already, with a basic grasp of its concepts and components. System administration concepts, such as configuring Apache, MySQL, and Vagrant are covered but no previous knowledge of these tools is required.

What you will learn

  • Configure MySQL and Apache for hosting multiple sites
  • Prepare Drupal 7 to host more than one site
  • Install several sites on one instance of Drupal
  • Manage, share, or isolate modules and themes in a multi-site configuration
  • Care for your multi-site server, safely managing and upgrading it
  • Rapidly build a multi-site testing environment with VirtualBox and Vagrant
  • Extend the core multi-site configuration with add-on modules
Estimated delivery fee Deliver to United States

Economy delivery 10 - 13 business days

Free $6.95

Premium delivery 6 - 9 business days

$21.95
(Includes tracking information)

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Mar 26, 2012
Length: 104 pages
Edition : 1st
Language : English
ISBN-13 : 9781849518000
Concepts :
Tools :

What do you get with Print?

Product feature icon Instant access to your digital copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
Product feature icon Redeem a companion digital copy on all Print orders
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Shipping Address

Billing Address

Shipping Methods
Estimated delivery fee Deliver to United States

Economy delivery 10 - 13 business days

Free $6.95

Premium delivery 6 - 9 business days

$21.95
(Includes tracking information)

Product Details

Publication date : Mar 26, 2012
Length: 104 pages
Edition : 1st
Language : English
ISBN-13 : 9781849518000
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 59.98
Drupal 7 Multi Sites Configuration
$26.99
Drupal 7 Multilingual Sites
$32.99
Total $ 59.98 Stars icon

Table of Contents

5 Chapters
Multi-site Drupal Chevron down icon Chevron up icon
Installing Drupal for Multi-site Chevron down icon Chevron up icon
Settings, Modules, and Themes Chevron down icon Chevron up icon
Updating Multi-site Drupal Chevron down icon Chevron up icon
Advanced Multi-sites Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.2
(9 Ratings)
5 star 44.4%
4 star 44.4%
3 star 0%
2 star 11.1%
1 star 0%
Filter icon Filter
Top Reviews

Filter reviews by




Doug Jun 25, 2012
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Let's get the two biggest benefits of "Drupal 7 Multi Sites Configuration" Quick Read book out of the way at the top...the book is very focused and it's quick. It may seem obvious from the title and the series, but most of the time when you have a specific task to perform you either have to find a massive tome that has one decent chapter on what you REALLY want to do, or you have to surf the net reading a lot of articles by a lot of different people that approach the problem from a lot of different angles, just hoping that you can learn enough to accomplish the task at hand.If the task at hand is Multi Sites Configuration, this book will save you time and grief, as it covers the topic in sufficient depth to take anyone who is reasonably tech savvy from knowing what they want to accomplish to having it done. There are several ways to install and work with Drupal to avoid reinstalling the whole stack for each website. This book covers the different scenarios completely, including the always present "gotchas", and informs you about the pluses and minuses of each method and scenario.Having a single installation for multiple sites makes maintenance and updates easier, but brings consideration about the sharing of modules and themes and how to handle customization of each for specific sites. There is a world of flexibility to this way of using Drupal 7 that I didn't know about until I read the book, which I was able to do in an evening because it's a Quick Read. Really.If you need or want to support multiple sites, or even separate portions of a single domain, with one installation of Drupal 7, you need to read through this book, pick your path, then keep it by your side as you set up your environment.As I said at the beginning, it's quick, it's specific and for this topic, it is complete.
Amazon Verified review Amazon
ThomasT Jun 29, 2012
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The entire collection of books on Drupal 7 offered by Packt Publishing has to be one of the best series of books you can buy if you are interested in really learning Drupal. Though there is no suggested "learning path", if you carefully review their titles, you can see where you should start based on your own experience level. Regardless, even their straightforward "Drupal 7" book offers something for experienced Drupal hands as well.The quality comes through via the authors and the content chosen. All the books are full of detailed and very informative hands-on examples. I have had experience with other Drupal books as well and have found even the supposedly "advanced" example less detailed and comprehensive than in the books from this publisher.The examples in this edition are slightly out-of-date and I did have enough difficulty with the Vagrant set up to simply skip it and use the manual set up options. Even there, the instructions had a few minor misses but if you're not familiar with your Apache's files, then you might not be at an appropriate level for this book.
Amazon Verified review Amazon
J G Sivaji Jun 19, 2012
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The Drupal 7 Multi-sites Configuration book ends up the user as an adroit in Multi-site environment with its awesome explanation by both theoretically and practically. The worth of this book can be understood by the way in which it tends to quest our thirst of knowledge. Read full review at [...]
Amazon Verified review Amazon
Moon Dog Jun 26, 2012
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Initially I was skeptical if multi-site Drupal really required an entire book? Perhaps a bit biased, having been using multi-site installs since the early days of Drupal 6. However, it quickly became obvious that this book was covering more than just the simple, "add another folder to the sites folder and name it as the url". The book has about 78 pages of actual content, flipping through the Preface and what the book covered, the question then became, can Matt Butcher really cover that much content in only 78 pages?!This book is much more than just step 1, step 2, blah, blah. It really is a good book for both beginners and more advanced users. Installing multi-site Drupal is actually pretty simple, however many people really seem to get stumped by it. But once you understand it, it is a breeze. The install process is explained in great detail and brings clarity to what all the files and directories in "sites" are about. It will also help the beginner easily understand why there is a "sites/all" and "sites/default". Too many other books simple read use "sites/all", but it isn't discussed why or why _not_ you might want to. On the advanced side, there are examples of sharing configuration, code, themes, users and content between sites; this isn't newbie stuff.In many ways this book covers more than just multi-site topics, as it explains some of the structure that can trip up those new to Drupal, and it gets the user up and running quickly (using the Vagrant install). I would really recommend this little book to all Drupal beginners, whether multi-site is on their radar or not. It just hits so many simple stumbling issues quickly and efficiently. It would also be advised for advanced users looking to push multi-sites, wanting to share content, and users. There are also some good best practices stuff on backups, and warnings on when not to share between installs.ConclusionRecommended for anyone just starting with Drupal in general, and further for anyone interested in running Drupal multi-sites. There is decent documentation on Drupal.org for setting up multi-sites, but it isn't as concise, or as well organized as the information in the book. You will be up and running much quicker with Drupal 7 Multi-Sites Configuration!DisclaimerThe copy of Drupal 7 Multi-sites Configuration that was used for this review was provided at no charge by Packt Publishing. However, no other compensation was received for this review and this review was published without prior review or any influence from Packt Publishing.
Amazon Verified review Amazon
Fresno Fitness LLC Jun 25, 2012
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
The new book Drupal 7 Multi-sites Configuration by Matt Butcher discusses how to run multiple websites from one Drupal instance. Novice and beginning Drupalists should remember that mini-books by design do not dive deeply into any single concept but typically provide a general overview. Drupal 7 Multi-sites Configuration follows this trend as it introduces the broad concept of multi-site deployment to the reader.Butcher's book was primarily written for the intermediate/advanced Drupalist who needs to design, deploy, or maintain more than one Drupal website and who are comfortable with the command line, changing permissions, installing packages and/or applications. The advanced Drupalist reader will appreciate the brisk pace that Butcher covers a prepackaged deployment and the depth at which he discusses the manual installation in this mini-book. Advanced Drupalists will learn how to manually configure two or more sites from one Drupal instance as Butcher methodically discusses editing hosts files, the .htaccess file, and the /all and /default folders.Because many beginning Drupalists may find a multi-site configuration to be a challenge Butcher offers the beginner a preconfigured deployment package that is easy to install and use. This preconfigured package should allow a beginner to follow along with the book without having the burden of manually configuring their personal development environment on their local machine or on a remote server.The first half of the book focuses on multi-site configuration options, setting up a local server environment, installing Drupal, and configuring several sites to run from one Drupal instance. The remainder of the book discusses modules, themes, adding features to multi-sites, and updating a multi-site.Overall this book teaches the reader to avoid the common pitfalls of multi-site configurations in order to keep a Drupal site secure, safe, and stable. Drupal 7 Multi Sites Configuration
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is the digital copy I get with my Print order? Chevron down icon Chevron up icon

When you buy any Print edition of our Books, you can redeem (for free) the eBook edition of the Print Book you’ve purchased. This gives you instant access to your book when you make an order via PDF, EPUB or our online Reader experience.

What is the delivery time and cost of print book? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela
What is custom duty/charge? Chevron down icon Chevron up icon

Customs duty are charges levied on goods when they cross international borders. It is a tax that is imposed on imported goods. These duties are charged by special authorities and bodies created by local governments and are meant to protect local industries, economies, and businesses.

Do I have to pay customs charges for the print book order? Chevron down icon Chevron up icon

The orders shipped to the countries that are listed under EU27 will not bear custom charges. They are paid by Packt as part of the order.

List of EU27 countries: www.gov.uk/eu-eea:

A custom duty or localized taxes may be applicable on the shipment and would be charged by the recipient country outside of the EU27 which should be paid by the customer and these duties are not included in the shipping charges been charged on the order.

How do I know my custom duty charges? Chevron down icon Chevron up icon

The amount of duty payable varies greatly depending on the imported goods, the country of origin and several other factors like the total invoice amount or dimensions like weight, and other such criteria applicable in your country.

For example:

  • If you live in Mexico, and the declared value of your ordered items is over $ 50, for you to receive a package, you will have to pay additional import tax of 19% which will be $ 9.50 to the courier service.
  • Whereas if you live in Turkey, and the declared value of your ordered items is over € 22, for you to receive a package, you will have to pay additional import tax of 18% which will be € 3.96 to the courier service.
How can I cancel my order? Chevron down icon Chevron up icon

Cancellation Policy for Published Printed Books:

You can cancel any order within 1 hour of placing the order. Simply contact customercare@packt.com with your order details or payment transaction id. If your order has already started the shipment process, we will do our best to stop it. However, if it is already on the way to you then when you receive it, you can contact us at customercare@packt.com using the returns and refund process.

Please understand that Packt Publishing cannot provide refunds or cancel any order except for the cases described in our Return Policy (i.e. Packt Publishing agrees to replace your printed book because it arrives damaged or material defect in book), Packt Publishing will not accept returns.

What is your returns and refunds policy? Chevron down icon Chevron up icon

Return Policy:

We want you to be happy with your purchase from Packtpub.com. We will not hassle you with returning print books to us. If the print book you receive from us is incorrect, damaged, doesn't work or is unacceptably late, please contact Customer Relations Team on customercare@packt.com with the order number and issue details as explained below:

  1. If you ordered (eBook, Video or Print Book) incorrectly or accidentally, please contact Customer Relations Team on customercare@packt.com within one hour of placing the order and we will replace/refund you the item cost.
  2. Sadly, if your eBook or Video file is faulty or a fault occurs during the eBook or Video being made available to you, i.e. during download then you should contact Customer Relations Team within 14 days of purchase on customercare@packt.com who will be able to resolve this issue for you.
  3. You will have a choice of replacement or refund of the problem items.(damaged, defective or incorrect)
  4. Once Customer Care Team confirms that you will be refunded, you should receive the refund within 10 to 12 working days.
  5. If you are only requesting a refund of one book from a multiple order, then we will refund you the appropriate single item.
  6. Where the items were shipped under a free shipping offer, there will be no shipping costs to refund.

On the off chance your printed book arrives damaged, with book material defect, contact our Customer Relation Team on customercare@packt.com within 14 days of receipt of the book with appropriate evidence of damage and we will work with you to secure a replacement copy, if necessary. Please note that each printed book you order from us is individually made by Packt's professional book-printing partner which is on a print-on-demand basis.

What tax is charged? Chevron down icon Chevron up icon

Currently, no tax is charged on the purchase of any print book (subject to change based on the laws and regulations). A localized VAT fee is charged only to our European and UK customers on eBooks, Video and subscriptions that they buy. GST is charged to Indian customers for eBooks and video purchases.

What payment methods can I use? Chevron down icon Chevron up icon

You can pay with the following card types:

  1. Visa Debit
  2. Visa Credit
  3. MasterCard
  4. PayPal
What is the delivery time and cost of print books? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela