I have a cakePHP app with my DB servers configured in the app/config/ database.php file. However, I need to use the get_cfg_var ('mysql.default_host') to get the host name because the client does not want the name hardcoded. I would appreciate a quick response regarding where the changes need to be made. Thanks
|
feedback
|
|
In the /app/config/bootstrap.php file, add a new constant like so:
Then in /app/config/database.php, in the default array (or whatever DB array you are using for production) use the constant:
Hope this helps! | ||||
|
feedback
|