Skip to content

Releases: DesignyourCode/wp-install

Addition of new default parameters

08 Aug 23:13
Compare
Choose a tag to compare

Adding environment support
Adding 'disallow_file_mods' support

Improvement Environment Variable Support

06 Aug 18:45
Compare
Choose a tag to compare

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

21 Mar 20:29
Compare
Choose a tag to compare

Adjusting link to Wordpress installer

Debug fix in Heroku

14 Mar 21:00
Compare
Choose a tag to compare

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

20 Aug 09:03
Compare
Choose a tag to compare
v1.0.0

Update README.md