In this guide, I will be setting up CWP on a small VPS, then install WordPress. This process consists of: Installing CWPSetting up CSFChange Default package limitsSet a custom PHP versionCreate a new accountCreate MySQL database and userInstall...
Here I will cover two approaches to increase file size and number of uploads limits in PHP: using the .htaccess fileusing the php.ini Why you should use .htaccess file As always, I recommend utilizing the. htaccess file because the directives will...
For logrotate we create a configuration file inside /etc/logrotate.d/ directory and check if there is a logrotate file in /etc/cron.hourly/ – if not copy it from cron.daily Apache EXAMPLE 1: logrotate file that will only rotate a single file...
For WordPress websites that use both Softaculous backups and AllInOne Migration plugin backups, Softaculous backups include the .wpress files created by the ai1wm plugin and therefore this will significantly increase the size of Softaculous...
CGI Environment Variables are used to display information when debugging applications or to pass that information to another script. If you search google for “env.cgi” you will find thousands of files that disclose sensitive information...
After installing DadaMail via Softaculous auto-installer on cPanel the application is not accessible: DadaMail application error log file can be found at as discussed here grep errors.txt cgi-bin/APPLICATION_FOLDER/DADA/Config.pm Inside that error...
In this article We will generate SSL and then enable HTTPS on Apache with Ubuntu 20.04. #1 Generate SSL Certificate Step 1. Install acme.sh and then reconnect to ssh wget -O - | sh exit Step 2. Create a folder where SSL files will be stored mkdir...
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...
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...