• 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.

Resolved Webmail subdomain is not interpreted. Other Subdomains ok.

Ursus

New Pleskian
Hello Together

I have been searching for more than an hour now, but without any result.

My Problem, i installed a brand new Ubuntu 14.04 Server and installed Plesk 12.5 on it.
I Extended the Plesk installation with several PHP Versions and Roundcube WebMail Client.

I also createt a Domain and a subdomain to check the DNS.

My Problem, when i try to Access "webmail.domain.tld" the browser Downloads a file without extension. I figured out, that tis is the index(.php) file from roundcube.
So i ended up knowing, that php is not interpreted in this part.

I created a new subdomain to check, but there php works perfectly.

Further i reinstalled all PHP Versions, the Roundcube and installed the Horde Webmail as well.
No luck.

In the vhost Access log i found this:
roundcube.webmail:443 MY.IP.XX.XX - - [27/Aug/2016:14:27:26 +0200] "GET / HTTP/1.1" 200 14632 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393"

In my opinion, this line seems to be correct...

Is there anyone having the same issue?

Thank you

Urs
 
Alternatively: Change the Apache default to FastCGI and check the "PHP5" module, then restarte Apache.
 
Hello and thank you for the welcome.

@Lloyd_mcse , Thank you for this hint, but this does not change the situation.
Here is one part of the vhosts configuration. (To test, i do not use SSL).
<VirtualHost xxx.xxx.xxx.xxx:80 [xxxx:xxxx:xxx:xxx::1]:80>
ServerName roundcube.webmail
ServerAlias roundcube.webmail.*
ServerAdmin "xxxx@xxxxxxxx.xx"
IncludeOptional "/etc/apache2/plesk.conf.d/webmails/roundcube/*.conf"
UseCanonicalName Off
DocumentRoot "/usr/share/psa-roundcube"
Alias /roundcube/ "/usr/share/psa-roundcube/"
<IfModule mod_suexec.c>
SuexecUserGroup roundcube_sysuser roundcube_sysgroup
</IfModule>
<IfModule mod_fcgid.c>
FcgidInitialEnv PP_CUSTOM_PHP_CGI_INDEX fastcgi
FcgidInitialEnv PP_CUSTOM_PHP_INI "/etc/psa-webmail/roundcube/php.ini"
FcgidMaxRequestLen 134217728
<Directory "/usr/share/psa-roundcube">
Options -Indexes +FollowSymLinks
AllowOverride FileInfo
Require all granted
Include "/etc/apache2/plesk.conf.d/roundcube.htaccess.inc"
<Files ~ (\.php$)>
SetHandler fcgid-script
FCGIWrapper /var/www/cgi-bin/cgi_wrapper/cgi_wrapper .php
Options +ExecCGI
</Files>
</Directory>
</IfModule>
</VirtualHost>

@Peter Debik , thanks fo your advice, but i don't understand what i should do. Where do i have to switch this configuration?


Thank you guys for your Help!

Kind regards
Urs
 
Tools & Settings > Apache Web Server> Drop Down List "MPM Mode", set to "Prefork" > Check "php5" > Click "OK".
 
@Peter Debik , it seems like you saved my life! I'm not finished with testing yet, but for now, the webmail Access works! :)
Thank you so much!

Kind regards
 
Back
Top