mirror of
https://github.com/saintly2k/FoOlSlideX.git
synced 2025-02-20 11:13:13 +08:00
22 lines
533 B
PHP
22 lines
533 B
PHP
<?php
|
|
|
|
$config = [
|
|
"title" => "MangaReader", // Spaces allowed
|
|
"cookie" => "mangareader", // NO SPACES, ONE WORD!
|
|
"logo" => "assets/img/logo.png",
|
|
"slogan" => "Read Manga online for free with no ads",
|
|
"url" => "http://localhost/mangareaderx/",
|
|
"theme" => 1, // choose betweeen 1-5
|
|
"start" => "2020",
|
|
"lang" => "en",
|
|
"disqus" => "mangapanzer"
|
|
];
|
|
|
|
$slave = [
|
|
"host" => "localhost",
|
|
"user" => "root",
|
|
"pass" => "",
|
|
"table" => "mangareaderx"
|
|
];
|
|
|
|
?>
|