Recent Posts

Pages: [1] 2 3 ... 10
1
Theme Releases / Re: customising layout otions lost
« Last post by RCsarrinah3 on May 11, 2024, 09:35:34 PM »
You have to install a local copy of Roundcube to your account to use instead of the default system-wide preinstalled version.   You can do that from the cPanel Installatron.  Then, you upload the Larry theme to your Roundcube "skins" directory from  https://github.com/roundcube/larry.
2
Issues & Bugs / Re: Server Error! (error) Issue
« Last post by halimzhz on May 11, 2024, 07:48:32 AM »
Hi

Now i think i found the what is the root cause, its about cloudflare enable proxy, arghhhhhhhhh, i ask client to turn it off now and see, but i'm so confident that the issue is
3
Issues & Bugs / Re: Server Error! (error) Issue
« Last post by halimzhz on May 11, 2024, 06:16:12 AM »
Hi

Just find out the issue, if i access via webmail.domain-name.com, of course error will happen when i add the file for attachment, but if i access thru hostname e,g one.domain-name.com/webmail, theres no more issue of Server Error! (error), you think where the problem is ?

Thank you
4
Pending Issues / Re: Cloudflare 524 Error with Roudcube
« Last post by MagdAlmuntaser on May 10, 2024, 10:59:55 PM »
There is an issue between the Cloudflare DNS proxy....

This isn't a Roundcube issue.....

A similar comment was posted earlier in this thread.....

Ok guys..
Finally, I found where the problem lies. The issue is not with Roundcube, it's with the cPanel plugin, specifically CardDAV. You'll find it in this path:

/usr/local/cpanel/base/3rdparty/roundcube/plugins/carddav

The exact problem is in the config.inc.php file. An "if" condition should be added to the code to check if /var/cpanel/calendarserver exists on the server or not because it will use port 2080, which is not supported by Cloudflare.

Solution:
Replace the following code in the config.inc.php file, and the webmail will work:
Code: [Select]
$prefs['_GLOBAL']['suppress_version_warning'] = false;
$prefs['_GLOBAL']['sync_collection_workaround'] = false;
if(file_exists('/var/cpanel/calendarserver')) {
$domain = getenv('HTTP_HOST');
if( empty($domain) ) $domain = getenv('DOMAIN');
// Figure out the expected formatting based on username
$userName = (string) $_SERVER['_RCUBE'];
$userFormat = (string) '%l@%d';
if( strpos($userName, '/') === false) {
$userFormat = '%l';
}

$prefs['cPCardDAV'] = array(
   'name'     => 'cPanel CardDAV',
   'username' => $userFormat,
   'password' => '%p',
   'url'      => 'https://' . $domain . ':2080/addressbooks/' . $userFormat . '/addressbook/',
   'active'   => true,
   'fixed'    => array( 'name', 'username', 'password' ),
   'hide'     => false,
);
}
5
OK. Then we have maximum clarity.

When we upgrade to RHEL 9, then we will stay on PHP 8.0.x and no higher.

Thank you very much.
6
PHP 8.1 isn't supported unless you move to Roundcube 1.6.x but Roundcube 1.6.x also supports PHP 8.2 and PHP 8.3.
7
OK, that is good news. Excellent.

Are there differences in support between PHP 8.0, PHP 8.1 and PHP 8.2?

Is it irrelevant which version of PHP 8 we use and does Roundcube 1.5.x work equally well with all versions of PHP 8? Or should we take the precaution of sticking with the oldest, still secure version of PHP 8, in this case PHP 8.0.x (at least as long as RHEL 9 offers a secure 8.0.x)?
8
Roundcube 1.5.x support PHP 8 so if RHEL 9 is using PHP 8 you should be OK.
9
TLDR: Is it possible to run Roundcube 1.5.6 in a RHEL 9 environment without any problems?



Hello everyone,

we are currently using Roundcube version 1.5.4 in a RHEL 8 environment with PHP version "7.4.33".

Specifically, this is PHP "7.4.33-1.module+el8.8.0+17865+ef7eddfa".

The exact RHEL release is "Red Hat Enterprise Linux release 8.8 (Ootpa)".

We want to update to Roundcube 1.5.6 LTS at most for the time being, because we do not know whether we will be missing essential functionality if we update to Roundcube "1.6.6".

Now the question: If we first update Roundcube to version 1.5.6, is it then possible to update the operating system from RHEL 8 to RHEL 9 without any problems?

I mean, does the PHP version that comes with RHEL 9 by default harmonize with Roundcube 1.5.6 LTS?

As far as I know, RHEL 9 offers PHP version 8.0.

Has anyone had any experience with such a constellation?

If the PHP version is problematic under RHEL 9, should we install a more suitable PHP version then?

Or is it better to bite the bullet and upgrade to Roundcube 1.6.6 instead?

Answers would make me very happy
Scimgro
10
Issues & Bugs / Re: Stuck on Login successful. Redirecting
« Last post by SKaero on May 10, 2024, 09:03:15 AM »
I believe your running into this issue with cPanel: https://www.roundcubeforum.net/index.php/topic,30888.0.html
Pages: [1] 2 3 ... 10