Guest User

Untitled

a guest
Jul 31st, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <?php
  2. $config = new Zend_Config_Ini(APPLICATION_PATH . '/configs/default.application.ini', null, array(
  3. 'allowModifications' => true
  4. ));
  5. $config->production->resources->db->params->host = $hostname;
  6. $config->production->resources->db->params->username = $dbuser;
  7. $config->production->resources->db->params->password = $dbpass;
  8. $config->production->resources->db->params->dbname = $dbname;
  9. $config->production->resources->layout->title = $title;
  10. $writer = new Zend_Config_Writer_Ini(array(
  11. 'config' => $config,
  12. 'filename' => APPLICATION_PATH . '/configs/application.ini'
  13. ));
  14. ?>
Add Comment
Please, Sign In to add comment