forked from Philipinho/Simple-PHP-Blog
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
18 lines (15 loc) · 995 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/* Database credentials.*/
define('DB_TYPE', 'mysql'); // NOT USED
define('DB_SERVER', 'LOCALHOST'); // Server name/IP for the mysql server
define('DB_USERNAME', 'USERNAME'); // What username to log in with
define('DB_PASSWORD', 'PASSWORD'); // What password to use when logging in
define('DB_NAME', 'MySimpleBlog'); // What is the database we are using
define('DB_CHARSET', 'utf8'); // What character set are we using
/* Define some settings for the blog */
define('SITE_ROOT', ''); // If installed on a sub-folder. E.g. if installed to 'www.example.com/blog', enter 'blog' for SITE_ROOT
define('PAGINATION', 10); // Pagination results per page
define('ShowPagination', 4); // The number of pages to show on either side of the current page
define('TEMPALTE', 'default'); // What template are we using by default?
/* Some misc stuff, not required for the blog itself */
define('DEBUG_MODE', false); // Turns on all debug errors