]> git.mxchange.org Git - ctracker.git/commit
Complete rewrite:
authorRoland Haeder <roland@mxchange.org>
Tue, 11 May 2010 07:58:56 +0000 (07:58 +0000)
committerRoland Haeder <roland@mxchange.org>
Tue, 11 May 2010 07:58:56 +0000 (07:58 +0000)
commitfeee76fac45134d75340668005fb2c252e24856d
tree8edd9681bf3b8f49a8c11f5e518b0c47649e5c74
parent0b466112fc60fce3e38ee3762f53aeaaaed49add
Complete rewrite:
- Very simple and basic template system (HTML and email) added
- Templates are language-dependent or indepented, this depends on if you call
  crackerTrackerLoadTemplate() or crackerTrackerLoadLocalizedTemplate()
- Email templates are always language-depenent... :-)
- Flexible database auto-update added (please just call your secured script
  normally!)
- Language sub-system added (German and English language is complete)
- Suport ticket added which gives your users, if his IP has recent malicious
  activities on the secured server, a support ticket form where they can request
  help. After the form is sent, the user can fully disable that warning. This is
  done by the script sends him a cookie with his ticket id.
- This support ticket system can be switched off and a little configured in
  the database table 'ctracker_config'. You can currently change the following
  values there:
  + Minimum random delay in seconds (default: 10 seconds)
  + Maximum random delay in seconds (default: 30 seconds)
  + Wether the support ticket system is on/off (default: on)
  + Which language you prefer to read (default: en)
- README updated
35 files changed:
.gitattributes
config/db_config.php.dist
ctracker.php
docs/README
libs/language/.htaccess [new file with mode: 0644]
libs/language/.php [new file with mode: 0644]
libs/language/de.php [new file with mode: 0644]
libs/language/en.php [new file with mode: 0644]
libs/lib_
libs/lib_connect.php
libs/lib_detector.php
libs/lib_general.php
libs/lib_updates.php [new file with mode: 0644]
libs/mails/.htaccess [new file with mode: 0644]
libs/mails/de/.htaccess [new file with mode: 0644]
libs/mails/de/header.tpl [new file with mode: 0644]
libs/mails/de/user_add_ticket.tpl [new file with mode: 0644]
libs/mails/de/webmaster_add_ticket.tpl [new file with mode: 0644]
libs/mails/en/.htaccess [new file with mode: 0644]
libs/mails/en/header.tpl [new file with mode: 0644]
libs/mails/en/user_add_ticket.tpl [new file with mode: 0644]
libs/mails/en/webmaster_add_ticket.tpl [new file with mode: 0644]
libs/templates/.htaccess [new file with mode: 0644]
libs/templates/add_ticket.tpl.php [new file with mode: 0644]
libs/templates/add_ticket_thanks.tpl.php [new file with mode: 0644]
libs/templates/de/.htaccess [new file with mode: 0644]
libs/templates/de/add_ticket_form.tpl.php [new file with mode: 0644]
libs/templates/de/add_ticket_success.tpl.php [new file with mode: 0644]
libs/templates/de/body_header.tpl.php [new file with mode: 0644]
libs/templates/en/.htaccess [new file with mode: 0644]
libs/templates/en/add_ticket_form.tpl.php [new file with mode: 0644]
libs/templates/en/add_ticket_success.tpl.php [new file with mode: 0644]
libs/templates/en/body_header.tpl.php [new file with mode: 0644]
libs/templates/page_footer.tpl.php [new file with mode: 0644]
libs/templates/page_header.tpl.php [new file with mode: 0644]