• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Search results

  1. R

    Issue Charset Issue

    Sorry about that. I was under the impression you were getting the data from a database. In this case, the MariaDB part is not relevant.
  2. R

    Question SolusVM

    I'm sorry to hear that. Did you try the contact page on the website?
  3. R

    Question SolusVM

    How did you register? At Shopping Cart - SolusVM you have the option to buy a license and start with a 30 day trial. Furthermore, You should contact them directly at Login - SolusVM
  4. R

    Issue Charset Issue

    Do your connection collation and charset match the database collation and charset? MariaDB [(none)]> SHOW SESSION VARIABLES LIKE 'character\_set\_%'; +--------------------------+---------+ | Variable_name | Value | +--------------------------+---------+ | character_set_client |...
  5. R

    Issue Charset Issue

    What PHP version are you using? We encountered such an issue when using an old MySQL connector from PHP 5.x.
  6. R

    Question SolusVM

    Yes it is an active product.
  7. R

    Question cron with arguments

    You can also set the cron using bin/magento.
  8. R

    Issue Broken table dns_recs: Corrupt

    Were the indexes removed? What happens if you run the queries again? Did the MariaDB service restart after the above mentioned error?
  9. R

    Question Plesk Email Security Pro - 421 4.3.2 Service shutting down, closing channel - Mails are stuck in the queue

    Unfortunately, emailsecurity database is not part of Plesk daily backups. Plesk daily contains: zgrep -i "^use" /var/lib/psa/dumps/mysql.daily.dump.0.gz USE `psa`; USE `mysql`; USE `horde`; USE `apsc`; USE `roundcubemail`; USE `phpmyadmin`; USE `psa`; USE `mysql`; USE `horde`; USE `apsc`; USE...
  10. R

    Issue Broken table dns_recs: Corrupt

    You need to recreate the broken index from dns_recs. You can run the following queries to rebuild the indexes: ALTER TABLE `psa`.`dns_recs` DROP PRIMARY KEY, ADD PRIMARY KEY (`id`) USING BTREE; ALTER TABLE `psa`.`dns_recs` DROP INDEX `dns_zone_id`, ADD INDEX `dns_zone_id` (`dns_zone_id`) USING...
  11. R

    Question Secure the plesk with SSL fails

    Unfortunately, 43896-37639.pph-server.de doesn't resolve to your server IP address. You won't be able to issue a Let's Encrypt certificate for it. You can check with your hoster to fix the domain name, or you can use your own domain name.
  12. R

    Question Secure the plesk with SSL fails

    43896-37639.pph-server.de doesn't resolve to an IP address. Thus you can't issue a Let's Encrypt for it. Is that the correct address provided for your server?
  13. R

    Question Secure the plesk with SSL fails

    Please show us what you selected on the Let's Encrypt page.
  14. R

    Question Secure the plesk with SSL fails

    Do you own PPH-Server.de? DNS domain ownership validation is required for wildcard Let's Encrypt SSL certificates. Plesk can issue wildcard Let's Encrypt certificates for domains that use the Plesk server nameservers. Try issuing a certificate only for 43896-37639.PPH-Server.de.
  15. R

    Question Plesk Email Security Pro - 421 4.3.2 Service shutting down, closing channel - Mails are stuck in the queue

    I suspect you received the extension update. My server received the extension update the next day (we applied the patch on all servers as soon as we were made aware of the issue): # plesk bin action-log --show | grep -i email-security 127.0.0.1 admin [2025-03-13 03:37:16.680] 'Upgrade extension'...
  16. R

    Issue Error 500 Plesk\Exception\Database (DB query failed: SQLSTATE[HY000] [2002] Connection refused)

    Interesting. When it happens, connect to the database service and check the number of active processes: plesk db "show full processlist;" | cat In the meantime, check if you don't have a small connection limit: plesk db "select @@max_connections; select @@max_user_connections;"
  17. R

    Question Plesk Email Security Pro - 421 4.3.2 Service shutting down, closing channel - Mails are stuck in the queue

    A KB article was published for this issue: https://support.plesk.com/hc/en-us/articles/30609832237591-Unable-to-receive-email-with-Plesk-Email-Security-extension-installed-connect-to-sql-unable-to-connect-to-DSN-DBI-mysql-database-emailsecurity-mysql-socket-var-run-mysqld-mysqld-sock
  18. R

    Issue Error 500 Plesk\Exception\Database (DB query failed: SQLSTATE[HY000] [2002] Connection refused)

    The first step is to verify that the MariaDB service is working correctly. If it restarts when the 4th Plesk user connects then you need to find out why. MariaDB can support up to 200 concurrent connections at any given time with the default configuration. If you have the time stamp when it...
  19. R

    Issue Error 500 Plesk\Exception\Database (DB query failed: SQLSTATE[HY000] [2002] Connection refused)

    Hi, The error in the screenshot indicates Plesk can't connect to the database service. Check the status of MariaDB. Did it restart recently? Do you have enough RAM on the VPS? OOM (Out Of Memory) events can kill the database service process and can even damage the InnoDB storage in the...
  20. R

    Issue Server Error 500 Plesk\Exception\Database

    Is the MariaDB service running? Where is the datadir and do you have the psa db in that dir? You can find the datadir by running select @@datadir;
Back
Top