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

Forwarded to devs Delete username and password from Backups FTP Remote Storage Settings

seltix

New Pleskian
Username:

TITLE

Delete username and password from Backups FTP Remote Storage Settings

PRODUCT, VERSION, OPERATING SYSTEM, ARCHITECTURE

linux centos 18.0.44
Plesk Obsidian 18.0.44

PROBLEM DESCRIPTION

Hello,
I want to delete all information from the backups FTP remote storage settings ( server, username and password ) but the only option I can see working is the checkbox to disable it and when I do it only disable the inputs without deleting the information.

PS: i'm a reseller, I only have reseller access.

Thanks!

STEPS TO REPRODUCE

In "Home > Domains > domain.ltd > Backup Manager > Remote Storage Settings" after successful saving a valid FTP account :
1 - Delete server and username
2 - Press save

ACTUAL RESULT

It will no save because inputs are required. If I fill with fake info it will not save because it will fail to connect. If I delete the info and disable FTP storage it will not save the input.

EXPECTED RESULT

Delete the server and username

ANY ADDITIONAL INFORMATION

(DID NOT ANSWER QUESTION)

YOUR EXPECTATIONS FROM PLESK SERVICE TEAM

Confirm bug
 
Bug confirmed: PPPM-13615.

As a workaround, settings can be removed manually:
Code:
# plesk db
MariaDB [psa]> SELECT id FROM domains WHERE name='example.com';
+----+
| id |
+----+
|  7 |
+----+
1 row in set (0.00 sec)
 
MariaDB [psa]> DELETE FROM BackupsSettings WHERE id=7 AND param LIKE '%backup_ftp_setting%';
Query OK, 8 rows affected (0.00 sec)
 
Back
Top