Skip to content

Commit 843bf7e

Browse files
authored
Update sample_config.php
1 parent 15daac2 commit 843bf7e

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

sample_config.php

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
*/
1212

1313
/** MySQL database username */
14-
define( 'DB_USER', 'db user' );
14+
define( 'DB_USER', 'database username' );
1515

1616
/** MySQL database password */
17-
define( 'DB_PASS', 'db pass' );
17+
define( 'DB_PASS', 'database password' );
1818

1919
/** The name of the database */
20-
define( 'DB_NAME', 'db name' );
20+
define( 'DB_NAME', 'name of the database' );
2121

2222
/** MySQL hostname */
2323
define( 'DB_HOST', 'localhost' );
@@ -29,15 +29,14 @@
2929
/** For how many hours should queries be cached? **/
3030
define( 'DB_CACHE', '12' );
3131

32-
/*
32+
/*
3333
** Site options
3434
*/
35-
/** License key
36-
Create it in the store, under "My Licenses" **/
37-
define( 'phpVibeKey', 'the key goes here' );
35+
/** License key for commercial use (if case!) **/
36+
define( 'phpVibeKey', 'vibe-localhost-key' );
3837

3938
/** Site url (with end slash, ex: http://www.domain.com/ ) **/
40-
define( 'SITE_URL', 'https://www.domain.com/' );
39+
define( 'SITE_URL', 'https://yoursiteurl.com/' );
4140

4241
/** Admin folder, rename it and change it here **/
4342
define( 'ADMINCP', 'moderator' );
@@ -64,10 +63,10 @@
6463
/*
6564
** Full cache settings.
6665
*/
67-
$killcache = false; /* true: disabled full cache (recommended for starters); false : enabled full cache */
66+
$killcache = true; /* true: disabled full cache (recommended for starters); false : enabled full cache */
6867
$cachettl = 7200; /* $ttl = Expiry time in seconds for cache's static html pages */
6968
/* 1 day = 86400; 1 hour = 3600; */
7069
/*
7170
** Custom settings would go after here.
7271
*/
73-
?>
72+
?>

0 commit comments

Comments
 (0)