50 lines
		
	
	
		
			991 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			991 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| $fp_config = array(
 | |
| 	'general' => array(
 | |
| 		'www' => 'http://localhost',
 | |
| 		'title' => 'FlatPress',
 | |
| 		'subtitle' => 'My FlatPress blog',
 | |
| 		'footer' => '',
 | |
| 		'author' => 'FlatPress Team',
 | |
| 		'email' => 'webmaster@localhost.com',
 | |
| 		'startpage' => NULL,
 | |
| 		'maxentries' => '5',
 | |
| 		'notify' => true,
 | |
| 		'theme' => 'leggero',
 | |
| 		'style' => 'leggero-v2',
 | |
| 		'blogid' => 'fpdefid',
 | |
| 		'charset' => 'utf-8'
 | |
| 	),
 | |
| 	'locale' => array(
 | |
| 		'timeoffset' => '2',
 | |
| 		'timeformat' => '%H:%M:%S',
 | |
| 		'dateformat' => '%A, %B %e, %Y',
 | |
| 		'dateformatshort' => '%Y-%m-%d',
 | |
| 		'charset' => 'utf-8',
 | |
| 		'lang' => LANG_DEFAULT
 | |
| 	),
 | |
| 	'plugins' => array(
 | |
| 		'blockparser' => array(
 | |
| 			'pages' => array(
 | |
| 				'menu',
 | |
| 				'about'
 | |
| 			),
 | |
| 		),
 | |
| 		'bbcode' => array (
 | |
| 			'escape-html' => true,
 | |
| 			'comments' => false,
 | |
| 			'editor' => true,
 | |
| 			'url-maxlen' => 40,
 | |
| 		),
 | |
| 		'commentcenter' => array (
 | |
| 			'log_all' => false,
 | |
| 			'email_alert' => true,
 | |
| 			'akismet_check' => false,
 | |
| 			'akismet_key' => '',
 | |
| 			'akismet_url' => '',
 | |
| 		),
 | |
| 	),
 | |
| );
 | |
| 
 | |
| ?>
 | 
