Hello, I am Victor. I am a software engineer with corporate experience. Solution provider for #startups and #enterprise using Javascript (Node JS and React) | Python.
Run this to generate Wildcard SSL sudo certbot certonly --manual --manual-public-ip-logging-ok --preferred-challenges dns-01 --server https://acme-v02.api.letsencrypt.org/directory -d "*.example.com, example.com" After the ssl creation with certbot,...
Most likely it's because your system shutdown unexpectedly Try postgres -D /usr/local/var/postgres You might see FATAL: lock file "postmaster.pid" already exists HINT: Is another postmaster (PID 449) running in data directory "/usr/local/var/postg...
After installing MariaDB 10.6+ I started getting errors such as: ERROR 4047 (HY000) at line 10: InnoDB refuses to write tables with ROW_FORMAT=COMPRESSED or KEY_BLOCK_SIZE. I needed to go back to the previous version but it was not easier to do so ...
Error unable to import frappe in VScode Assuming that your project root directory is inside /apps/ and that's also where frappe app is located. create a .env file in your project root directory and then add PYTHONPATH=../frappe # your unresolved mo...
Here are the set of commands that you need to run as root on a new digital ocean droplet (assuming you have already setup root to have ssh access). This will setup mynewuser with passwordless sudo rights and the ability to ssh into the machine withou...
You have cloned a repo maybe using shallow clone with git clone --depth <depth> <repo> implies --single-branch, But strangely when you are trying to fetch from remote, it's not working. To fix a local repo that's not fetching try: or git config rem...