Skip to main content
27
results
Andrew Fletcher
Update Ubuntu 20.04 To begin update the server using the command sudo apt update && sudo apt upgrade -yFor more details about this process see How To Update All Packages Linux.   PHP version Check the current PHP version using php -vThe response I had was PHP 7.4.3 (cli) (built: Nov 2 2022 09:53:44) ( NTS ) Copyright (c) The PHP Group Zend Engine v3.4.0, Copyright (c) Zend Technologies with Zend OPcache v7.4.3, Copyright (c), by Zend Technologies  Install...
Andrew Fletcher
Installing PHP on OSX and it installed PHP 8.2.x.  However, for my...
Andrew Fletcher
  JSON structure Outlining the structure of the elements common attributes:...
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
For an introduction into setting up RESTful hal+json refer to the set-up documentation.  Also see the Query - user screen. Login a member POST: {domain}/user/login?_format=hal_json Content-type: application/hal_json Accept: application/hal+json { "name": "username", "pass": "password" }Example: { "name": "jacque", "pass": "nOtmYp1ssWorD" }Example response { "current_user": { "uid": "200", "name": "jacque" }, "csrf_token":...
Andrew Fletcher
How to use the Drupal REST API to trigger I've forgot (need to change) my...
Andrew Fletcher
Working from the bases that .DS_Store has not been added to your git repository,...
Andrew Fletcher
To get the X-CSRF token, first, you need to login as a member.  Follow the...
Andrew Fletcher
In retrieving an image, the primary element required is: File id or...
Andrew Fletcher
For an introduction into setting up RESTful hal+json refer to the set-up documentation. GET a node To get the content of the specific node you require the node.nid.  The key information required in the GET query: URL - your-site.com/node/<nid>?_format=hal_json; Content-Type - application/hal+json; Nod.nid - noted in the URL string as <nid>. Example using a node.nid of one (1).  So the nid in the URL is <nid> =...
Andrew Fletcher
For an introduction into setting up RESTful hal+json refer to the set-up...
Andrew Fletcher
For an introduction into setting up RESTful hal+json refer to the set-up...
Andrew Fletcher
To POST an image is similar to the other posts mentioned on this site....
Andrew Fletcher
To sort through a multidimensional array seems to be a function that I...