diff options
Diffstat (limited to 'blog/conf/general-example')
-rw-r--r-- | blog/conf/general-example | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/blog/conf/general-example b/blog/conf/general-example new file mode 100644 index 000000000..dca1e9dcc --- /dev/null +++ b/blog/conf/general-example @@ -0,0 +1,27 @@ +<?php +/* + * general-example: + * Example values for the "general" config file. + * + * Configuration parameters, in PHP syntax. Configuration parameters are set + * using the PHP define('OPTION_...', '...') function. Both perl and PHP code + * parse this properly, so you can use comments and conditionals and whatnot, + * but unless essential it's better to keep it simple.... + * + * Copy this file to one called "general" in the same directory. Or + * have multiple config files and use a symlink to change between them. + * + * Copyright (c) 2005 UK Citizens Online Democracy. All rights reserved. + * Email: francis@mysociety.org; WWW: http://www.mysociety.org + * + * $Id: general-example,v 1.2 2010-01-28 00:47:37 francis Exp $ + * + */ + +// MySQL database for FMSBLOG mySociety WordPress +define('OPTION_FMSBLOG_DB_NAME', ''); +define('OPTION_FMSBLOG_DB_USER', ''); +define('OPTION_FMSBLOG_DB_PASS', ''); +define('OPTION_FMSBLOG_DB_HOST', ''); +define('OPTION_STAGING', '0'); + |