Daniel Cain wrote: > Using this .ini file from the example: > > ; Production site configuration data > [production] > webhost = www.example.com > database.type = pdo_mysql > database.host = db.example.com > database.username = dbuser > database.password = secret > database.name = dbname > > ; Staging site configuration data inherits from production and > ; overrides values as necessary > [staging] > extends = production > database.host = dev.example.com > database.username = devuser > database.password = devsecret > >
Inheritance has changed. Change your ini file to: [staging : production] database.host = dev.example.com database.username = devuser database.password = devsecret Regards, Rob...
