Skip to main content
161
results
Andrew Fletcher
Currently, I have a situation where I have two repositories.  The first is where I've held the code since the beginning.  The second has come on board recently and is the client repo.  However, rather than shut the original down, I want to keep both running with the same code.  How do I synchronise them so that they contain the same thing? Configure a remote that points to the upstream repository in Git to sync changes you make in a fork with the original repository....
Andrew Fletcher
Creating a bash script Bash scripts are files containing code that tell your...
Andrew Fletcher
Accessing a remote server using PEM key, and I had the following...
Andrew Fletcher
My goal was to get the base URL and compare it with the URL of the link....
Andrew Fletcher
  JSON structure Outlining the structure of the elements common attributes:...
Andrew Fletcher
Whilst I had regularly used HAL to upload files through REST API, this is no longer an option given Hal is now deprecated and will be dropped in Drupal 10.  Time to explore JSON:API. Drupal modules to be installed You will need to install JSON:API Media Configuration for JSON:API Alter the JSON:API to accept all: Path: Administration > Configuration > Web services > JSON:API Select: Accept all JSON:API create, read, update, and delete operations. Configuration for Media Path:...
Andrew Fletcher
How do you retrieve a taxonomy term tid value from it's name? In this situation,...
Andrew Fletcher
If you are like me, almost every view I have will have this filter.  So I...
Andrew Fletcher
Have you come across the following Drupal error message: Mismatched entity...
Andrew Fletcher
Working on a decoupled React / Drupal 9 site. Aim: Adjust the output of curated...
Andrew Fletcher
How to make React calls on a Drupal 9 backend site using the search functionality Tools Drupal 9.4 React     The sample sent through from the front-end is as follows: https://localhost/search?keyword=&sort=changed&type=%20CommissionerHowever, to run requests, the keyword requires a string.  Such as searching the word 'committee'. https://localhost:8006/search?keyword=committeeIf no keyword is entered, the response will be empty. No results found for "".How to...
Andrew Fletcher
In this instance, I'll check the beginning of the string.  I want to focus...
Andrew Fletcher
  Using the Drupal Poll module and passing via RESTful API -  How do...
Andrew Fletcher
This code is from Drupal 9 back-end for a React front-end via REST API. Working...
Andrew Fletcher
For an introduction into setting up RESTful hal+json refer to the set-up...