43
results
Andrew Fletcher
•
Working through and importing JSON data into a content type.
Drush migration commands
Check the status of the migration data
lando drush migrate-statusReset the migration status
lando drush migrate-reset-status migratable_riverdata_jsonImport JSON data
lando drush migrate-import migratable_riverdata_json
Rollback to before the import
lando drush migrate-rollback migratable_riverdata_json
Errors
What to do when a migration fails? You will see a response...
Andrew Fletcher
•
After cloning a site, next you will want to import the config file. Which...
Andrew Fletcher
•
This is a relatively quick process, beginning with dropping the database...
Andrew Fletcher
•
Import a database
lando db-import doj.sqlEnter the MySQL database
lando mysql...
Andrew Fletcher
•
The challenge I was facing, I had written a script to scan barcodes and use...
Andrew Fletcher
•
In Xcode and executing a run command, the response error was:
{
"name": "NullInjectorError",
"ngTempTokenPath": null,
"ngTokenPath": ["Ee", "fe", "Ne", "Ne", "Ne"]
}This was a result of me attempting to incorrectly import the AppComponent from inside a service.
import { AppComponent } from './app.component';
Solution
Remove from the service files any requests made for the...
Andrew Fletcher
•
Creating a bash script
Bash scripts are files containing code that tell your...
Andrew Fletcher
•
Working hard developing your app and now it's time to let others begin testing...
Andrew Fletcher
•
ERROR Error: Uncaught (in promise): TypeError: undefined is not an object...
Andrew Fletcher
•
This code is from Drupal 9 back-end for a React front-end via REST API.
Working...
Andrew Fletcher
•
How do you rebuild node access permissions using CLI?
To rebuild permissions from the command-line using Drush:
drush php-eval 'node_access_rebuild();'Or using Drupal Console:
drupal node:access:rebuild
Andrew Fletcher
•
In Xcode attempting to build or run an app, I receiving a framework...
Andrew Fletcher
•
While loading an ionic project, in Xcode when performing a run routine I had the...
Andrew Fletcher
•
Attempting to update the database, irrespective whether I run update.php or...
Andrew Fletcher
•
Connecting a device and testing in Xcode have you had a no profiles...