| 18 | cd /web/transitionnetwork.org/www/sites |
| 19 | mkdir cache |
| 20 | chown www-data:www-data cache |
| 21 | mkdir workspaces.transitionnetwork.org |
| 22 | rsync -av kiwi:/home/live/new-live-data/web/transitionnetwork.org/www/sites/workspaces.transitionnetwork.org/ workspaces.transitionnetwork.org/ |
| 23 | chown -R www-data:www-data workspaces.transitionnetwork.org/files/ |
| 24 | cd /web/transitionnetwork.org/www/sites/default |
| 25 | rsync -av kiwi:/home/live/new-live-data/web/transitionnetwork.org/www/sites/default/files/ files/ |
| 26 | chown -R www-data:www-data files |
| 29 | Databases were imported using a script, /usr/local/bin/mysql-update-from-gaia the two settings.php files were edited to suite. |
| 30 | |
| 31 | There was a problem with missing modules: |
| 32 | |
| 33 | {{{ |
| 34 | Warning: require_once(./sites/all/modules/cacherouter/cacherouter.inc) [function.require-once]: failed to open stream: No such file or directory in /web/transitionnetwork.org/www/includes/bootstrap.inc on line 1009 |
| 35 | |
| 36 | Fatal error: require_once() [function.require]: Failed opening required './sites/all/modules/cacherouter/cacherouter.inc' (include_path='.:/usr/share/php:/usr/share/pear') in /web/transitionnetwork.org/www/includes/bootstrap.inc on line 1009 |
| 37 | }}} |
| 38 | |
| 39 | This modules isn't in svn any more: https://svn.webarch.net/transition/code/trunk/sites/all/modules/cacherouter |
| 40 | |
| 41 | So it was copied over manually: |
| 42 | |
| 43 | {{{ |
| 44 | mkdir /web/transitionnetwork.org/www/sites/all/modules/cacherouter/ |
| 45 | rsync -av kiwi:/home/live/new-live-data/web/transitionnetwork.org/www/sites/all/modules/cacherouter/ /web/transitionnetwork.org/www/sites/all/modules/cacherouter/ |
| 46 | }}} |
| 47 | |
| 48 | |