• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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