diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2013-05-10 06:13:24 -0400 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2013-05-10 06:13:24 -0400 |
commit | d4c07930d51244c8ae5014344c9502d010954448 (patch) | |
tree | d6e4815e0c895fdd00089a95a223456f6ba01756 /install/htconfig.sample.php | |
parent | e1c6b776c4c388b4671c0838c9d24feac42857c2 (diff) | |
download | volse-hubzilla-d4c07930d51244c8ae5014344c9502d010954448.tar.gz volse-hubzilla-d4c07930d51244c8ae5014344c9502d010954448.tar.bz2 volse-hubzilla-d4c07930d51244c8ae5014344c9502d010954448.zip |
add $db_port to .htconfig.php and $a->config['syste]['smarty3_folder'] for compiled templates
Diffstat (limited to 'install/htconfig.sample.php')
-rwxr-xr-x[-rw-r--r--] | install/htconfig.sample.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/install/htconfig.sample.php b/install/htconfig.sample.php index ebfc84543..77a0aa8a5 100644..100755 --- a/install/htconfig.sample.php +++ b/install/htconfig.sample.php @@ -13,10 +13,14 @@ // Then set the following for your MySQL installation $db_host = 'your.mysqlhost.com'; +$db_port = null; #leave null for default or set your port $db_user = 'mysqlusername'; $db_pass = 'mysqlpassword'; $db_data = 'mysqldatabasename'; +// smarty3 compile dir. make sure is writable by webserver +$a->config['system']['smarty3_folder'] = "view/tpl/smart3"; + // Choose a legal default timezone. If you are unsure, use "America/Los_Angeles". // It can be changed later and only applies to timestamps for anonymous viewers. |