Skip to main content
430
results
Andrew Fletcher
Issue Trying to run a Drupal 9 localhost site on a Mac through Docker that uses a Wodby base.   Normally when using Docker and it's correctly set-up you don't need to add to the etc/hosts file.  However, reading through the Wodby local domains content, it seems this step is required. Off to the /etc/hosts file sudo vim /etc/hostsAdd the required package.  In this instance I'm using Drupal 127.0.0.1 drupal.docker.localhostChanges made to this file will be applied instantly....
Andrew Fletcher
Had the situation where you are running composer however, the scripts stops with...
Andrew Fletcher
In this woalk through I am going to use GitHub.  However, the steps are...
Andrew Fletcher
In Xcode attempting to build or run an app, I receiving a framework...
Andrew Fletcher
Working through an app project I inherited using Ionic, Angular and ngx-leaflet...
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
While loading an ionic project, in Xcode when performing a run routine I had the...
Andrew Fletcher
Updating the Cordova plugins... there are two locations to manage the...
Andrew Fletcher
Oh the treasure of a client coming to you with a site they have removed the...
Andrew Fletcher
The issue Text through the app is being rendered as <p>Depletion estimates, Age and size composition, Catch, Effort, Catch rates, Fishing mortality</p>Therefore, in this instance the HTML p tags are being displayed along with the text.   The code Currently the code outputting this is written as: <ion-item lines="full"> <ion-label class="ion-text-wrap">Indicators:</ion-label> <ion-text class="right ion-text-wrap">{{ status.Indicators |...
Andrew Fletcher
If you have upgraded Ionic to 5 or 6 you will have experienced that the padding...
Andrew Fletcher
How do you get the version of ionic framework? ionic versionor ionic -vThe...
Andrew Fletcher
Need to know how run updates for Capacitor? Updating Capacitor Update Capacitor...
Andrew Fletcher
I recently received an ionic app that hasn't been updated for quite some time....