source: trunk/plog-config-sample.php @ 601

Revision 601, 2.4 KB checked in by kimparsell, 13 months ago (diff)

+ Add debug info to plog-config file
+ Theme cleanup
+ Updated exifer1_7 with latest changes
+ Miscellaneous file cleanup

Line 
1<?php
2/* You can manually modify this file before installing (renaming this file to plog-config.php before
3 * installation) or you can let Plogger generate the file automatically by running the installation script
4 * (run plog-admin/_install.php in your browser).
5
6 * If you want to change the database connection information, you may also edit this file manually
7 * after Plogger has been installed. */
8
9/* MySQL hostname */
10define('PLOGGER_DB_HOST', '');
11
12/* MySQL database username */
13define('PLOGGER_DB_USER', '');
14
15/* MySQL database password */
16define('PLOGGER_DB_PW', '');
17
18/* The name of the database for Plogger */
19define('PLOGGER_DB_NAME', '');
20
21/* Define the Plogger database table prefix. You can have multiple installations in one database if you give
22 * each a unique prefix. Only numbers, letters, and underscores are permitted (i.e., plogger_). */
23define('PLOGGER_TABLE_PREFIX', 'plogger_');
24
25/* Define the Plogger directory permissions. Change permissions if you are having issues with images or
26 * sub-directories being saved, moved, or deleted from the Plogger-created directories (i.e. Collections
27 * or Albums) */
28define('PLOGGER_CHMOD_DIR', 0755);
29
30/* Define the Plogger file permissions. Change permissions if you are having issues with viewing,
31 * deleting, or moving images within Plogger (i.e. Pictures) */
32define('PLOGGER_CHMOD_FILE', 0644);
33
34/* Is Plogger embedded in another program, like WordPress?
35 * 1/0 (True/False) if set will overrule automatic check */
36define('PLOGGER_EMBEDDED', '');
37
38/* Define a directory path to save session variables if you are having trouble logging in or Plogger is
39 * telling you that you have session.save_path issues and/or if your server php.ini setup has a
40 * blank session.save_path php.ini variable */
41define('PLOGGER_SESSION_SAVE_PATH', '');
42
43/* Plogger localized language, defaults to English. Change this to localize Plogger.
44 * A corresponding MO file for the chosen language must be installed in /plog-content/translations/.
45 * For example, upload de.mo to /plog-content/translations/ and set PLOGGER_LOCALE to 'de' to
46 * enable German language support.
47 * Example language codes: da, de, et, fr, pl, ro, tr, en-CA (for Canadian English) */
48define('PLOGGER_LOCALE', '');
49
50/* Turn on debug mode if trying to troubleshoot issues.
51 * 1/0 (True/False) if set will display debug messages at bottom of gallery and admin pages
52 * Do not leave this running if gallery is functioning properly. */
53define('PLOGGER_DEBUG', '');
54
55?>
Note: See TracBrowser for help on using the repository browser.