A 503 error means that the webserver trying to be reached is unavailable overloaded, down for maintenance, or not fully functional for another reason. First, test the website directly from the webserver, and if it is running correctly then the...
First go into your application folder and check the following files:
Drupal 8 & Drupal 9
grep VERSION core/lib/Drupal.php
Drupal 7
grep VERSION includes/bootstrap.inc
Drupal 6 and older
grep VERSION modules/system/system.module
Both Cloudflare and cpanel store DNS zones in standard BIND files. When moving a DNS zone from cPanel to Cloudflare, Cloudflare checks and inserts DNS entries automatically. But, when transferring DNS from Cloudflare to cPanel we must...
Encountered an error when deploying ceph cluster with the command: ceph-deploy new ceph-node1 ceph-node2 ceph-node3 [ceph-node][DEBUG ] Err:1 xenial-updates/main amd64 apt-transport-https amd64 1.2.24 [ceph-node][DEBUG ] Temporary failure resolving...
To export a postgres database We use the pg_dump command: pg_dump -U postgres -v DATABASE -f FILENAME.sql And to import it back we use psql: psql -U postgres -W -d "FILENAME.sql" < FILENAME.sql Now that we know these commands We can easily create...
To list all cronjobs for all users on a cPanel server use the following command for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done or: cat /var/spool/cron/* To list cronjobs for a single user, navigate to /var/spool and view the...
To block incoming emails in Proxmox Mail Gateway that contain attachments with a specific extension, for example, .cab I recommend blocking both the extension (MIME type) and the filename (files that end with .cab). To do this first log in to...
Sometimes it’s useful to enable visitors to your site to upload content, for example, photos, which can then be displayed on the site. Folders on a website, for example, an images folder will typically have permissions of 755, which means that...