• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Roundcube/Horde and mod_php instead of mod_fcgid

kanada

Basic Pleskian
Hello,

is there any way to switch/change php handler for Roundcube and Horde webmails from mod_fcgid to mod_php?
I plan off FastCGI on the server, but i can't because both webmails are handled by mod_fcgid.

I don't understand why Roundcube/Horde run under FCGI while Atmail works on mod_php like a charm.

Please advise.

Regards,
kanada
 
Could you please explain why you do not want to use mod_fcgid? What is the reason?
 
I wan't to setup apache-mpm-itk instead apache-mpm-prefork. mod_fcgid doesn't work correctly with apache-mpm-itk module.
Moreover mod_fcgid willn't needed then and I plan to disable it entirely.

Roundcube/Horde lock me this operation.
 
I wan't to setup apache-mpm-itk instead apache-mpm-prefork. mod_fcgid doesn't work correctly with apache-mpm-itk module.
Moreover mod_fcgid willn't needed then and I plan to disable it entirely.

Roundcube/Horde lock me this operation.


You just need to remove mod_fcgid section and add mod_php section in Horde/Round configs, like /etc/httpd/conf/plesk.conf.d/roundcube.conf


<Directory "/usr/share/psa-roundcube/">
Options -Indexes FollowSymLinks
AllowOverride FileInfo
Order allow,deny
Allow from all
Include "/etc/httpd/conf/plesk.conf.d/roundcube.htaccess.inc"


<IfModule mod_php5.c>
php_admin_flag engine on

php_admin_flag safe_mode off
php_flag display_errors On
php_flag log_errors On
php_value error_log logs/errors
</IfModule>

Options -Includes +ExecCGI
</Directory>

and than change permission to user under which you are going to run this virtual host: # chown -R SomeUserName:SomeUserName /usr/share/psa-roundcube/*


Roundcube error "DB Error: Configuration error. Unsupported database driver" will means that there are still permission issue.

You should be ready to performing a lot of customization by switching to apache-mpm-itk. And I'd like to ask you which actual issues you are trying to avoid by this module?
 
Back
Top