From: konrad Date: Fri, 7 Aug 2009 12:46:14 +0000 (+0000) Subject: minor fix in template X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=5426f5885c67b9f028e9c3c26008ca38bc8dd641;p=konrad%2Fsmoke.git minor fix in template git-svn-id: https://silmor.de/svn/softmagic/smoke/trunk@315 6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33 --- 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");