Skip to content

Instantly share code, notes, and snippets.

@bkozora
Created April 5, 2016 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bkozora/72ede95634d743ba5245193c269efef2 to your computer and use it in GitHub Desktop.
Save bkozora/72ede95634d743ba5245193c269efef2 to your computer and use it in GitHub Desktop.
Retrieve Magento Database Configuration
<?php
require_once ("../app/Mage.php");
$app = Mage::app('default');
$config = Mage::getConfig()->getResourceConnectionConfig("default_setup");
$dbinfo = array(
"host" => $config->host,
"user" => $config->username,
"pass" => $config->password,
"dbname" => $config->dbname
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment