Skip to main content
154
results
Andrew Fletcher
Replicate Replicate the bug in your local environment. Check Check - do you have the latest version of the contrib module?  In case the issue has already been identified and resolved. A quick check of the issue list for the contrib module. Nothing. Document notes Read through the log files to understand where the bug is located.  Devel module is a must for a backend dev to help resolve issues like this one.  Ensure Symfony var-dumper or Kint is running.  Data is gold here and...
Andrew Fletcher
2 or 3 approaches to build a homepage or landing page through Drupal Please...
Andrew Fletcher
Drupal cache is one of the major subsystems that deliver Drupal's flexibility...
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...