Skip to main content
426
results
Andrew Fletcher
This page will be a progressive outline of moving those regular run scripts that really need to be automated.  Or triggered by a keyword. These scripts are rsync commands   The initial scripts production environment sudo rsync -aur staging/{project}/config drupal cd drupal sudo chown -R www-data:www-data config cd .. sudo rsync -aur staging/{project}/core drupal cd drupal sudo chown -R www-data:www-data core cd .. sudo rsync -aur staging/{project}/modules drupal cd drupal sudo chown...
Andrew Fletcher
Only a month ago, running an app through the Android Studio emulator was running...
Andrew Fletcher
Using Composer to Manage Projects and if required their dependencies In this...
Andrew Fletcher
Goal: I want to download a table list to a txt or csv file. Initially, as a root...
Andrew Fletcher
This issue I have a folder with about 10,000 files in it.  I want to scan...
Andrew Fletcher
If your Composer project doesn't have Drush listed as a dependency, you can install Drush from command line as follows: composer require drush/drushTo check your version of Drush, use drush --version  Status check drush statusWill output something similar to Drupal version : 10.1.1 Site URI : http://default DB driver : mysql DB hostname : mysql DB port ...
Andrew Fletcher
Using CK Editor 5, I needed to add instructions to a page that held FontAwesome...
Andrew Fletcher
I've been working on a problem where a font and image tag aren't appearing on...
Andrew Fletcher
Using Homebrew for speed tests... I'm using Speediest CLI - for more details go...
Andrew Fletcher
In a site I'm working at the moment, we need to download high resolution images...
Andrew Fletcher
I'm in an environment where the default branch is staging and I'm attempting to run a git merge.  However, in actioning this command, I'm been greeted with the following response 'not something we can merge' ❯ git merge origin/{branch} merge: origin/{branch} - not something we can mergeTo resolve this, first I attempted to do a git checkout to the branch But this was swiftly meet with "did not match any file(s) known to git" git checkout {branch} error: pathspec '{branch}' did not match...
Andrew Fletcher
Whilst attempting to download the latest config.zip file for Solr, I was greeted...
Andrew Fletcher
Having a situation where I'm running a sub theme based on Bootstrap Barrio, but...
Andrew Fletcher
This guide has been compiled as a reference tool on how to access field values...
Andrew Fletcher
Creating a foreach loop such as  var maxDigits: Int = 5 private var...