General parameters
Configuration files
To configure White Pages, you need to create a local configuration file named config.inc.local.php
in white-pages/conf
. For example :
<?php // Override config.inc.php parameters below ?>
White Pages default configuration file is white-pages/conf/config.inc.php
. It includes config.inc.local.php
. Consequently, you can override all parameters in config.inc.local.php
. This prevents you to be disturbed by an upgrade.
Language
Lang
Available languages are:
Set one of them in $lang
:
$lang = "en";
white-pages/lang/LANG.inc.php
files, but you can define new messages or override some messages by creating a white-pages/conf/LANG.inc.php
file.
Date
If you use the date
value displayer, you can configure here date specifiers (see strftime reference):
$date_specifiers = "%Y-%m-%d %H:%M:%S (%Z)";
Graphics
Logo
You change the default logo with your own. Set the path to your logo in $logo
:
$logo = "images/ltb-logo.png";
Background
You change the background image with your own. Set the path to image in $background_image
:
$background_image = "images/unsplash-space.jpeg";
Hover effect
You can define which Hover effect is applied to search result and gallery boxes:
$hover_effect = "grow";
Custom CSS
To easily customize CSS, you can use a separate CSS file:
$custom_css = "css/custom.css";
Debug
You can turn on debug mode with $debug
:
$debug = true;
Smarty
You need to define where Smarty is installed:
define("SMARTY", "/usr/share/php/smarty3/Smarty.class.php");