Skip to main content

OnlineSupport4u

Child failed to make LIVEAPI connection to cPanel.

By Prasad Naik
July 11, 2024

Softacalous on cpanel was giving error or ioncube loader Even disabling and reenabling ioncobe from tweak setting didnt fix the issue Script error: the ionCube Loader for PHP needs to be installed. The ionCube Loader is the industry standard PHP extension for running protected PHP code, and can usually be added easily to a PHP […]

Read More

Mysql 8.0 breakdown

By Prasad Naik
July 2, 2024

Mysql 8.0 was not started on cpanel all of sudden without issue After googling the issue was found to be with MySQL 8.0.38 release Run the below 3 commands yum downgrade mysql-community-* # to downgrade mysql to previous version /scripts/restartsrv_mysql # Restart mysql dnf install python3-dnf-plugin-versionlock #install version lock on amla linux yum versionlock mysql* […]

Read More

GPT PMBR size mismatch

By Prasad Naik
May 28, 2024

GPT PMBR size mismatch (41943039 != 262143999) will be corrected by write.The backup GPT table is not on the end of the device. This problem will be corrected by write While doing fdisk on server was getting the error mentioned above The solution to this issue was to use command parted -l [root@db ~]# parted […]

Read More

 Create subdomains and addon outside of the public_html directory

By Prasad Naik
May 25, 2024

To add addon or subdomain outside the public_html folder in cpanel WHM >> Tweak Settings and making sure “Restrict document roots to public_html” is set to “Off” This would help in adding domani outside public_html folder

Read More

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

By Prasad Naik
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 Prasad Naik
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 Prasad Naik
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 Prasad Naik
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 Prasad Naik
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 Prasad Naik
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 Prasad Naik
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 Prasad Naik
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
1 2 3 4 19