vote up 0 vote down star

Hi,

I'd like to automatically change my database connection settings on a per-vhost basis, so that I don't have to edit any PHP code as it moves from staging to live and yet access different databases. This is on a single dedicated server.

So I was wondering, can I set a PHP variable or constant in httpd.conf as part of the vhost definition that the site can then use to point itself to a testing database automatically?

$database = 'live';
if (some staging environment variable is true) {
    $database = 'testing'; // and not live
}

If this isn't possible, I guess in this case I can safely examine the hostname I'm running on to tell, but I'd like something a little less fragile

Hope this makes sense

many thanks

Ian

flag

38% accept rate
This is a not a good idea. At least, IMHO. Use your VC, do a tag and commit the changes necessary and be done with it. It will be much cleaner then some sort of server-side config. – Till Sep 29 '08 at 1:38
We do twenty releases a week, Till... Why is what you're suggesting a good idea? – Flubba Oct 9 '08 at 7:26

4 Answers

vote up 4 vote down check

Did you tried to use the .htaccess file? You could override the php.ini values using it.

Just put the .htaccess file into your htdocs directory:

php_value name value

Futher information:

link|flag
Doing this through htaccess sounds like a much better idea than httpd.conf. – Alex Sep 28 '08 at 19:20
vote up 8 vote down

Yep...you can do this:

SetEnv DATABASE_NAME testing

and then in PHP:

$database = $_ENV["DATABASE_NAME"];
link|flag
Ahem, pardon me, shouldn't that read $_ENV["DATABASE_NAME"]? – Brent.Longborough Sep 28 '08 at 19:58
Yep...thanks. I corrected it. – JW Sep 28 '08 at 20:33
vote up 1 vote down

You can set an environment variable and retrieve it with PHP.

In httpd.conf:

SetEnv database testing

In your PHP:

if (getenv('database') == 'testing') {

or

if ($_SERVER['database'] == 'testing') {

link|flag
vote up 0 vote down

I would not set an environment variable, as this is also visible in default script outputs like PhpInfo();

just use a php_value in your .htaccess just above the htdocs folder and you're done and safe :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.