Skip to main content
154
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
The purple warning notification of annoyance recently came my way!  I...
Andrew Fletcher
I'm currently working on a project that requires login, register, forget...
Andrew Fletcher
iOS localization on the fly If you have added languages to your app... shortly afterwards you'll be getting yourself knee deep in changing the language on the fly.  Followed by the question – how do you change the language of the app without having to restart the app?  To change the language of the app there are a couple of key steps involved: Adding / managing languages Managing the app bundle By the way I have added to GitHub a demo app - switch languages showing how...
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...
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...