Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Deployment and Upgrade process?


Go to End


6 Posts   1447 Views

Avatar
Dave L

Community Member, 60 Posts

8 September 2009 at 1:47am

What is the current method for deployment? I.e.

* Deploying MyWebsite v1.2 -> Test Environment (core install only)
* Deploying MyWebsite v1.3 -> Test Environment (hosting MyWebsite v1.2)
* Upgrading MyWebsite v1.3 with new Silverstripe release core on Development/Test/Production
* Deploying Production data back to development

Does Silverstripe have a way to merge new data created in development (new pages etc.) with data in production (posted blog items)? Or the reverse?

Thanks in advance.

Avatar
Hamish

Community Member, 712 Posts

8 September 2009 at 8:35am

you mean content? The CMS allows you to save drafts and preview them before publishing.

For code, better to use a repo tool like subversion.

Avatar
Dave L

Community Member, 60 Posts

8 September 2009 at 10:39am

I'm planning to use SVN. What I mean is...

- I create v1 of website, say a blogging tool, and this goes to production...
- My customer starts creating blogs on production
- In development, I create v2 of website, with extended blog features (comments, etc.) and new sections like contact form, articles (with "starter" articles added) and new modules like ecommerce. I add an "announcement" blog item in development.

Now, do I simply ftp my v2 root over the top of v1 in production, run http://website.com/dev/build/?flush=1 and all is well? Like new starter articles appear and existing blog content is still there? And "announcement" blog merges with existing blogs in production?

Cheers

Avatar
Hamish

Community Member, 712 Posts

8 September 2009 at 10:43am

No. Content is held in the database.

You can use a default_records method to pre-populate date on dev/build if you need to, but content that has been added via the CMS will have to be re-added when you move your code to the production site.

Avatar
Dave L

Community Member, 60 Posts

8 September 2009 at 10:54am

Ok. Adding content at deploy time shouldn't be a huge problem, my main query is regarding merging database schemes, and it looks like dev/build does this automatically. I.e. - I don't have to write SQL scripts to update my database with a new schema every version.

It doesn't delete tables or fields so I do wonder what the long-term effects of this are.

Thanks Hamish!

Avatar
Willr

Forum Moderator, 5523 Posts

8 September 2009 at 6:00pm

It doesn't delete tables or fields

SS should rename tables which are not being used to _ obsolete_Tablename and if you want fields marked _obsolete I believe there is a dev/cleanup or another database cleanup task which can be ran.