minor fix in template
authorkonrad <konrad@6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33>
Fri, 7 Aug 2009 12:46:14 +0000 (12:46 +0000)
committerkonrad <konrad@6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33>
Fri, 7 Aug 2009 12:46:14 +0000 (12:46 +0000)
git-svn-id: https://silmor.de/svn/softmagic/smoke/trunk@315 6e3c4bff-ac9f-4ac1-96c5-d2ea494d3e33

www/config.php.template

index 2f9a895..7976dd2 100644 (file)
@@ -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");