author | Giulio Cesare Solaroli <giulio.cesare@clipperz.com> | 2011-10-02 23:56:18 (UTC) |
---|---|---|
committer | Giulio Cesare Solaroli <giulio.cesare@clipperz.com> | 2011-10-02 23:56:18 (UTC) |
commit | ef68436ac04da078ffdcacd7e1f785473a303d45 (patch) (side-by-side diff) | |
tree | c403752d66a2c4775f00affd4fa8431b29c5b68c /backend/php/src/configuration.php | |
parent | 597ecfbc0249d83e1b856cbd558340c01237a360 (diff) | |
download | clipperz-ef68436ac04da078ffdcacd7e1f785473a303d45.zip clipperz-ef68436ac04da078ffdcacd7e1f785473a303d45.tar.gz clipperz-ef68436ac04da078ffdcacd7e1f785473a303d45.tar.bz2 |
First version of the newly restructured repository
Diffstat (limited to 'backend/php/src/configuration.php') (more/less context) (ignore whitespace changes)
-rw-r--r-- | backend/php/src/configuration.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/backend/php/src/configuration.php b/backend/php/src/configuration.php new file mode 100644 index 0000000..291e3a1 --- a/dev/null +++ b/backend/php/src/configuration.php @@ -0,0 +1,36 @@ +<?php +global $configuration; +$configuration['soap'] = "http://www.phpobjectgenerator.com/services/soap.php?wsdl"; +$configuration['homepage'] = "http://www.phpobjectgenerator.com"; +$configuration['revisionNumber'] = ""; +$configuration['versionNumber'] = "3.0d"; + +$configuration['setup_password'] = ''; + + +// to enable automatic data encoding, run setup, go to the manage plugins tab and install the base64 plugin. +// then set db_encoding = 1 below. +// when enabled, db_encoding transparently encodes and decodes data to and from the database without any +// programmatic effort on your part. +$configuration['db_encoding'] = 0; + +// edit the information below to match your database settings + +$configuration['db'] = 'clipperz'; // database name +$configuration['host'] = 'localhost'; // database host +$configuration['user'] = 'root'; // database user +$configuration['pass'] = 'pass'; // database password +$configuration['port'] = '3306'; // database port + + +//proxy settings - if you are behnd a proxy, change the settings below +$configuration['proxy_host'] = false; +$configuration['proxy_port'] = false; +$configuration['proxy_username'] = false; +$configuration['proxy_password'] = false; + + +//plugin settings +$configuration['plugins_path'] = dirname(__FILE__).'/plugins'; + +?>
\ No newline at end of file |