• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

A few 7.5.1 problems ...

lvalics

Silver Pleskian
Plesk Guru
After some time, I observed some anomalies on PLESK 7.5.1.

I create a DB and after I wanna see in PLESK phpMyAdmin, I get:
SHOW DATABASES LIKE 'testdb'
MySQL said: Documentation
#1227 - Access denied. You need the SHOW DATABASES privilege for this operation

It was created with PLESK so is strange.
Only thing is that is MySQL 4.
If I delete and recreate, than will be ok :-(

An another sad thing is when I try to delete domain or create sometimes is stuck PLESK and nothing will happen and I cannot do anything until I not restart the server (or prbabbly some process need to be killed, but I cannot kill psaservmng ...

Any ideea?
 
For first problem I find the solution, database name was wih _ underscore and even if PLESK accepted, not worked. So not use databas_like_this ...
 
Adding this to:
/usr/local/psa/admin/htdocs/domains/databases/phpMyAdmin/config.inc.php

solves the issue.

$db_name = str_replace("_","\_", $db_name);

cd /usr/local/psa/admin/htdocs/domains/databases/phpMyAdmin
vi config.inc.php
/You can disable
Press I down the line that says
// You can disable a server config entry by setting host to ''.

and paste that line.

save and exit.

problem solved :)
 
Back
Top