From 5426f5885c67b9f028e9c3c26008ca38bc8dd641 Mon Sep 17 00:00:00 2001 From: konrad Date: Fri, 7 Aug 2009 12:46:14 +0000 Subject: [PATCH] minor fix in template git-svn-id: https://silmor.de/svn/softmagic/smoke/trunk@315 6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33 --- www/config.php.template | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/www/config.php.template b/www/config.php.template index 2f9a895..7976dd2 100644 --- a/www/config.php.template +++ b/www/config.php.template @@ -17,10 +17,9 @@ $template="./template/"; // create engine: server, user, password $db = new MysqlEngine("localhost","smoke",""); // set database name -$db->setDbName("smoke2"); -//$db->setDbName("DB396352"); -// set table-prefix (optional) -$db->setPrefix("smoke_"); +$db->setDbName("smoke"); +// set table-prefix (must be non-empty) +$db->setPrefix("smoke2_"); //set this to one of the supported MySQL storage engines for DB creation $db->setStorageEngine("InnoDB"); //set default character set @@ -30,7 +29,7 @@ $db->setCharacterSet("utf8"); //////////// // DB Administration -//use this for DB creation and upgrading, comment it out otherwise +//use this for DB creation and upgrading, comment it out otherwise. //change the passcode before using this on a production system!!! $db->setAdminPassCode("Admin","SmokeInMyEye"); -- 1.7.2.5