Tired of using MAMP ? You should already have Apache installed on Ubuntu Install Apaache2 sudo apt update && sudo apt install apache2 restart: systemctl reload apache2 check config: apachectl configtest in /etc/apache2/apache2.conf , set your username – also can be done in ( /etc/apache2/envvars ) # These need to be set in /etc/apache2/envvars User
ARCHIVE
WordPress

Posted on November 6 2022 / in WordPress
open the console / devtools and enter // Create a class for the element class PopUpInfo extends HTMLElement { constructor() { // Always call super first in constructor super(); // Create a shadow root const shadow = this.attachShadow({mode: 'open'}); // Create spans const wrapper = document.createElement('span'); wrapper.setAttribute('class', 'wrapper'); const icon = document.createElement('span'); icon.setAttribute('class', 'icon'); icon.setAttribute('tabindex',

Posted on November 1 2022 / in WordPress
enter Digital Ocean admin dashboard, click > Networking when you enter the hostname, just type @ ns1.digitalocean.com ns2.digitalocean.com
Posted on October 27 2022 / in WordPress
you can go first to the console get the name of the pod you can go to Google Cloud
Posted on October 11 2022 / in WordPress
I used kubectl port-forward tickets-mongo-depl-54dc54c799-hvksq 27018:27017 then, in MongoDb Compass I connected to mongodb://localhost:27018
Posted on June 6 2022 / in WordPress
Get a google cloud account Install Google Cloud SDK Run the command gcloud auth From GCloud enable: Kubernetes Engine API Google Cloud Build API create a cluster in Kubernetes Run the command: gcloud init Select the project: gcloud config set project $MY_PROJECT_ID select your CLUSTER gcloud container clusters get-credentials YOUR_CLUSTER_NAME --zone us-central1-c Select the kubectl
So I have struggled with this for a long time now. First you need the coresponding libraries npm i -g @babel/core@^7.2.2 npm i -g @babel/preset-env@^7.3.1 npm i -g @babel/preset-react@^7.0.0 npm i -g autoprefixer@^9.5.0 npm i -g babel-loader@^8.0.5 npm i -g css-loader npm i -g extract-text-webpack-plugin@next npm i -g generate-template-files npm i -g mini-css-extract-plugin npm i
Recent Comments