2 users online. Create an account or sign in to join them.Users
Example of manifest/config.php wanted
This is an open discussion with 2 replies, filed under General.
Search
Here's the config.php file for a default install of Symphony 2.2.3:
<?php
$settings = array(
###### ADMIN ######
'admin' => array(
'max_upload_size' => '5242880',
),
########
###### SYMPHONY ######
'symphony' => array(
'pagination_maximum_rows' => '17',
'allow_page_subscription' => '1',
'lang' => 'en',
'version' => '2.2.3',
'pages_table_nest_children' => 'yes',
'strict_error_handling' => 'yes',
'cookie_prefix' => 'sym-',
'session_gc_divisor' => '10',
),
########
###### LOG ######
'log' => array(
'archive' => '1',
'maxsize' => '102400',
),
########
###### GENERAL ######
'general' => array(
'sitename' => 'Symphony CMS',
'useragent' => 'Symphony/2.2.3',
),
########
###### IMAGE ######
'image' => array(
'cache' => '1',
'quality' => '90',
),
########
###### DATABASE ######
'database' => array(
'character_set' => 'utf8',
'character_encoding' => 'utf8',
'runtime_character_set_alter' => '1',
'query_caching' => 'default',
'host' => 'localhost',
'port' => '3306',
'user' => 'symphony',
'password' => NULL,
'db' => 'symphony',
'sym_prefix' => 'sym_',
),
########
###### PUBLIC ######
'public' => array(
'display_event_xml_in_source' => 'yes',
),
########
###### REGION ######
'region' => array(
'time_format' => 'H:i',
'date_format' => 'd F Y',
'datetime_separator' => ' ',
'timezone' => 'America/Vancouver',
),
########
###### FILE ######
'file' => array(
'write_mode' => '0775',
),
########
###### DIRECTORY ######
'directory' => array(
'write_mode' => '0775',
),
########
);
Thanks very much!
Create an account or sign in to comment.
Hello,
I maintain a project that tracks versions of installed web software and notifies site owners when there is a security update available. It looks like Symphony keeps its current version number in manifest/config.php. Can someone post or send me a sanitized copy of that file (please remove any sensitive information from it!).
Thanks, -Konstantin https://github.com/mricon/CrudMiner