mirror of
https://github.com/ithrts/ImoutoIB.git
synced 2025-03-13 17:49:40 +01:00
27 lines
988 B
PHP
27 lines
988 B
PHP
<?php
|
|
|
|
//ONLY MAKE CONFIGURATIONS IN THIS FILE
|
|
|
|
|
|
|
|
$prefix_folder = '/ib'; // empty for root dir
|
|
$main_file = ''; //empty with handler using main.php as index
|
|
|
|
$site_name = 'ImoutoIB';
|
|
$domain = '3dpd.moe'; //MUST BE SET FOR COOKIES
|
|
$secure_hash = "SQp3FaEgyMyHe3=Zc!-vS%ya6W!JAt+9fqwdbGk&ev!hbG!nSMgN_KUbLrmRpCQy"; //Will be used to hash your post passwords. You should change this.
|
|
|
|
|
|
|
|
|
|
$config['footer'] = []; //Display name, URL
|
|
$config['footer'][] = array('Home', $prefix_folder . '/');
|
|
$config['footer'][] = array('News', $prefix_folder . '/?page=news');
|
|
$config['footer'][] = array('Rules', $prefix_folder . '/?page=rules');
|
|
$config['footer'][] = array('Help', $prefix_folder . '/?page=help');
|
|
$config['footer'][] = array('About', $prefix_folder . '/?page=about');
|
|
$config['footer'][] = array('Contact', $prefix_folder . '/?page=contact');
|
|
$config['footer'][] = array('Legal', $prefix_folder . '/?page=legal');
|
|
$config['footer'][] = array('Manage', $prefix_folder . '/mod.php');
|
|
|
|
?>
|