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

too problem with Aspc user on plesk and all of the plesk solutions not work!!!

rout3rx

Basic Pleskian
Hi
I'm So unhappy with plesk .
this problem causes suddenly:
ERROR: Exception
[unixODBC][MySQL][ODBC 3.51 Driver]Access denied for user 'apsc'@'127.0.0.1' (using password: YES)

Additionally, an exception has occurred while trying to report this error: Exception
[unixODBC][MySQL][ODBC 3.51 Driver]Access denied for user 'apsc'@'127.0.0.1' (using password: YES)

0: aps_php.php:8075
aps_controller_registry_getpackage(resource, string '707b998a-53ec-481c-96a8-dab2859c9bbf')
1: aps_php.php:8075
APS_Controller_Registry->getPackage(string '707b998a-53ec-481c-96a8-dab2859c9bbf')
2: Config.php:21
HelpDesk_Config::getHelpDeskInstances()
3: NavigationContext.php:342
NavigationContext->_fetchHelpDeskSectionNodes(object of type UserAdmin)
4: NavigationContext.php:196
NavigationContext->fetchCustomButtonsSectionNodes(object of type UserAdmin)
5: NavigationContext.php:70
NavigationContext->fetchSection(object of type UserAdmin, string 'custom_buttons', array)
6: NavigationContext.php:402
NavigationContext->get(object of type UserAdmin)
7: Navigation.php:557
Navigation->getContextMenu(object of type UserAdmin, object of type Skin)
8: left.php3:4




after install MU#3 and rerun bootstrapper no problem fixed.
around other solutions : yum update mysqlclient15 have conflict with mysql!

what can i do?
plesk should work for customers better than this.
 
Try to fix it in psa database with following SQL query:

mysql> update misc set val="localhost" where param="aps_host";
 
Also you can synchronize password for user apsc in mysql.user as well as in psa.misc table

1. Execute the following query in mysql prompt

mysql>update misc set val='<any_password>' where param='aps_password' and val="The value currently on mysql.misc.aps_password val";

2. Update the password in mysql.user table.

mysql>update mysql.user set password=Password('<same password updated in step1 above>') where user='apsc';

mysql> flush privileges;

3. Restart psa using the command: "/etc/init.d/psa restart"
 
Back
Top