EasyApache 4 installing PHP 5
EDIT 2022-06-20: Cpanel completely removed support for PHP 5.6, so this method no longer works on AlmaLinux 8. If you need PHP…
EDIT 2022-06-20: Cpanel completely removed support for PHP 5.6, so this method no longer works on AlmaLinux 8. If you need PHP…
xampp server only allow access to phpMyAdmin from localhost. This is because root password is set to blank by default. If you…
On Cpanel server with KernelCare installed, i keep getting email This is because the kernel is not yet supported by kernalcare. Since…
CentOS 8 comes with PHP 7.2. To install PHP 7.3, you need to enable remi repo. You can download remi-release rpm file…
Allow phpMyAdmin remote access on xampp Restart Services in Xampp Linux To auto start XAMPP on boot on Ubuntu, create file vi…
First disable SELinux by editing file vi /etc/selinux/config Find SELINUX=enforcing Replace with SELINUX=disabled Now restart the server. reboot Verify SELinux is disabled…
On a Cpanel Server using CentOS 7 + php-fpm, site phpinfo() shows few functions are set to disabled in disable_functions. I checked…
https://www.odoo.com/ https://erpnext.com/ https://ofbiz.apache.org https://www.dolibarr.org https://www.vtiger.com https://suitecrm.com
KernelCare allow you to update Linux Kernel with out rebooting your server. You can find more info at https://www.kernelcare.com To install KernelCare,…
mongoimport allow you to restore mongodb backups. mongoimport –db DB_NAME –collection COLLECTION_NAME –file COLLECTION_BACKUP.json Example mongoimport –db direct_db –collection image_settings –file image_settings.json…
Vagrant allows you to quickly create virtual machines. You can download vagrant boxes from https://app.vagrantup.com/boxes/search Vagrant private_network can’t ping Install Vagrant Install…
Create a directory for Vagrant project mkdir -p ~/vagrant/centos8 cd ~/vagrant/centos8 vagrant init generic/centos8 This will create a file with name “Vagrantfile”…