Skip to main content

OnlineSupport4u

Almalinux (FATAL): yum failed 6 times. The installation process cannot continue

By PrasadNaik
April 26, 2024

While install cpanel on Almalinux 8 had an issue where cpanel was not getting installed and stopping with error 024-03-21 11:12:42 449 307652: Public key for nscd-2.28-236.el8_9.12.x86_64.rpm is not installed. Failing package is: nscd-2.28-236.el8_9.12.x86_642024-03-21 11:12:42 449 307652: GPG Keys are configured as: file:///etc/pki/rpm-gpg/RPM-GPG-KEY-AlmaLinux2024-03-21 11:12:42 449 307652: The downloaded packages were saved in cache until the […]

Read More

How to install wkhtmltopdf plugin

By PrasadNaik
April 23, 2024

To install wkhtmltopdf plugin on Almalinux 8 Run the below commands yum install -y xorg-x11-fonts-75dpi xorg-x11-fonts-Type1 libpng libjpeg op yum install -y xorg-x11-fonts-75dpi xorg-x11-fonts-Type1 libpng libjpeg openssl icu libX11 libXext libXrender xorg-x11-fonts-Type1 xorg-x11-fonts-75dpiLast metadata expiration check: 1:05:20 ago on Tuesday 23 April 2024 03:08:54 AM PDT.Package libpng-2:1.6.34-5.el8.x86_64 is already installed.Package libjpeg-turbo-1.5.3-12.el8.x86_64 is already installed.Package openssl-1:1.1.1k-12.el8_9.x86_64 […]

Read More

Caldev Install on cPanel

By PrasadNaik
November 23, 2023

To install Caldev on cpanel cPanel by default does not install Calender. you need to go to WHM > Home /cPanel /Manage Plugins And install Calendar and Contacts Server also need to enable it in feature manager only after that calender function would be visible in cPanel

Read More

Session timeout in Zorin OS Terminal

By PrasadNaik
July 18, 2023

session timeout in Zorin Terminal Session was geting auto logged off after 5 minutes of in-activity journalctl -f showing below errors pam_unix(cron:session): session opened for user root by (uid=0) This was fixed by editing the file name /etc/pam.d/common-session-noninteractive sudo vim /etc/pam.d/common-session-noninteractive and adding new line session [success=1 default=ignore] pam_succeed_if.so service in cron quiet use_uid and […]

Read More

Redirect from www to non www with https

By PrasadNaik
April 25, 2023

To Redirect from www to now www with https follow below steps open .htacess file and add below rule Replace domain.tld with your domain name RewriteEngine OnRewriteCond %{HTTP_HOST} ^www.domain.tld [NC]RewriteRule ^(.)$ http://domain.tld/$1 [L,R=301] RewriteCond %{HTTPS} !=on RewriteRule ^(.)$ https://%{HTTP_HOST}/$1 [L,R=301]

Read More

Change Postfix Mail IP address

By PrasadNaik
March 10, 2023

Change postfix mail sending IP To change mail IP in Postfix need to change parameters in below file vi /etc/postfix/main.cf add this option smtp_bind_address=192.168.10.10 once done restart postfix

Read More

Change permissions recursively

By PrasadNaik
January 6, 2023

Use the below command to set 755 to folder and 644 to file recirsively find . -type d -exec chmod 0755 {} \; find . -type f -exec chmod 0644 {} \;

Read More

Installing Python 3.4 on cPanel

By PrasadNaik
January 4, 2023

cPanel comes with Default version Python 2.7 If you want to install second version Python 3.4 on server using rpm and via Source First install epel repository yum install epel-release yum install python34 To install PIP on python2.4 yum install python3-pip

Read More

An error has happened during application run. See exception log for details Magento

By PrasadNaik
December 11, 2022

On getting the error in Magento An error has happened during application run. See exception log for details It can be fixed with below commands php bin/magento setup:upgradephp bin/magento setup:di:compilephp bin/magento setup:static-content:Deploy -fchmod -R 777 var/ generated/

Read More
1 3 4 5 25