I've been trying to build and deploy a website running on Orchard CMS. I've previously donwloaded Orchard, set up a development environment, made a few modifications to the source, added and modified a theme, added som content and so forth. I've been using the SQL CE as database. Now I want to build and deploy the complete website. I've built a deployment package by running the build script, as described here. It's easy to simply ftp the built package to the hosting server. However, when visiting the site I now get the install a new site procedure. Apparently, the cms settings and content from my development environment have not been reflected in the deployment package. Thus, I need to copy all the content and re-do all the settings, including creating all widgets etc. again.

Do anyone have any good idea on how to publish an Orchard site from a development to a production environment, including the cms settings, widget setings, content, etc? All guides I've found on the web describe how to use WebMatrix to deploy an Orchard site to shared hosting or Azure, but all of those guides end up with having a clean Orchard installation. What I would like to achive is to develop the site locally, and then push the entire site to the hosting server.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

If you have built a deployment package and transferred it to your server (via FTP), you are almost done. There are two things you have to do after that. Remember, do not run the first-time setup.

  1. Copy the ~/App_Data folder from development to production. If transferring the files with ftp, make sure to transfer in binary mode. Make sure that the account, under which the AppPool runs has read/write permissions to that folder.
  2. If you use SQL Server Compact. Do nothing - the database has already been copied in 1.
  3. If you use SQL Server 2005/2008 database. Migrate your db to production environment. Next, change the connection string to point to the new database inside Settings.txt file located under ~/App_Data/Sites/Default.

After that, you can run your site and everything should be ok. So in your scenario, you can only copy the folder from 1. and you'd be set.

link|improve this answer
I tried that exact method, but when I go to the site I get the an "Illegal characters in path." error. The strange thing is that the erranous path is a path at my local filesystem: Orchard.WarmupStarter.Starter.OnBeginRequest(HttpContext context, Action`1 registrations) in c:\Projects\Site\src\Orchard.Startup\Starter.cs:20 - This baffles me a bit since I have a hard time understanding why there is a hard reference to a file at a local filesystem. Got any ideas? – Clean Jun 19 '11 at 20:51
Found the reason for this error here: orchard.codeplex.com/discussions/252775 Apparantly it's very important that settings.txt in App_Data is transfered as binary and not ascii. However, the settings for all my added modules seems to be lost. Are not these persisted in the database? – Clean Jun 19 '11 at 21:02
All module settings are persisted in the DB. I forgot to add one thing - you should enable all modules you had enabled in production env - from Dashboard/Modules panel. Clean install has all custom modules turned off by default. – Piotr Szmyd Jun 19 '11 at 21:29
Thanks for all your help. I tried to enable them from Dashboard/Modules, but they were not even there. So I had to go to the gallery and install them again. During the installation Orchard backed up the old version - so even tho the modules existed they were not shown on the Dashboard/Modules panel. Possible bug perhaps? – Clean Jun 19 '11 at 21:37
Don't install those modules directly from the Gallery, as all related data is in the db and installation of some modules may fail (trying to create existing tables). Just copy the modules you had in Orchard.Web/Modules directory on your dev env to ~/Modules folder on production. Everything should work ootb. – Piotr Szmyd Jun 19 '11 at 22:00
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.