Issue
Resource Usage is missing in user cPanel.
Resources Limits are not shown in the cPanel user Statistics panel
Environment
- Cloudlinux 8
- WHM/cPanel
- LVE
Solution
Create file /usr/local/cpanel/Cpanel/CPAN/Locale/Maketext/Utils/MarkPhrase.pm and add the following:
package Cpanel::CPAN::Locale::Maketext::Utils::MarkPhrase;
sub import {
no strict 'refs';
*{ caller() . '::translatable' } = \&translatable;
}
sub translatable {
return $_[0];
}
1;
Update 03-14-2024
According to https://changelog.cloudlinux.com/lvemanager CLOS-2483 fix is released
yum update lvemanager --enablerepo=cloudlinux-rollout-5-bypass
Cause
Missing /usr/local/cpanel/Cpanel/CPAN/Locale/Maketext/Utils/MarkPhrase.pm
# ls -l /usr/local/cpanel/Cpanel/CPAN/Locale/Maketext/Utils/MarkPhrase.pm
ls: cannot access '/usr/local/cpanel/Cpanel/CPAN/Locale/Maketext/Utils/MarkPhrase.pm': No such file or directory
Comments
0 comments
Please sign in to leave a comment.