php - Drupal deployment - blog content separation from node table -


i have 3 environments : dev, staging , live .

i use drupal , content pages need synchronized when deploy dev-> staging -> live . use python deployment script (migraine) copy drupal mysql tables want migrate .

my problem don't want migrate blog articles dev because don't want force blog editors publish articles twice (on live , dev) when release don't destroy new blog posts.

the problem blog posts stored in node mysql table . need deploy node table every time new pages improvements, etc. node table holds content pages on drupal website.

how can sort out without having customize drupal blog module ?

bare in mind can't customize deployment script deploy nodes don't have type='blog' because ids sequecial , blog articles erased when on dev add new pages.

a couple of thoughts.

  • if node id thing stopping excluding blog, use uuid module give each node universally unique identifier.

  • rather relying on python script migrate content, have looked of drupal modules written purpose? there's deploy module , migrate module among others.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -