Skip to main content
8
results
Andrew Fletcher
Recently I have been investigating one of my Linux server's speed using the copy [cp] command.  This came about due to 'upgrading' the server from Centos 6 to 7.  Once I had migrated a domain, I ran the following command yes | cp -rf 'stg/core' 'tmpdir'To my surprise, the first run of this command took over 38 minutes to complete.  Crap!  Yes a simple cp -a command is a very painful and slow process.  Read more about the pain and times under Centos 7 in this...
Andrew Fletcher
It appears that the plugin or file path is not working how it used to be on...
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...
Andrew Fletcher
This code is from Drupal 9 back-end for a React front-end via REST API. Working...
Andrew Fletcher
This article references some of the common commands via CLI (command-line interface) in running a Cordova app.   Platforms Platforms are the environment(s) that you want to run your app on.  We will add the 'ios' and 'android' platform and ensure they get saved to config.xml and package.json files.   To add a platform use the following command: cordova platform add {platform}Therefore, to add ios and android run: cordova platform add ios cordova platform add androidTo get a list...
Andrew Fletcher
How can you find out if the Cordova plugins have been loaded? Begin by running...
Andrew Fletcher
Updating the Cordova plugins... there are two locations to manage the...