ComicsViewer/variables-dist.php
2023-08-18 12:50:45 -04:00

47 lines
1.1 KiB
PHP

<?php
//
// This is the session name. Set it to whatever you want.
//
define('SESSIONCOMICS', 'JackpotGeneric');
//
// The folder under which your comics are stored (no trailing slash)
//
define('COMICSDIR', '/storage/Comics');
//
// The folder where the thumbnails for folders and comics get generated.
// This folder is expected to be in the same folder as the project.
// This folder must be writable by the web server.
//
define('THUMBSDIR', 'thumbs');
//
// The folder where the comics get extracted for vieweing.
// This folder is expected to be in the same folder as the project.
// This folder must be writable by the web server.
//
define('EXTRACTSDIR', 'comics');
//
// Database information for tracking last read page
//
define('DBHOST', 'localhost');
define('DBUSER', 'comics');
define('DBPASS', 'comics');
define('DBNAME', 'comics');
//
// These are some variables used for development and debugging.
// They can be safely ignored.
//
define('DEBUG_ALL', false);
define('DEBUG_SHOWCOMICAJAX', false);
//
// Constants
//
define('SORTBYNAME', 10000001);
define('SORTBYDATE', 10000002);