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

Problem with Umlaut-Domains

H

HaraldT

Guest
Hi,

i have to german domains with umlauts at my server, both with the umlaut ö (o umlaut).

the first is a physical hosting, the second a domain alias.

the ph is directed to the right vhost, the da is not directed to the right ph vhost. it is derected to the server standard page.
i was able to redirect it to the right ph domain with some entries in the .htaccess.

looks like plesk is not guiding the ö domains to the right ph domain if the ö domain is a domain alias.

Any suggestion on this?

TIA
.h
 
I can acknowledge the problem using Plesk 10.1 with all patches installed.

Edit:

I found the cause of the problem:

Plesk writes the domainname with umlauts to the config instead of the ASCII coded domain name. If you replace the ServerAlias lines by hand everything works as expected.

Regards,

Sebastian

---------------------------------------------------------------
PRODUCT, VERSION, OPERATING SYSTEM, ARCHITECTURE
PLESK, 10.1, Ubuntu 8.04.4 LTS, x86_64

PROBLEM DESCRIPTION AND STEPS TO REPRODUCE
Domain aliases with umlauts aren't redirected to main site, domain aliases without umlauts are working as expected

Create customer, subscription, domain. Add domain alias with umlaut.

ACTUAL RESULT

Domain alias is redirected to plesks default page

EXPECTED RESULT

Domain alias is redirected to main site

ANY ADDITIONAL INFORMATION

Plesk writes the domainname with umlauts to the vhosts configuration file instead of the ASCII/IDN coded domain name. If you replace the ServerAlias lines by hand everything works as expected.
--------------------------------------------------------------
 
Last edited by a moderator:
Hi Sebastian,

thx for the hint.

in which files do i find the entries?
are they overwritten, the next time i add a domain alias?

tia
.h
 
Go to the folder where all your sites are stored (/var/www/vhosts on Ubuntu). Choose your sites folder. Now there is a folder named conf. Inside this folder you'll find several configuration files named with a number. Make a backup copy of the newest one. Edit the newest one. Restart Apache.

Next time you'll change something on the domain configuration, you'll have to do that again because Plesk will overwrite your manual changes.

Regards

Sebastian
 
Hi Sebastian,

i dont want to edit the files everytime the user changes some settings.
i'll wait until the bug is fixed.
until then i did something else:

in the .htaccess file of the standard website on the server i entered the following lines:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^xn-domain-name$
RewriteRule (.*) http://ph-domain-name/$1 [R=301,L]

RewriteCond %{HTTP_HOST} ^www.xn-domain-name$
RewriteRule (.*) http://www.ph-domain-name/$1 [R=301,L]

this works always, even if the manual changes are overwritten by plesk.

cheers
.h
 
Back
Top