Recent Posts
Drupal 8 Configuration Management
Modules List all modules using Drush drush pm-list --type=Module --status=enabled --no-core --format=list Configuration Drupal Console Setup site for Drupal console:
drupal init --site --no-interaction Generation path: /opt/drupal/web 1 - /root/.console/config.yml 2 - /opt/drupal/console/config.yml Dockerfile WORKDIR/optRUN composer create-project drupal/recommended-project:8.9.3 drupalRUN composer require drush/drushRUN echo '$settings["config_sync_directory"] = "../config/sync";' >> web/sites/default/default.settings.phpCOPY config /opt/drupal/web/sites/config/syncRUN php -d memory_limit=-1 `which drush` site:install minimal --existing-configPrep configuration from production server without Drush Export configuration from web ui. Extract and configuration tarball.
read more
Readme
Create a new post docker run --rm -p 1313:1313 -v $(pwd)/src:/src \ -u `id -u $USER`:`id -g $USER` \ elswork/rpi-hugo:0.74.3 new posts/readme.md Start hugo server docker run --rm -p 1313:1313 -v $(pwd)/src:/src \ elswork/rpi-hugo:0.74.3 server --baseUrl=http://illmatic.local:1313/ -D http://illmatic.local/ --bind=0.0.0.0 -w Build site docker run --rm -p 1313:1313 -v $(pwd)/src:/src \ elswork/rpi-hugo:0.74.3 -D
read more
Drupal 5 to Drupal 7 Migration
I currently manage two Drupal 5 sites.
So much time has passed since Drupal 7 was released, many personal migration scripts found on blogs and forums are no longer available.
I actually did a migration two years ago. Projects got in the way and the SQL files I wrote were lost.
The recommended way The easiest step was to upgrade to Drupal 6 and then to 7. Unfortunately it didn’t work.
read more