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 - DragoCom

Pages: [1] 2 3 ... 8
1
Updates / Re: CWP Update?
« on: May 26, 2025, 06:02:03 PM »
Yeah aaPanel and CyberPanel are kicking out 1-2 bug fixes and updates a week. They are going strong and quickly becoming worth a look.

2
Updates / CWP Update?
« on: May 26, 2025, 07:09:22 AM »
Any updates and new features coming to CWP sometime soon? Would truly love to see the dark mode for the root access panel and maybe if you could fix the user panel dark mode so it actually stays dark after you login instead of having to click on the paint brush every time. I even have it set to dark mode for user in the admin area. Maybe dark mode for file manager as well. Also a webpage view of tail -f for different types of logs (click on log names from a list). Maybe a live nginx and httpd webview access printout in real time of visitors.

3
How to / Re: Suspended Page
« on: May 02, 2025, 08:57:30 PM »
Awesome! Thank you to both I appreciate it.

4
How to / Suspended Page
« on: May 02, 2025, 02:51:09 AM »
Where can I edit the wording of what the page says when a user is suspended?

5
DNS / Re: Does CWP support .de domains?
« on: April 04, 2025, 07:50:13 PM »
I appreciate everyone who tried to help but this one was on my stupidity. I put the ip address for ns2 everywhere except where I really needed it. I was so busy updating registrar, nameserver ips, nameservers with njal.la and etc that I totally forgot to add the new ip to my available ip's in cwp...DOH! So sorry guys hehe

6
DNS / Does CWP support .de domains?
« on: April 03, 2025, 06:02:09 AM »
I have registered a .de domain name with njal.la, set custom nameservers and glue records using 2 different ips that are set as nameservers ns1 and ns2 in CWP. So, in the edit nameservers at the top the ns1 and ns2 show the right ips. With that said, it is set correct with njal.la, set correct in CWP, ptr records set with contabo but still I get an errorf when trying to go to the domain:

This site can’t be reached
Check if there is a typo in porndu.de.

If spelling is correct, try running Windows Network Diagnostics.
DNS_PROBE_FINISHED_NXDOMAIN

7
Mod_Security / Re: 19GB modsec_audit.log
« on: March 16, 2025, 05:11:23 PM »
I added this code to the same logrotate.d/httpd file as the other

/usr/local/apache/domlogs/*.log {
    missingok
    notifempty
    sharedscripts
    daily
    rotate 7
    postrotate
        /sbin/service httpd reload > /var/log/httpd-rotate.log 2>&1 || true
    endscript
    compress
}

I hope that is where it goes.

8
Mod_Security / Re: 19GB modsec_audit.log
« on: March 15, 2025, 04:55:26 PM »
It will be executed automatically on daily bases. All files located in the folder /usr/local/apache/logs/ with the names "log" at the end:

something.log
something_log
somethinglog

will be checked for their size. If the file size is over than 100Mb the log file will be rotated.

So then the dom error log files won't be rotated

9
Mod_Security / Re: 19GB modsec_audit.log
« on: March 14, 2025, 07:24:49 PM »
Create the file:

/etc/logrotate.d/httpd

with the following content:

Code: [Select]
/usr/local/apache/logs/*log
{
        missingok
        notifempty
        sharedscripts
        copytruncate
        compress
        postrotate
                if [ -f /usr/local/apache/logs/httpd.pid ]; then
                        kill -USR1 `cat /usr/local/apache/logs/httpd.pid`
                fi
        endscript
        maxsize 100M
}

It will rotate files called like "anythinglog" located in the folder /usr/local/apache/logs/

Also do I run this manually when they get large oer does it run on it's own?

10
Mod_Security / Re: 19GB modsec_audit.log
« on: March 14, 2025, 06:00:20 PM »
Ok will that also rotate the error dom logs? I am noticing one or two error logs is getting large as well. Also thank you for your help.

11
Mod_Security / 19GB modsec_audit.log
« on: March 14, 2025, 04:00:39 AM »
Is this file not getting rotated in my log rotate? Is this not in CWP by default and if so ho can I add it so it will get rotated?

12
Aplications / Re: Imagick Error
« on: February 25, 2025, 10:06:56 PM »
Might have worked back then but doesn't now. Worked until I got to this step:

[root@viking imagick-3.7.0]# /opt/alt/phpXX/usr/bin/phpize
-bash: /opt/alt/phpXX/usr/bin/phpize: No such file or directory

13
Aplications / Imagick Error
« on: February 25, 2025, 09:30:24 PM »
Does anyone know how to fix this? It's messing up sites server wide uggggh

Warning: Version warning: Imagick was compiled against ImageMagick version 1692 but version 1693 is loaded. Imagick will run but may behave surprisingly in Unknown on line 0

14
Updates / Re: How to stop update notifications for non existent updates?
« on: January 19, 2025, 06:57:59 PM »
Ok, I deleted the other an added this: 0 0 * * * /etc/cron.daily/yum

Thank you

15
Updates / Re: How to stop update notifications for non existent updates?
« on: January 19, 2025, 06:14:28 AM »
0 0 * * * yum -y update

Pages: [1] 2 3 ... 8