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

Pages: [1]
1
CentOS 6 Problems / Re: Roudcube webmail redirect problem
« on: April 09, 2019, 04:57:38 PM »
I'm facing similar issue with CentOS 7 + CWP. It still doesn't work for me even after yum updates, reboot and clearing browser cache.

Applied a temporary workaround for now: http://forum.centos-webpanel.com/updates/so-much-update-errors-last-days-last-one-i-lost-webmail/msg22519/#msg22519

2
Same issue here with CentOS 7 + CWP :( - All yum updates (including cwpsrv) are already installed, server rebooted, browser cache cleared, yet webmail.<domain> redirect doesn't work.

Code: [Select]
# cat /etc/centos-release
CentOS Linux release 7.6.1810 (Core)

# yum update
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
<...>
No packages marked for update

# yum list installed | grep @cwp
apr.x86_64                            1.6.2-1                          @cwp     
apr-devel.x86_64                      1.6.2-1                          @cwp     
apr-util.x86_64                       1.6.0-1                          @cwp     
apr-util-devel.x86_64                 1.6.0-1                          @cwp     
cwp-httpd.x86_64                      2.4.39-1                         @cwp     
cwp-php.x86_64                        5.6.37-1                         @cwp     
cwp-suphp.x86_64                      0.7.2-3                          @cwp     
cwpphp.x86_64                         7.0.32-1                         @cwp     
cwpsrv.x86_64                         1.15.10-2                        @cwp     

As a temporary workaround (while knowing it's not a real fix), I have made the following change to /usr/local/apache/conf/sharedip.conf.
FROM
Code: [Select]
    RewriteRule ^/(.*) http://127.0.0.1:2095/$1 [P]TO
Code: [Select]
    RewriteRule ^/(.*) https://%{HTTP_HOST}:2096/$1 [R]
And restarted web server:
Code: [Select]
# service httpd restart
Redirecting to /bin/systemctl restart httpd.service

http://webmail.<domain> now redirects to: https://webmail.<domain>:2096 which is not ideal but works.

I hope an official fix comes out soon from CWP team. Keep up the good work guys!  8)

Pages: [1]