We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/wunderio/drupal-ping/blob/7.x/_ping.php#L301-L311 is using envvars with suffix _DRUPAL:
_DRUPAL
// Echo "$DB_HOST_DRUPAL-$DB_NAME_DRUPAL-$DB_PASS_DRUPAL-$DB_PORT_DRUPAL-$DB_USER_DRUPAL" // | md5sum. if (!empty(getenv('DB_NAME_DRUPAL'))) { $host = getenv('DB_HOST_DRUPAL'); $name = getenv('DB_NAME_DRUPAL'); $pass = getenv('DB_PASS_DRUPAL'); $port = getenv('DB_PORT_DRUPAL'); $user = getenv('DB_USER_DRUPAL'); $code = md5("$host-$name-$pass-$port-$user"); return $code; }
Should we use DB_ envvars defined here instead: https://github.com/wunderio/charts/blob/master/drupal/files/settings.silta.d7.php ?
DB_
The text was updated successfully, but these errors were encountered:
Also, there's no DB_PORT_DRUPAL or DB_PORT defined.
DB_PORT_DRUPAL
DB_PORT
Sorry, something went wrong.
DB_PORT just arrived: wunderio/charts#396 ;)
No branches or pull requests
https://github.com/wunderio/drupal-ping/blob/7.x/_ping.php#L301-L311 is using envvars with suffix
_DRUPAL
:Should we use
DB_
envvars defined here instead: https://github.com/wunderio/charts/blob/master/drupal/files/settings.silta.d7.php ?The text was updated successfully, but these errors were encountered: