diff options
author | rub <rub@piwigo.org> | 2008-01-27 08:35:49 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2008-01-27 08:35:49 +0000 |
commit | 49b663ecec19a8b12f4986c2c2e8f193e2802366 (patch) | |
tree | dc36a256350cc6d20ac88d3f1587e01cfdfdefda /tools/create_listing_file_local.inc.php | |
parent | a874845d40229ff789aacae8a0ca0101ea78144a (diff) |
Resolved issue 0000794: Avoid to change create_listing_file.php on each version
Resolved issue 0000795: In create_listing_file.php, it's not safe mode but set_time_limit is disabled
git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2198 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'tools/create_listing_file_local.inc.php')
-rw-r--r-- | tools/create_listing_file_local.inc.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/create_listing_file_local.inc.php b/tools/create_listing_file_local.inc.php new file mode 100644 index 000000000..8d914cf88 --- /dev/null +++ b/tools/create_listing_file_local.inc.php @@ -0,0 +1,14 @@ +<?php +// this file is provided as an example. +// Move it to "create_listing_file.php" +// directory if you want to modify default configuration. + +// URL of main gallery +// Example : http://www.my.domain/my/directory +$conf['gallery'] = 'http://demo.piwigo.net/'; + +$conf['file_ext'] = array_merge($conf['file_ext'], array('flv', 'FLV')); + +$conf['force_refresh_method'] = true; + +?>
\ No newline at end of file |