aboutsummaryrefslogtreecommitdiff
path: root/h-source/README.txt
diff options
context:
space:
mode:
Diffstat (limited to 'h-source/README.txt')
-rw-r--r--h-source/README.txt14
1 files changed, 13 insertions, 1 deletions
diff --git a/h-source/README.txt b/h-source/README.txt
index 6aa1419..1c8d821 100644
--- a/h-source/README.txt
+++ b/h-source/README.txt
@@ -59,7 +59,7 @@ where DOMAIN_NAME is the domain name you have previously set (perhaps localhost)
== Account issues ==
-If you want that the system can send e-mails you have to specify the name of the SMTP server that has to be used. Open the file Application/Include/params.php and set the following constants:
+If you want that the system can send e-mails you have to specify the name of the SMTP server that has to be used. Open the file Application/Include/params.php and set the following static attributes of the Website class:
$mailServer = ""; //set the mail server (only useful if $useSMTP = true)
@@ -67,6 +67,8 @@ If you want that the system can send e-mails you have to specify the name of the
$mailPassword = ""; //set the password of your mail account (only useful if $useSMTP = true)
+ $fromEmail = "noreply@h-node.org"; //this is the "from address e-mail" used inside the mails sent by h-source (example: confirmation requesta e-mail, change password e-mail, ...)
+
$useSMTP = true; //if you want to use a SMTP account. It can be true or false. Set $useSMTP to false if you want that the software rely on the mail() PHP function
You can also set these constants:
@@ -74,7 +76,17 @@ You can also set these constants:
$generalName = ""; //the string that you want to use inside the <title> tag of your website
$projectName = ""; //the name of your project
+
+
+== Change the configuration of some parts of the template (right column, top notices, top menu, ...) ==
+
+Modify the file config.xml inside the ROOT folder of your h-source installation.
+
+If you want to change the position of the config.xml file change the following static attribute of the Website class inside the
+Application/Include/params.php file:
+ static public $xmlConfigFileFolder = ROOT; //the constant ROOT contains the path to the root folder of your installaton of h-source
+
== Change the homepage ==