Skip to main content
145
results
Andrew Fletcher
In this article I'll walk through the steps I went through to install Solr on Ubuntu.   Step 1: Java Check if Java is installed on your server: java -versionNot there - then Java is the first step for you to set up for Solr.  JAVA SE 8 or Later is required to run Apache Solr 8.  Utilisation taking after order to check in the event that you have Java introduced as of now on your system. sudo apt install openjdk-11-jdkVersion check again and you now will get a response...
Andrew Fletcher
Looking to install Solr on your server?  Not sure if it worth the...
Andrew Fletcher
Explain public, private, protected functions and variables inside a class in...
Andrew Fletcher
Assuming there is a new field requiring a change on a content type. How do you...
Andrew Fletcher
Replicate Replicate the bug in your local environment. Check Check - do you have...
Andrew Fletcher
2 or 3 approaches to build a homepage or landing page through Drupal Please include any limitations & considerations of each approach Building a homepage a few options to consider and should against a business case:   1. Article An article – create a new node (assuming a least one content type exists), then using Basic Site Settings (admin > config > system), scroll down to Front Page and enter the node.nid value or alias. Pros: Fast to apply Cons: Limited to only having one...
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...
Andrew Fletcher
How do you retrieve a taxonomy term tid value from it's name? In this situation, use the loadByProperties function.  Load the taxonomy term and then reset the array. Note, reset - to set the internal pointer of an array to its first element. See as follows: /** * Get the taxonomy term object by the name * * @param string $term_name Vocabulary term. * * @return any Term.tid */ public function taxonomyTermByName($term_name) { if...
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...