By editor, 18 January, 2024 Tokens for file upload url Tags Drupal 10 In Drupal 10, you can customize the file upload path using tokens. Tokens in Drupal are placeholders that get replaced with dynamic values when the content is being displayed or when files are uploaded.
By editor, 17 January, 2024 Tips for Docker Tags docker Linux How to run commands as root / sudo user in a docker container ? Example : connect as root user (where php is the container name) docker-compose exec --user=root php bash
By editor, 4 September, 2023 CKEditor inline image files usage for custom forms. Tags Drupal 10 Code Drupal 9 Images Example with CKEditor WYSIWYG inline images field. Also see : Create a Form with Drupal 8 using Form API
By editor, 26 July, 2023 Install Docker on Linux Mint Tags Linux docker Install Docker on Linux Mint 20.3 1. Update the apt package index and install packages to allow apt to use a repository over HTTPS: sudo apt-get update sudo apt-get install ca-certificates curl gnupg
By editor, 8 July, 2023 Install PHP 8.1 Tags Drupal 10 Linux Server PHP Example for Debian: Enable sury/php repository apt-get install php8.1-{cgi,cli,fpm,pdo,gd,mbstring,mysqlnd,opcache,curl,xml,zip} Install additional PHP packages apt-get install php8.1-{cgi,cli,fpm,pdo,gd,mbstring,mysqlnd,opcache,curl,xml,zip}
By editor, 13 August, 2021 Import config file programmatically on Drupal 9 Tags Drupal 9 Code Configuration Import configuration file programmatically on Drupal 9 using config_update contrib module and service //Update Module settings \Drupal::service('config_update.config_update')->revert('system.simple', 'mymodule.settings');
By editor, 6 April, 2021 Squash commits into one with Git, Rebase Tags Git Steps: 1. Update branche git reset --hard origin/features/BRANCHNAME OR git pull origin features/BRANCHNAME
By editor, 6 April, 2021 Chocolatey packages installer Tags Windows Chocolatey is a software manager for Windows. Can use to install packages like php, tig, make Examples: Install php choco install php Install TIG choco install tig Site : https://chocolatey.org/install
By editor, 8 March, 2021 Convert M4A, OGG or OPUS audio file in to MP3 on linux Tags Shell Linux Audio Convert OGG to MP3 ffmpeg -v 5 -y -i file.m4a -acodec libmp3lame -ac 2 -ab 192k file.mp3 Convert M4A to MP3 ffmpeg -i file.ogg file.mp3#Orffmpeg -i file.{ogg,mp3}