Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - overseer

Pages: 1 ... 20 21 [22] 23 24 ... 127
316
CentOS-WebPanel Bugs / Re: Unable to open userpanel
« on: August 30, 2025, 04:52:42 PM »
Did you try to re-issue the server hostname certificate? (Change hostname, could switch to 4096 bit key size)

317
CentOS-WebPanel Bugs / Re: Unable to open userpanel
« on: August 30, 2025, 01:25:13 PM »
Is this from the Accounts > List Accounts page (where you click on the Open Panel wrench icon? Or is it from the :2083 link, using their credentials directly?

Have you tried the usual fix of going into Features, Themes, Languages and changing something in the package or account? You can set it back afterward, but it's a good first test.

318
CentOS-WebPanel Bugs / Re: Reseller customer disk space problem.
« on: August 29, 2025, 02:10:15 PM »
Don't do reselling :P
(A little bit cheeky, but it is a practice I hold to.)

319
SSL / Re: AutoSSL Renewal Issues
« on: August 27, 2025, 10:52:19 AM »
Intermittently seen this. Not consistent enough to nail down.

320
Seems to be a known bug with clamav; you should be able to safely delete the duplicate databases.
Code: [Select]
yum swap clamav-data clamav-data-empty
freshclam

321
CentOS-WebPanel Bugs / Re: User account infected
« on: August 21, 2025, 01:06:09 PM »
Update all your plugins (one or more probably has a security vulnerability), install & run iThemes Security. Look at Sucuri's products/services.

Check PHP files for malicious injections -- sometimes the first < ?php line has added code to the far right after many spaces to try to hide it. The CLI utility less shows it one way, but a code editor like nano puts a dollar sign to the right so you see the line is truncated and continues off the screen to the right. You can also look for malicious base64 encoded files, which attempt to obfuscate their real purpose. UnPHP is a good online decoder for such files:
https://www.unphp.net

322
CentOS-WebPanel Bugs / Re: User account infected
« on: August 21, 2025, 10:56:19 AM »
Is the user's site running WordPress? I've seen a few get infected before.

323
Addons / Re: Redis server upgrade
« on: August 20, 2025, 10:50:28 AM »
Which version of PHP? This guide is older, but still works under AlmaLinux 8:
https://blog.alphagnu.com/speedup-wordpress-decrease-server-load-redis-cache-cwp-centos-webpanel/

324
If CSF is released as GPLv3 before their imminent closure, Configserver's developers indicated it will be posted to their GitHub repository:
https://github.com/waytotheweb/scripts
(currently just uninstall scripts for their products!)

325
Apache / Re: Issues with image displaying
« on: August 18, 2025, 12:31:19 AM »
You could try to optimize the image with Smush or Imagify; serve it off a CDN so it isn't processed or hosted locally if that is indeed a problem.

326
I never noticed any issues on the updated version (apart from autologin having issues). 5.2 drops support for versions of php older than 7.2, so that won't matter if you are running AlmaLinux 9. It would only matter if you are running AL8 with older PHP versions.

Differences between 5.1.1 and 5.2.2:
  • Import/Export Screen Redesign:
    phpMyAdmin 5.2.2 features a redesigned import and export interface, making it more modern and organized.
  • "DELETE FROM" Feature:
    A new "DELETE FROM" feature is added to the table operations page, allowing users to empty tables using a DELETE query.
  • Minimum PHP Version:
    phpMyAdmin 5.2.2 requires PHP 7.2 or newer, whereas 5.1.1 may have supported older PHP versions.
  • Internet Explorer Support Removed:
    phpMyAdmin 5.2.2 no longer supports Microsoft Internet Explorer.
  • New Features and Bug Fixes:
    Version 5.2.2 includes a range of new features and bug fixes, including resolution of networking errors when exporting files and improved handling of PHP 8.1.

327
Apache / Re: How to limit the size of the error log Apache ?
« on: August 16, 2025, 01:12:34 PM »
Enable logrotate to keep your logs to a manageable size.
If you don't need to save them, first start by truncating your apache error & access logs to zero bytes:
Code: [Select]
truncate -s0 /usr/local/apache/domlogs/*.error.log
truncate -s0 /usr/local/apache/domlogs/*.log
Also consider doing the same if you are sure you don't need your CWP access/error logs (for security auditing/troubleshooting):
Code: [Select]
truncate -s0 /usr/local/cwpsrv/logs/*_logAlso, look under /usr/local/cwp/php71/var/log/

To automatically rotate the logs, add a configuration to logrotate for apache logs. Put this code into /etc/logrotate.d/httpd (or use File Management > Logrotate Manager to create it):
Code: [Select]
/usr/local/apache/domlogs/*log {
    missingok
    notifempty
    sharedscripts
    daily
    rotate 7
    postrotate
        /bin/systemctl reload httpd.service > /var/log/httpd-rotate.log 2>&1 || true
    endscript
    compress
}

328
The CWP update script does run overnight -- so maybe you got updated to a new version. I should've asked you to run /scripts/update_cwp after switching to the "Latest" branch. So now if you want to go back to the more conservative line, you could choose "Stable" again for those extra few weeks of testing. ;)

329
I've manually updated on one server in the past and it didn't seem to break anything. But one thing that gives me pause is Sandeep's advice to let it update with CWP because it's customized:
https://www.alphagnu.com/topic/525-update-phpmyadmin-to-latest-currently-521/#comment-1235

330
Have you tried in other browsers, incognito / private browsing mode, making sure ad blockers are not active on the CWP Admin site, etc?

Pages: 1 ... 20 21 [22] 23 24 ... 127