2008-08-02 13:13:21 +00:00
|
|
|
<?php
|
|
|
|
/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# This file is part of InDefero, an open source project management application.
|
2008-08-02 13:18:19 +00:00
|
|
|
# Copyright (C) 2008 Céondo Ltd and contributors.
|
2008-08-02 13:13:21 +00:00
|
|
|
#
|
2008-08-02 13:18:19 +00:00
|
|
|
# InDefero is free software; you can redistribute it and/or modify
|
2008-08-02 13:13:21 +00:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
2008-08-02 13:18:19 +00:00
|
|
|
# InDefero is distributed in the hope that it will be useful,
|
2008-08-02 13:13:21 +00:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
$cfg = array();
|
|
|
|
|
2008-11-26 20:34:47 +00:00
|
|
|
#
|
2008-11-30 09:26:05 +00:00
|
|
|
# You must set them to false once everything is running ok.
|
2008-11-26 20:34:47 +00:00
|
|
|
#
|
|
|
|
$cfg['debug'] = true;
|
2010-04-26 22:02:47 +00:00
|
|
|
# It will help you catch errors at beginning when configuring your
|
2008-11-30 09:26:05 +00:00
|
|
|
# SCM backend. It must be turned off in production.
|
2010-04-26 22:02:47 +00:00
|
|
|
$cfg['debug_scm'] = false;
|
2008-11-26 20:34:47 +00:00
|
|
|
|
2009-01-20 09:36:41 +00:00
|
|
|
#
|
2010-04-26 22:02:47 +00:00
|
|
|
# Note: By default, InDefero will not manage the repositories for
|
|
|
|
# you, you can enable the repositories management with the
|
|
|
|
# built-in plugins. The documentation of the plugins is available
|
2009-01-20 09:36:41 +00:00
|
|
|
# in the `doc/` folder.
|
|
|
|
#
|
|
|
|
|
2008-11-26 20:34:47 +00:00
|
|
|
# If you have a single git repository, just put the full path to it
|
|
|
|
# without trailing slash. The path is the path to the git database,
|
|
|
|
# so you need to include the /.git folder.
|
|
|
|
# For example: '/path/to/my/project/.git'
|
|
|
|
#
|
|
|
|
# If you have multiple repositories, you need to put %s where you
|
2010-04-26 22:02:47 +00:00
|
|
|
# want the shortname of the project to be replaced.
|
2008-11-26 20:34:47 +00:00
|
|
|
# For example:
|
2010-04-26 22:02:47 +00:00
|
|
|
# - You have many projects on your local computer and want to use
|
2008-11-26 20:34:47 +00:00
|
|
|
# InDefero to see them. Put: '/home/yourlogin/Projects/%s/.git'
|
|
|
|
# - You have many projects on a remote server with only "bare" git
|
|
|
|
# repositories. Put: '/home/git/repositories/%s.git'
|
|
|
|
#
|
|
|
|
# ** Do not forget to give read access to these folders to your www
|
|
|
|
# ** user. For example, adding www to the git group.
|
2008-11-24 19:27:03 +00:00
|
|
|
$cfg['git_repositories'] = '/home/git/repositories/%s.git';
|
2008-11-26 20:34:47 +00:00
|
|
|
#
|
|
|
|
# Like for the git_repositories definition, the path can contains %s
|
|
|
|
# and it will be automatically replaced. You can ignore this
|
|
|
|
# configuration variable as it is only for information use in the
|
|
|
|
# tree view.
|
|
|
|
#
|
2009-01-12 21:37:36 +00:00
|
|
|
$cfg['git_remote_url'] = 'git://localhost/%s.git';
|
2009-01-26 16:58:58 +00:00
|
|
|
$cfg['git_write_remote_url'] = 'git@localhost:%s.git';
|
2008-09-02 13:51:57 +00:00
|
|
|
|
2008-11-26 20:34:47 +00:00
|
|
|
# Same as for git, you can have multiple repositories, one for each
|
2010-04-26 22:02:47 +00:00
|
|
|
# project or a single one for all the projects.
|
2008-11-26 20:34:47 +00:00
|
|
|
#
|
|
|
|
# In the case of subversion, the admin of a project can also select a
|
|
|
|
# remote repository from the web interface. From the web interface
|
|
|
|
# you can define a local repository, local repositories are defined
|
|
|
|
# here. This if for security reasons.
|
2008-11-24 19:27:03 +00:00
|
|
|
$cfg['svn_repositories'] = 'file:///home/svn/repositories/%s';
|
2009-01-12 21:37:36 +00:00
|
|
|
$cfg['svn_remote_url'] = 'http://localhost/svn/%s';
|
2008-08-02 13:13:21 +00:00
|
|
|
|
2010-05-01 22:56:04 +00:00
|
|
|
# Path to the monotone binary
|
2010-04-28 23:37:28 +00:00
|
|
|
$cfg['mtn_path'] = 'mtn';
|
2010-06-23 23:58:41 +00:00
|
|
|
# Additional options for the started monotone process
|
|
|
|
$cfg['mtn_opts'] = array('--no-workspace', '--norc');
|
|
|
|
#
|
2010-08-29 23:01:25 +00:00
|
|
|
# You can setup monotone for use with indefero in several ways. The
|
|
|
|
# two most-used should be:
|
2010-06-23 23:58:41 +00:00
|
|
|
#
|
|
|
|
# 1) One database for everything:
|
2010-08-29 23:01:25 +00:00
|
|
|
#
|
2010-06-23 23:58:41 +00:00
|
|
|
# Set 'mtn_repositories' below to a fixed database path, such as
|
|
|
|
# '/home/mtn/repositories/all_projects.mtn'
|
|
|
|
#
|
|
|
|
# Pro: - easy to setup and to manage
|
|
|
|
# Con: - while read access can be configured per-branch,
|
|
|
|
# granting write access rights to a user means that
|
|
|
|
# he can write anything in the global database
|
|
|
|
# - database lock problem: the database from which
|
|
|
|
# indefero reads its data cannot be used to serve the
|
|
|
|
# contents to the users, as the serve process locks
|
|
|
|
# the database
|
|
|
|
#
|
|
|
|
# 2) One database for every project with 'usher':
|
2010-08-29 23:01:25 +00:00
|
|
|
#
|
|
|
|
# Download and configure 'usher'
|
|
|
|
# (mtn clone mtn://monotone.ca?net.venge.monotone.contrib.usher)
|
|
|
|
# which acts as proxy in front of all single project databases.
|
|
|
|
# Create a basic configuration file for it and add a secret admin
|
|
|
|
# username and password. Finally, point the below variable
|
|
|
|
# 'mtn_usher_conf' to this configuration file.
|
|
|
|
#
|
|
|
|
# Then set 'mtn_remote_url' below to a string which matches your setup.
|
2010-06-23 23:58:41 +00:00
|
|
|
# Again, the '%s' placeholder will be expanded to the project's
|
|
|
|
# short name. Note that 'mtn_remote_url' is used as internal
|
|
|
|
# URI (to access the data for indefero) as well as external URI
|
2010-08-29 23:01:25 +00:00
|
|
|
# (for end users) at the same time. 'mtn_repositories' should then
|
|
|
|
# point to a directory where all project-related files (databases,
|
|
|
|
# keys, configurations) are kept, as these are automatically created
|
|
|
|
# on project creation by IDF.
|
2010-06-23 23:58:41 +00:00
|
|
|
#
|
2010-08-29 23:01:25 +00:00
|
|
|
# Example: 'mtn_repositories' is configured to be '/var/monotone/%s'
|
|
|
|
#
|
|
|
|
# - IDF tries to create /var/monotone/<projectname> as root directory
|
|
|
|
# - The database is placed in as /var/monotone/<projectname>/database.mtn
|
|
|
|
# - The server key is put into /var/monotone/<projectname>/keys and
|
|
|
|
# is named "<projectname>-server@<host>", where host is the host part
|
|
|
|
# of 'mtn_remote_url'
|
2010-06-23 23:58:41 +00:00
|
|
|
#
|
2010-08-29 23:01:25 +00:00
|
|
|
# therefor /var/monotone MUST be read/writable for the www user and all
|
|
|
|
# files which are created underknees MUST be read/writable by the user
|
|
|
|
# who is executing the usher instance! The best way to achieve this is with
|
|
|
|
# default (POSIX) ACLs on /var/monotone.
|
2010-06-23 23:58:41 +00:00
|
|
|
#
|
|
|
|
#
|
2010-08-29 23:01:25 +00:00
|
|
|
# You could also choose to setup usher by hand, i.e. with individual
|
|
|
|
# databases, in this case leave 'mtn_usher_conf' below commented out.
|
2010-06-23 23:58:41 +00:00
|
|
|
#
|
|
|
|
# Pro: - read and write access can be granted per project
|
|
|
|
# - no database locking issues
|
|
|
|
# - one public server running on the one well-known port
|
|
|
|
# Con: - harder to setup
|
|
|
|
#
|
|
|
|
# Usher can also be used to forward sync requests to remote servers,
|
|
|
|
# please consult its README file for more information.
|
|
|
|
#
|
|
|
|
# monotone also allows to use SSH as transport protocol, so if you do not plan
|
|
|
|
# to setup a netsync server as described above, then just enter a URI like
|
|
|
|
# 'ssh://my-host.biz/home/mtn/repositories/%s.mtn' in 'mtn_remote_url'.
|
|
|
|
#
|
2010-04-26 22:02:47 +00:00
|
|
|
$cfg['mtn_repositories'] = '/home/mtn/repositories/%s.mtn';
|
2010-06-23 23:58:41 +00:00
|
|
|
$cfg['mtn_remote_url'] = 'mtn://my-host.biz/%s';
|
|
|
|
#
|
|
|
|
# Whether the particular database(s) are accessed locally (via automate stdio)
|
|
|
|
# or remotely (via automate remote_stdio). 'remote' is the default for
|
|
|
|
# netsync setups, while 'local' access should be choosed for ssh access.
|
|
|
|
#
|
|
|
|
# Note that you need to setup the hook 'get_remote_automate_permitted' for
|
|
|
|
# each remotely accessible database. A full HOWTO set this up is beyond this
|
|
|
|
# scope, please refer to the documentation of monotone and / or ask on the
|
2010-08-07 21:28:13 +00:00
|
|
|
# mailing list (monotone-users@nongnu.org) or IRC channel
|
|
|
|
# (irc.oftc.net/#monotone)
|
2010-06-23 23:58:41 +00:00
|
|
|
#
|
|
|
|
$cfg['mtn_db_access'] = 'remote';
|
2010-08-07 21:28:13 +00:00
|
|
|
#
|
|
|
|
# If configured, this allows basic control of a running usher process
|
2010-08-29 23:01:25 +00:00
|
|
|
# via the forge administration. The variable must point to the full (writable)
|
|
|
|
# path of the usher configuration file which gets updated when new projects
|
|
|
|
# are added
|
2010-08-07 21:28:13 +00:00
|
|
|
#
|
2010-08-29 23:01:25 +00:00
|
|
|
#$cfg['mtn_usher_conf'] = '/path/to/usher.conf';
|
2010-04-26 22:02:47 +00:00
|
|
|
|
2008-11-26 20:34:47 +00:00
|
|
|
# Mercurial repositories path
|
|
|
|
#$cfg['mercurial_repositories'] = '/home/mercurial/repositories/%s';
|
|
|
|
#$cfg['mercurial_remote_url'] = 'http://projects.ceondo.com/hg/%s';
|
2008-08-02 13:13:21 +00:00
|
|
|
|
2008-11-26 20:34:47 +00:00
|
|
|
# admins will get an email in case of errors in the system in non
|
|
|
|
# debug mode.
|
2008-08-02 13:13:21 +00:00
|
|
|
$cfg['admins'] = array(
|
|
|
|
array('Admin', 'you@example.com'),
|
|
|
|
);
|
|
|
|
|
2008-11-26 20:34:47 +00:00
|
|
|
# Email configuration
|
2008-08-02 13:13:21 +00:00
|
|
|
$cfg['send_emails'] = true;
|
|
|
|
$cfg['mail_backend'] = 'smtp';
|
|
|
|
$cfg['mail_host'] = 'localhost';
|
|
|
|
$cfg['mail_port'] = 25;
|
|
|
|
|
2008-11-26 20:34:47 +00:00
|
|
|
# Paths/Url configuration.
|
2010-04-26 22:02:47 +00:00
|
|
|
#
|
2008-11-26 20:34:47 +00:00
|
|
|
# Examples:
|
2010-04-26 22:02:47 +00:00
|
|
|
# You have:
|
2008-11-26 20:34:47 +00:00
|
|
|
# http://www.mydomain.com/myfolder/index.php
|
|
|
|
# Put:
|
|
|
|
# $cfg['idf_base'] = '/myfolder/index.php';
|
|
|
|
# $cfg['url_base'] = 'http://www.mydomain.com';
|
2008-09-04 13:30:39 +00:00
|
|
|
#
|
2010-04-26 22:02:47 +00:00
|
|
|
# You have mod_rewrite:
|
2008-11-26 20:34:47 +00:00
|
|
|
# http://www.mydomain.com/
|
|
|
|
# Put:
|
|
|
|
# $cfg['idf_base'] = '';
|
|
|
|
# $cfg['url_base'] = 'http://www.mydomain.com';
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
2009-01-12 21:37:36 +00:00
|
|
|
$cfg['idf_base'] = '/index.php';
|
|
|
|
$cfg['url_base'] = 'http://localhost';
|
2008-11-26 20:34:47 +00:00
|
|
|
|
2010-04-26 22:02:47 +00:00
|
|
|
# Url to access the media folder which is in the www folder
|
2008-11-26 20:34:47 +00:00
|
|
|
# of the archive
|
2009-01-12 21:37:36 +00:00
|
|
|
$cfg['url_media'] = 'http://localhost/media';
|
2008-11-26 20:34:47 +00:00
|
|
|
|
|
|
|
# Url to access a folder in which the files you upload through
|
|
|
|
# the downloads tab will be stored.
|
2009-01-12 21:37:36 +00:00
|
|
|
$cfg['url_upload'] = 'http://localhost/media/upload';
|
2008-11-26 20:34:47 +00:00
|
|
|
# Path to the upload folder
|
2009-01-12 21:37:36 +00:00
|
|
|
$cfg['upload_path'] = '/home/www/indefero/www/media/upload';
|
2008-08-02 13:13:21 +00:00
|
|
|
|
2008-11-12 19:40:58 +00:00
|
|
|
#
|
2010-04-26 22:02:47 +00:00
|
|
|
# The following path *MUST NOT* be accessible through a web browser
|
|
|
|
# as user will be able to upload .html, .php files and this can
|
|
|
|
# create *TERRIBLE* security issues. In this folder, the attachments
|
2008-11-26 20:34:47 +00:00
|
|
|
# to the issues will be uploaded and we do not restrict the content type.
|
2008-11-12 19:40:58 +00:00
|
|
|
#
|
2009-01-12 21:37:36 +00:00
|
|
|
$cfg['upload_issue_path'] = '/home/www/indefero/attachments';
|
2008-11-12 19:40:58 +00:00
|
|
|
|
2008-11-26 20:34:47 +00:00
|
|
|
#
|
|
|
|
# write here a long random string unique for this installation. This
|
|
|
|
# is critical to put a long string, with at least 40 characters.
|
2010-04-26 22:02:47 +00:00
|
|
|
$cfg['secret_key'] = '';
|
2008-08-04 19:24:07 +00:00
|
|
|
|
2008-11-26 20:34:47 +00:00
|
|
|
# the sender of all the emails.
|
2010-04-26 22:02:47 +00:00
|
|
|
$cfg['from_email'] = 'sender@example.com';
|
2008-08-02 13:13:21 +00:00
|
|
|
|
2008-11-26 20:34:47 +00:00
|
|
|
# Email address for the bounced messages.
|
2008-08-02 13:13:21 +00:00
|
|
|
$cfg['bounce_email'] = 'no-reply@example.com';
|
|
|
|
|
2008-11-26 20:34:47 +00:00
|
|
|
# Temporary folder where the script is writing the compiled templates,
|
|
|
|
# cached data and other temporary resources.
|
|
|
|
# It must be writeable by your webserver instance.
|
|
|
|
# It is mandatory if you are using the template system.
|
2008-08-02 13:13:21 +00:00
|
|
|
$cfg['tmp_folder'] = '/tmp';
|
2008-08-04 19:24:07 +00:00
|
|
|
|
2008-11-26 20:34:47 +00:00
|
|
|
# Database configuration
|
2008-11-14 14:41:51 +00:00
|
|
|
$cfg['db_login'] = 'www';
|
|
|
|
$cfg['db_password'] = '';
|
|
|
|
$cfg['db_server'] = '';
|
2009-01-12 21:37:36 +00:00
|
|
|
$cfg['db_version'] = '5.1'; # Only needed for MySQL
|
2008-11-26 20:34:47 +00:00
|
|
|
# If you want to have different installations with the same DB
|
2010-04-26 22:02:47 +00:00
|
|
|
$cfg['db_table_prefix'] = 'indefero_';
|
|
|
|
# ** DO NOT USE SQLITE IN PRODUCTION **
|
2008-11-26 20:34:47 +00:00
|
|
|
# This is not because of problems with the quality of the SQLite
|
|
|
|
# driver or with SQLite itself, this is due to the lack of migration
|
|
|
|
# support in Pluf for SQLite, this means we cannot modify the DB
|
|
|
|
# easily once it is loaded with data.
|
|
|
|
$cfg['db_engine'] = 'PostgreSQL'; # SQLite is also well tested or MySQL
|
|
|
|
$cfg['db_database'] = 'website'; # put absolute path to the db if you
|
2010-04-26 22:02:47 +00:00
|
|
|
# are using SQLite.
|
2009-02-16 17:04:03 +00:00
|
|
|
#
|
|
|
|
# The extension of the downloads are limited. You can add extra
|
2009-04-07 08:41:13 +00:00
|
|
|
# extensions here. The list must start with a space.
|
|
|
|
# $cfg['idf_extra_upload_ext'] = ' ext1 ext2';
|
2009-02-16 17:04:03 +00:00
|
|
|
#
|
|
|
|
# By default, the size of the downloads is limited to 2MB.
|
2010-04-26 22:02:47 +00:00
|
|
|
# The php.ini upload_max_filesize configuration setting will
|
2009-08-03 19:10:06 +00:00
|
|
|
# always have precedence.
|
2009-02-16 17:04:03 +00:00
|
|
|
# $cfg['max_upload_size'] = 2097152; // Size in bytes
|
2008-11-26 20:34:47 +00:00
|
|
|
|
2009-07-11 08:55:47 +00:00
|
|
|
#
|
|
|
|
# Time zone
|
|
|
|
# http://www.php.net/manual/en/timezones.php
|
|
|
|
#
|
|
|
|
# $cfg['time_zone'] = 'Europe/Berlin';
|
|
|
|
|
|
|
|
|
2008-11-14 14:41:51 +00:00
|
|
|
$cfg['pear_path'] = '/usr/share/php';
|
|
|
|
|
|
|
|
$cfg['login_success_url'] = $cfg['url_base'].$cfg['idf_base'];
|
|
|
|
$cfg['after_logout_page'] = $cfg['url_base'].$cfg['idf_base'];
|
|
|
|
|
2008-11-26 20:34:47 +00:00
|
|
|
# Caching of the scm commands.
|
2008-11-10 14:32:59 +00:00
|
|
|
$cfg['cache_engine'] = 'Pluf_Cache_File';
|
|
|
|
$cfg['cache_timeout'] = 300;
|
|
|
|
$cfg['cache_file_folder'] = $cfg['tmp_folder'].'/cache';
|
|
|
|
|
2008-11-26 20:34:47 +00:00
|
|
|
# The folder in which the templates of the application are located.
|
2008-08-02 13:13:21 +00:00
|
|
|
$cfg['template_folders'] = array(
|
|
|
|
dirname(__FILE__).'/../templates',
|
|
|
|
);
|
|
|
|
|
2008-08-04 19:24:07 +00:00
|
|
|
$cfg['installed_apps'] = array('Pluf', 'IDF');
|
|
|
|
$cfg['pluf_use_rowpermission'] = true;
|
|
|
|
$cfg['middleware_classes'] = array(
|
2008-12-07 11:58:44 +00:00
|
|
|
'Pluf_Middleware_Csrf',
|
2008-08-04 19:24:07 +00:00
|
|
|
'Pluf_Middleware_Session',
|
2008-08-07 13:35:03 +00:00
|
|
|
'IDF_Middleware',
|
2008-08-04 19:24:07 +00:00
|
|
|
'Pluf_Middleware_Translation',
|
|
|
|
);
|
|
|
|
$cfg['template_context_processors'] = array('IDF_Middleware_ContextPreProcessor');
|
2008-11-18 08:21:49 +00:00
|
|
|
$cfg['idf_views'] = dirname(__FILE__).'/urls.php';
|
2008-11-14 14:41:51 +00:00
|
|
|
|
2008-11-26 20:34:47 +00:00
|
|
|
# available languages
|
2010-04-26 22:02:47 +00:00
|
|
|
$cfg['languages'] = array('en', 'fr');
|
2008-11-14 14:41:51 +00:00
|
|
|
|
|
|
|
# SCM base configuration
|
|
|
|
$cfg['allowed_scm'] = array('git' => 'IDF_Scm_Git',
|
|
|
|
'svn' => 'IDF_Scm_Svn',
|
2008-11-24 19:27:03 +00:00
|
|
|
'mercurial' => 'IDF_Scm_Mercurial',
|
2010-04-26 22:02:47 +00:00
|
|
|
'mtn' => 'IDF_Scm_Monotone',
|
2008-11-14 14:41:51 +00:00
|
|
|
);
|
|
|
|
|
2008-12-17 14:08:51 +00:00
|
|
|
# If you want to use another memtypes database
|
|
|
|
# $cfg['idf_mimetypes_db'] = '/etc/mime.types';
|
|
|
|
|
|
|
|
# Extra text files when displaying source
|
|
|
|
# $cfg['idf_extra_text_ext'] = 'ext1 ext2 ext3';
|
2009-01-29 19:29:45 +00:00
|
|
|
|
|
|
|
# If you can execute the shell commands executed to get info
|
2010-04-26 22:02:47 +00:00
|
|
|
# from the scm with the user of your PHP process but it is
|
|
|
|
# not working from within PHP, this can be due to the environment
|
2009-01-29 19:29:45 +00:00
|
|
|
# variables not being set correctly. Note the trailing space.
|
|
|
|
# $cfg['idf_exec_cmd_prefix'] = '/usr/bin/env -i ';
|
|
|
|
|
2009-02-25 13:28:14 +00:00
|
|
|
# Path to the SCM binaries. These binaries are not necessarily in
|
|
|
|
# the path of your webserver or fastcgi process. In that case you
|
|
|
|
# may need to set the path manually here. This is the case with OSX.
|
|
|
|
# To know which path you need to provide, just run:
|
|
|
|
# $ which git
|
|
|
|
# from the command line. This will give you the path to git.
|
2010-04-26 22:02:47 +00:00
|
|
|
# $cfg['svn_path'] = 'svn';
|
|
|
|
# $cfg['svnlook_path'] = 'svnlook';
|
2009-02-25 13:28:14 +00:00
|
|
|
# $cfg['svnadmin_path'] = 'svnadmin';
|
|
|
|
# $cfg['hg_path'] = 'hg';
|
2010-04-26 22:02:47 +00:00
|
|
|
# $cfg['git_path'] = 'git';
|
2009-02-25 13:28:14 +00:00
|
|
|
|
2010-05-19 08:55:50 +00:00
|
|
|
# If you do not want to have calculations of the repositories, attachments
|
|
|
|
# and downloads size, set it to true. You can set to false some
|
|
|
|
# times to times to check the size.
|
|
|
|
# $cfg['idf_no_size_check'] = false;
|
|
|
|
|
2008-08-02 13:13:21 +00:00
|
|
|
return $cfg;
|