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.
556
CentOS 6 Problems / Re: Nginx force download and custom error pages
« on: May 03, 2020, 06:33:17 PM »
Try moving them up the config. Like immediately after the "location / { " and before the first location match block. See what happens.
Nginx can be very touchy on where you can and can't put config options.
Nginx can be very touchy on where you can and can't put config options.
557
Updates / Re: sh update_cwp script giving errors
« on: May 03, 2020, 06:31:04 PM »
From what I'm reading, polkit hardened their latest release. It is having adverse affects on every operating system. Hopefully their will be a bug release soon. But I haven't had any issue restarting services other than that warning message appears.
558
Backup / Re: Backups run at UTC time (universal time) instead of CEST time (local time)
« on: May 03, 2020, 06:05:47 PM »
Change your timezone.
# mv /etc/localtime /etc/localtime.backup
# ln -s /usr/share/zoneinfo/Europe/Brussels /etc/localtime
systemctl restart crond
once your hit /usr/share/zoneinfo/ you can begin double tapping the tab key to get a list.
# mv /etc/localtime /etc/localtime.backup
# ln -s /usr/share/zoneinfo/Europe/Brussels /etc/localtime
systemctl restart crond
once your hit /usr/share/zoneinfo/ you can begin double tapping the tab key to get a list.
559
Updates / Re: sh update_cwp script giving errors
« on: May 03, 2020, 06:00:28 PM »
try
systemctl stop polkit
/scripts/cwp_update
then you should be able to retstart polkit
systemctl stop polkit
/scripts/cwp_update
then you should be able to retstart polkit
560
CentOS 7 Problems / Re: security_UserProcessYou Error
« on: May 03, 2020, 05:58:48 PM »
It happens because polkit is a PITA. If it's not having a negative affect on your server, you can safely ignore it.
561
CentOS 6 Problems / Re: Nginx force download and custom error pages
« on: May 03, 2020, 05:45:56 PM »
There were patches in 1.16. .14 was not handling as they expected.
I believe your issue with downloads is.
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot|sh)$ {
root /home/path/to/the/documnet/root;
expires max;
try_files $uri @backend;
}
Try putting your force downloads inside this block so it is reevaluated.
I believe your issue with downloads is.
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot|sh)$ {
root /home/path/to/the/documnet/root;
expires max;
try_files $uri @backend;
}
Try putting your force downloads inside this block so it is reevaluated.
562
CentOS 6 Problems / Re: Nginx force download and custom error pages
« on: May 03, 2020, 08:36:24 AM »
Post the entire config file, not just a snippet. Are these in a location block, Server block, http block? Chances are another block is taking prescience.
563
Nginx / Re: Nginx works well Apparently But it has a "Monitoring via Monit" error
« on: May 03, 2020, 02:12:35 AM »
What happens when you click the "Monitor" button on that line?
564
CentOS 7 Problems / Re: Mail Outgoing Working fine But Incoming is not [550 No Such User Here]
« on: May 03, 2020, 01:08:23 AM »
Maybe your DNS mx records got changed???
565
New Modules / Re: [BUG - ERROR] Two Factor Authorization Mod - CWP_2FA by "rcschaff"
« on: May 03, 2020, 12:34:49 AM »
As for special characters, that should have been resolved. Please tell me what characters aren't working for you.
566
New Modules / Re: [BUG - ERROR] Two Factor Authorization Mod - CWP_2FA by "rcschaff"
« on: May 03, 2020, 12:33:15 AM »
Ok. Verify that the API key has access to accounts-List
As for uninstall, I will create a script. I have already added it as an issue on the GitHub page.
As for uninstall, I will create a script. I have already added it as an issue on the GitHub page.
567
New Modules / Re: [BUG - ERROR] Two Factor Authorization Mod - CWP_2FA by "rcschaff"
« on: May 02, 2020, 04:16:25 PM »
That specific error has to do with not being able to pull a list of accounts from the api.
Could you verify that the API endpoint is eunning.
netstat -aptn | grep 2304
As for uninstall, you can manually reverse the steps of in install.sh, bit I will add an uninstall script soon.
Could you verify that the API endpoint is eunning.
netstat -aptn | grep 2304
As for uninstall, you can manually reverse the steps of in install.sh, bit I will add an uninstall script soon.
568
E-Mail / Re: can't log in to email "login failed"
« on: May 02, 2020, 02:37:46 AM »
The origional answer should not have been to delete/reinstall dovecot. Roundcube is a PHP script. If it couldn't access the storage engine, it was probably a permissions problem. If you reinstalled dovecot, but didn't configure it correctly, it has no idea what accounts are on the server. CWP uses Mysql to hold the account info, and if dovecot deleted that table on uninstall, you may have fubared your mail.
569
CSF Firewall / Re: Firewall suddenly blocking access to websites
« on: May 02, 2020, 02:34:47 AM »
check TCP_IN, TCP6_IN, TCP_OUT and TCP6_OUT to make sure the ports are open. then restart csf.
570
CentOS 7 Problems / Re: Mail Outgoing Working fine But Incoming is not [550 No Such User Here]
« on: May 02, 2020, 02:32:21 AM »
make sure postfix is running and can connect to mysql. Make sure dovecot is also running for local delivery.