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

Pages: [1] 2 3 ... 58
1
Apache / Re: Issues with image displaying
« on: August 22, 2025, 12:36:46 PM »
You said you tried apache only.  Try setting that domain to NGINX only and see if it still occurs.  Then we can narrow down if it might be an apache issue, as apache is used in both configurations you tried.

2
CentOS-WebPanel Bugs / Re: User account infected
« on: August 21, 2025, 05:37:00 PM »

3
You're referring to pm2, not node.   Node doesn't log anything, but the pm2 wrapper does.  Check the link below, and consider installing logrotate

https://pm2.keymetrics.io/docs/usage/log-management/

5
CentOS-WebPanel Bugs / Re: Cannot Delete File
« on: July 20, 2025, 01:39:49 AM »
You need to chattr -i ../admin

You then should be able to remove the error.php file.  Then chattr +i ../admin

6
DNS Manager / Re: DNS manager is broken
« on: June 22, 2025, 05:48:32 AM »
It work's OK on AlmaLinux 8.x with PHP 7.0.x

I was hoping since AL9 uses cwpphp 7.4 it would work, but it does not.
And you can't install anything lower than 7.4 on AL9. :/

Can you not build 7.0 from source?

7
CentOS-WebPanel GUI / Re: Email ids and forwards
« on: April 15, 2025, 01:12:07 AM »
If you have account@domain.com

and setup your forward for account@domain.com >>> account@domain.com, otheraccount@domain.com,  It should still forward a copy of the message to the mailbox.

8
Updates / Re: maria DB update
« on: April 14, 2025, 01:10:54 AM »
the Centos Repos have been archived.  You need to change the mariadb.repo file.  Change all instances of mirror. to archive.

9
PHP / Re: over core pipe limit error
« on: April 12, 2025, 08:04:36 PM »
Out of Memory, Out of SWAP, Out of Disk Space.  Could be loads of things.  Can you post your server specs.

10
MySQL / Re: /includes/class_core.php on line 311 error
« on: April 12, 2025, 01:00:53 PM »
PHP Forums are known to be hard on mysql servers.  It's entirely possibly that the mysql server is overwhelmed with connections, thus the timeout message.   Tuning your mysql to meet your server resources, as well as caching plugins should help resolve the problem.

11
Information / Re: check all autoSSL (Lets encrypt) that failed
« on: April 12, 2025, 12:59:20 PM »
cat /root/.acme.sh/cwp_certs/acme.sh.log | more

12
CentOS-WebPanel GUI / Re: Email ids and forwards
« on: April 12, 2025, 12:52:04 PM »
Just as it refers to.  Add the forward address in as one of the comma separated list of emails to be forwarded to.


https://prnt.sc/3Scr75OKwP5n

13
MySQL / Re: howto export all databases and users with privel
« on: April 12, 2025, 04:51:04 AM »
mysqldump --system=users --insert-ignore --all-databases >  alldatabase.sql


More info can be found here:

https://dba.stackexchange.com/questions/299650/mysqldump-all-database-including-user-password-and-grants

14
Information / Re: Goaccess stopped working
« on: April 10, 2025, 03:34:36 PM »
Code: [Select]
/usr/local/apache/domlogs/*.log {      <<<  Tells logrotate all files ending in .log in the domlog directory
    missingok   <<< continue log rotation without reporting any error if any of the specified log files are missing.
    notifempty   <<< ensures that log files are not rotated if they are empty. If a log file is empty, it won't trigger rotation.
    sharedscripts    <<< ensures that the commands or scripts specified in the prerotate or postrotate directive are executed only once, regardless of the number of log files being rotated.
    daily  <<<  Run every day
    rotate 7    <<< Keep 7 days of logs
    postrotate    <<<<  reload httpd once the logs are rotated
        /sbin/service httpd reload > /var/log/httpd-rotate.log 2>&1 || true
    endscript
    compress   <<<< GZIP the log files to save space
}

15
DNS / Re: My webpanel as DNS server
« on: April 10, 2025, 03:29:52 PM »
Hi, thank you by your recommendation. But if I want to use my webpanel server to be my own dns server how can I do it please?

Your first requirement is to setup your own nameservers.  Most Registar's call these either GLUE records or HOST records.  You need to log in and create at least 2 records (Ex ns1 and ns2). 

Then change the Nameservers in CWP to use your custom nameservers

I highly recommend a second server somewhere to host the second DNS server.

Pages: [1] 2 3 ... 58