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

HTTP and FTP config files gone.

I've jus reinstalled proftpd, set conf as bellow quoted, and at least my clients have ftp access now.
It is clear that Parallels use us as beta tester.

<Global>
DefaultRoot ~ psacln
AllowOverwrite on
</Global>
ServerName "ProFTPD"
ServerType standalone
###ServerType inetd
DefaultServer on
DefaultTransferMode binary
UseFtpUsers on
RootLogin no
TimesGMT off
SetEnv TZ :/etc/localtime
Port 21
Umask 022
MaxInstances 30
ScoreboardFile /var/run/proftpd/scoreboard
TransferLog /usr/local/psa/var/log/xferlog
<Directory /var/www/vhosts>
GroupOwner psacln
</Directory>
AuthPAM on
AuthPAMConfig proftpd
IdentLookups off
UseReverseDNS off
AuthGroupFile /etc/group
SystemLog /var/log/proftp.log
SyslogLevel debug
DefaultRoot ~
 
Our supplier managed to fix it, as far as i can see they reran all the post-install scripts.
in particular:

# cd /usr/local/psa/bootstrapper/pp10.9.0-bootstrapper/
# ./bootstrapper.sh repair

After that they had to reinstall both atmail and horde because they were missing.
 
plesk 10.0.0.1 update failed: Server alias www not in httpd.include

Where is the "WWW" check box? All vhosts work fine for "domain.tld" but "www.domain.tld" not;

In the template : psa/admin/conf/templates/default/domain/domainVirtualHost.php

<?php if ($VAR->domain->www): ?>
ServerAlias "www.<?php echo $VAR->domain->asciiName ?>"
<?php endif; ?>

does not work.

PBO
 
I notice the www checkbox is gone too and on the sites I have seen the same www mapping in the Apache config go away this looks to be the case...it removes the apache mappings.

I fixed it by deleting the old www a record in the root domain and creating a domain alias with the www.mydomain.com...then editing all the extra records it adds under the dns settings and having the "Synchronize DNS zone with the primary domain" setting checked.

I need to check to check if the DNS zone is still good but this is either a bad bug or a very confusing setup to say the least.
 
Hi,

As with FTP lack of access, I had to repair all this bugs after upgrading to 10.0.1

In my case, all my domains had www set in DNS, but after upgrade not all domains worked with www, so I run the script bellow setting "ServerAlias www.domain.tld" on all vhost.conf for all domains and problem's gone.

If some one use it, do it as your own risk.
echo "SELECT name FROM domains;" | mysql -s psa | (while read D; do find /var/www/vhosts/${D}/conf -type d | (while read F; do echo "ServerAlias www.${D}" >> ${F}/vhost.conf; done); done)

Greetings,
Jorge.
 
i have fix thi bug in this way
/usr/local/psa/admin/conf/templates/default/domain/domainVirtualHost.php

<VirtualHost <?php echo $VAR->domain->physicalHosting->ipAddress->address ?>:<?php echo $OPT['ssl'] ? $VAR->server->webserver->httpsPort : $VAR->server->webserver->httpPort ?>>
ServerName "<?php echo $VAR->domain->asciiName ?>:<?php echo $OPT['ssl'] ? $VAR->server->webserver->httpsPort : $VAR->server->webserver->httpPort ?>"
ServerAlias "www.<?php echo $VAR->domain->asciiName ?>" <--- ADDED
<?php if ($VAR->domain->www): ?>
ServerAlias "www.<?php echo $VAR->domain->asciiName ?>"
<?php endif; ?>
UseCanonicalName Off
<?php foreach ($VAR->domain->webAliases AS $alias): ?>
ServerAlias "<?php echo $alias->asciiName ?>"
ServerAlias "www.<?php echo $alias->asciiName ?>" <-- ADDED
<?php if ($VAR->domain->www): ?>
ServerAlias "www.<?php echo $alias->asciiName ?>"
<?php endif; ?>
<?php endforeach; ?>

do it as your own risk.

Bye Fr4
 
Back
Top