===ACT===
==New installation:==
$ mysql -p -u[user] -e "create database database_name" $ mysql -p -u[user] database_name < install/database.sql
LoadModule rewrite_module modules/mod_rewrite.so
Edit install/act_apache.conf, replacing 'act' with the actual installation directory in your web server's DocumentRoot Optionally, edit the listener configuration to enable a remote SMS gateway to direct messages to this server
Copy the configuration file install act_apache.conf to Apache's configuration dir (/etc/httpd/conf.d), with a name that identifies your instance (e.g. my_act.conf)
$ sudo cp install/act_apache.conf /etc/httpd/conf.d/my_act_install.conf
$ sudo service httpd reload
$ cp app/webroot/.htaccess-default app/webroot/.htaccess $ vi app/webroot/.htaccess
$ cp app/webroot/index.php-default app/webroot/index.php $ vi app/webroot/index.php
Find this line: define('CAKE_CORE_INCLUDE_PATH', DS . 'var' . DS . 'www' . DS . 'html' . DS . 'my_act_install_dir');
And replace the name of the default installation directory, if needed.
$ cp app/config/database.php-default app/config/database.php $ vi app/config/database.php
$ cp app/config/options.php-default app/config/options.php $ vi app/config/options.php
$ cp listener/http_post_listener.php-default listener/http_post_listener.php $ vi listener/http_post_listener.php
In http_post_listener.php:
modify $processor variable to point to the correct SMS message processor (parser). The default should work.
$ ./install/fix_permissions.sh
Change passwords (see below for default passwords)
In ProcessSMS.php change the URL for the API and the username/passward necessary to connect ot the API
==Update an existing installation: ==
TO BE COMPLETED
$ mysql -p -u[user] < install/dbupdate_v[current]_v[next].sql
To be completed...
==Default accounts and passwords==
admin: adminpass moderator: modpass user: userpass