Toward the top of config.plesk.php is
if (defined('CONFIG_FILE_USER') && is_readable(CONFIG_FILE_USER)) {
include CONFIG_FILE_USER;
}
However, I believe it should be toward the bottom as it will override any changes we put in place.
For example:
If I have more than 1 Server setup and want a different control host/port/user/pass for each server it cannot happen the way it is set up now.
Thoughts on this?
if (defined('CONFIG_FILE_USER') && is_readable(CONFIG_FILE_USER)) {
include CONFIG_FILE_USER;
}
However, I believe it should be toward the bottom as it will override any changes we put in place.
For example:
If I have more than 1 Server setup and want a different control host/port/user/pass for each server it cannot happen the way it is set up now.
Thoughts on this?