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 ... 50 51 [52] 53 54 ... 71
766
CentOS 7 Problems / Re: Error in trasnfer File
« on: March 25, 2023, 08:15:11 PM »
Well, glad you got that sorted out! I just couldn't offer too much advice from afar without being in an interactive mode to try testing different possibilities. I've posted my migration experience to a couple of threads so it's there for posterity. (I post things like that here on the forum so I can look things back up at a later date!)

767
Installation / Re: New Installation and Problems
« on: March 25, 2023, 08:11:19 PM »
I did a fresh install on a new server and there is no way to get NextCloud to work...
I personally don't feel that NextCloud is compatible with a standard LAMP/LEMP server profile. I personally have a dedicated VM just for a NC instance, with configured ZFS storage backing. It's just too different of an animal to shoehorn it into a standard shared hosting profile.

768
Information / Re: Roundcube version
« on: March 25, 2023, 08:05:14 PM »
Can you download Sandeep's fixed script, then customize it by adding a trace to the shebang line?
Code: [Select]
curl -O -k https://www.uxlinux.com/upload/tmp/cwp_rc_fix.sh
nano cwp_rc_fix.sh
[b]#!/bin/bash -x[/b]
Then run it and watch it execute line-by-line:
Code: [Select]
sudo bash cwp_rc_fix.sh

769
Addons / Re: Joomla uninstall remove from addons panel
« on: March 25, 2023, 05:54:06 PM »
Try looking here:
/home/account/.conf

For an add-on WordPress install, I have this conf file:
/home/account/.conf/.addons_wp

So maybe you have
/home/account/.conf/.addons_joomla
and can just delete that conf file.

770
Addons / Re: Joomla uninstall remove from addons panel
« on: March 25, 2023, 04:02:55 PM »
Please report this as a bug to the devs so it can get fixed.

771
Installation / Re: php per domain
« on: March 25, 2023, 04:00:13 PM »
WebServer Settings > WebServers Domain Conf > [Choose username] > Create Configuration
php-fpm option lets you specify PHP version.

772
How to / Re: Upgrade PhpMyAdmin
« on: March 25, 2023, 03:57:09 PM »
Is the MySQL root password the same as your system root password?

773
SSL / Re: acme cron error renew
« on: March 25, 2023, 03:55:17 PM »
Confirm there is a validation method (usually webroot) in your conf files for those domains:
/root/.acme.sh/cwp_certs/www.domain.com/www.domain.com.conf
/root/.acme.sh/cwp_certs/www.domain.com/www.domain.com.csr.conf

You didn't manually edit these files, did you? You could delete the offending domains in CWP under Web Server > SSL Certificates and then re-add them.

774
CentOS-WebPanel Bugs / Re: nginx 403 cwp
« on: March 25, 2023, 03:50:21 PM »
Nginx logs:
/var/log/nginx/error.log
/var/log/nginx/error.log-2023XXXX

vhost logs:
/usr/local/apache/domlogs/domain.com.log

775
Apache / Re: URL Masking
« on: March 25, 2023, 03:45:40 PM »
There's no secret sauce with CWP's Apache -- it's pretty vanilla; you just have to have your syntax right. Is this what you are trying to achieve?
https://serverfault.com/questions/506623/masking-the-url-in-a-mod-rewrite

776
Information / Re: Ebury trojan on all of my CWP servers
« on: March 25, 2023, 09:18:28 AM »
You can quickly check if you are infected with Ebury by checking if the file /usr/lib64/libkeystats.so exists or by running the following command through the console -
Code: [Select]
ssh -G 2>&1 | grep -e illegal -e unknown > /dev/null && echo "System clean" || echo "System infected"
I'm sorry, but I don't think your information is accurate here -- on either count. The -G switch for SSH is now legitimate, and the existence of /usr/lib64/libkeystats.so does not prove an Ebury rootkit infection.
just did a complete scan. Took 108 minutes scanning almost half a million files. I dont have it
Have you confirmed that the malware security scanner accurately identifies Ebury? I did that scan but then a manual check -- and note that checking via SSH does not necessarily prove a clean bill of health. You need to check via a local console or else Ebury could alter the results shown via SSH.

777
SSL / Re: AutoSSL not working
« on: March 25, 2023, 08:00:03 AM »
^ That's why I posted my comment above. I encountered that error before and you have to make sure you are not redirecting the site from HTTP to HTTPS. It needs to negotiate the AutoSSL certificate via (non-SSL) HTTP.

778
Information / Re: Ebury trojan on all of my CWP servers
« on: March 24, 2023, 03:02:39 AM »
Thanks for highlighting this! No Ebury Trojans here on any of my 3 CWP servers; just one case of Win.Trojan.Hide-1 under one WordPress install, which was promptly exorcised:
Quote
/home/account/public_html/wp-admin/zSROyV.php
Win.Trojan.Hide-1

779
New Modules / Re: [Module] Track E-mail Delivery
« on: March 20, 2023, 03:46:29 AM »
Great! This could be very handy when a customer asks me about mail delivery issues. Save some log sifting, for sure!

780
DKIM / Re: How to implement 2048 bit DKIM keys on CWP servers.
« on: March 20, 2023, 03:44:53 AM »
The takeaway from that tutorial I linked to was to use opendkim-genkey with the -b bits option:
Quote
       -b bits
              (--bits=n)  Specifies  the size of the key, in bits, to be generated.  The upstream
              default is 1024 which is the value recommended by the DKIM  specification,  but  in
              Debian the default is 2048 based on more current recommendations such as those from
              NIST 800-177.
So,
Code: [Select]
opendkim-genkey -b 2048is what you are looking for...

Pages: 1 ... 50 51 [52] 53 54 ... 71