Skip to main content
149
results
Andrew Fletcher
I was trying to create something quite simple.  How to get image file uri from media entity id or rendered entity.  Or other variations you might have searched: How to load existing media programmatically How to get image file uri from media entity id Call to a member function getFileUri()  drupal File::load getFileUri  drupal getFileUri   The steps to achieve this should be something like: // get the file id ​​​​​​​$fid = $entity->field_icon->target_id; //...
Andrew Fletcher
Setting up a new project in Docker and VS Code. Using Terminal, go to your...
Andrew Fletcher
Load testing verifies the system performance under the expected peak load....
Andrew Fletcher
A bug bear that I have had for a while with Drupal content is how come the...
Andrew Fletcher
Time is essential to all of us... and if you are like me there is never enough...
Andrew Fletcher
Updating Drupal from 8.7.10 to 8.8.x or 8.9.x has seen a significant change as it has now moved into 9.x.  It has integrated more with composer, and you can be caught by fatal errors occurring during the update process.  One of these errors for me was the php version.   Site version as set through Plesk is PHP 7.3.12 Using ssh via Terminal the command php -v PHP 7.1.33 (cli) (built: Oct 25 2019 11:33:58) ( NTS ) Whereas, composer update was showing Problem...
Andrew Fletcher
As outlined in an earlier article composer php version, when installing the...
Andrew Fletcher
Blocks are a great way to add pieces or chunks of content to your Drupal site....
Andrew Fletcher
iOS localization on the fly If you have added languages to your app......
Andrew Fletcher
Adding an image via RESTUI can be done in a snap... once you know how!  I...
Andrew Fletcher
When you are in the status report of the admin area are you finding the following issue: ENTITY/FIELD DEFINITIONS Mismatched entity and/or field definitions The following changes were detected in the entity type and field definitions. File The File type field needs to be installed. Paragraph The Published field needs to be updated. The Behavior settings field needs to be updated.Check whether you have the module file_entity.  As File Entity has mostly been installed in to the...
Andrew Fletcher
The magically descriptive error 401 Forbidden "message": "Access...
Andrew Fletcher
Loading the node To query the node, I prefer to create a series of functions to...
Andrew Fletcher
If you are like me you probably have searched for clues to and found little......
Andrew Fletcher
Registering a user via REST is an important process particularly when the...