Releases: DesignyourCode/wp-install
Releases · DesignyourCode/wp-install
Addition of new default parameters
Adding environment support
Adding 'disallow_file_mods' support
Improvement Environment Variable Support
This release includes:
- Improved environment variable support in Heroku (database variables can now be changed without redeploying the site)
- Adding support for use of custom database through Heroku environment variables
- Auto-detection for JawsDB
- Wordpress version number increased to 4.8.1
Note: README updated to match new setting options.
Adjusting composer link to Wordpress installer
Adjusting link to Wordpress installer
Debug fix in Heroku
This release fixes an issue in the wp-config.php file not reading Heroku environment variables correctly.
Heroku's environment variables are strings, so the wp-config.php now supports converting the string to a boolean.
If you are using v1.0.0 you may need to add the following to your wp-config.php file:
if (!file_exists($parameters)) {
if (getenv('DEBUG') === 'true' || getenv('DEBUG') === true) {
$debug = true;
} else {
$debug = false;
}
define( 'WP_DEBUG', $debug );
define( 'SCRIPT_DEBUG', $debug );
} else {
define( 'WP_DEBUG', $var['debug'] );
define( 'SCRIPT_DEBUG', $var['debug'] );
}
First Release
v1.0.0 Update README.md