create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
import React, { FC } from 'react'; | |
import { GoogleMap } from '@react-google-maps/api'; | |
import { useGoogleMaps } from './GoogleMapsProvider'; | |
const containerStyle = { | |
width: '400px', | |
height: '400px' | |
}; | |
const center = { |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
docker run --rm -u gradle -v "$PWD":/home/gradle/project -w /home/gradle/project gradle gradle wrapper |
#https://askubuntu.com/questions/24027/how-can-i-resize-an-ext-root-partition-at-runtime | |
growpart /dev/xvda 1 # Grows the partition; note the space | |
resize2fs /dev/xvda1 # Grows the filesystem |
FROM vault:latest | |
# Install build tools | |
RUN apk add --update alpine-sdk \ | |
&& mkdir /vault/plugins \ | |
&& apk update \ | |
&& apk add go git \ | |
&& go get github.com/immutability-io/vault-ethereum \ | |
&& go build github.com/immutability-io/vault-ethereum \ | |
&& mv /root/go/bin/vault-ethereum /vault/plugins/vault-ethereum \ |
# enable Docker for your repository | |
options: | |
docker: true | |
pipelines: | |
branches: | |
development: | |
- step: | |
# python image with aws-cli installed |
# enable Docker for your repository | |
options: | |
docker: true | |
pipelines: | |
branches: | |
development: | |
- step: | |
#python image with aws-cli installed |
When a class of Wirecard_Checkoutpage_Model_* is called you get following Exception: | |
`Fatal error: Class 'WirecardCEE_QPay_PaymentType' not found in /path/app/code/core/Mage/Core/Model/Config.php on line 1354` | |
This is the case if you try to update a order. In the save method Magento tries to save Wirecard_Checkoutpage_Model_* before the order and the script crashes with an fatal error. | |
The fatal error is caused by the reason that `class_exists($className)` returns true, but `$obj = new $className($constructArguments);` is not able to find that class. | |
In front end this is no problem because in the event 'controller_front_init_before' the Observer Wirecard_CheckoutPage_Model_Autoloader->addAutoloader() is called which is adding the autoloader. | |