Welcome Guest, Not a member yet? Register   Sign In
On the fly database setup
#6

[eluser]Rob W[/eluser]
Would the following work?

* Distribute the app with some specific values in the DB config ('demo_username' for example)
* Find & replace these values with the new ones
* Save the file

Code:
// Open the db config file - mode = read + write from beginning
$dbconfig_file = fopen('path/to/file', 'r+');
$dbconfig_text = fread($dbconfig_file);
// build arrays for str_replace to use
$find = array('demo_username') // values to find
$replace = array('real_username'); // values to replace, need to be in same position as those in $find
// Make the replacements
$new_dbconfig_text = str_replace($find, $replace, $dbconfig_text);
// rewrite the file
fwrite($dbconfig_file, $new_dbconfig_text);
// Close the handler
fclose($dbconfig_file);

Obviously with better error checking - and you'll need to be very careful about validation on the provided options, otherwise somebody could inject some nasty raw PHP code into your config file.

Hope that helps...

-R


Messages In This Thread
On the fly database setup - by El Forum - 11-20-2008, 11:49 AM
On the fly database setup - by El Forum - 11-25-2008, 09:41 AM
On the fly database setup - by El Forum - 11-25-2008, 10:07 AM
On the fly database setup - by El Forum - 11-25-2008, 10:10 AM
On the fly database setup - by El Forum - 12-18-2008, 08:47 AM
On the fly database setup - by El Forum - 12-18-2008, 09:26 AM
On the fly database setup - by El Forum - 12-18-2008, 09:30 AM
On the fly database setup - by El Forum - 01-13-2009, 08:05 AM
On the fly database setup - by El Forum - 01-13-2009, 09:05 AM
On the fly database setup - by El Forum - 01-13-2009, 09:16 AM
On the fly database setup - by El Forum - 01-13-2009, 10:38 AM
On the fly database setup - by El Forum - 01-13-2009, 10:51 AM
On the fly database setup - by El Forum - 01-13-2009, 10:54 AM
On the fly database setup - by El Forum - 01-13-2009, 10:56 AM
On the fly database setup - by El Forum - 01-13-2009, 10:58 AM
On the fly database setup - by El Forum - 01-13-2009, 11:00 AM



Theme © iAndrew 2016 - Forum software by © MyBB