Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you have Anti-Virus software running, allowing the services of Opmantek (omkd), Apache (apache2.2) and MySQL (mysql) to auto start and run is essential. These services are used by Open-AudIT. You should only need to do this once. If your Anti-Virus program keeps prompting you about Open-AudIT, please post to the forums or send an email to support with the name and version of your Anti-Virus software.

Open-AudIT won't accept my password on the Config page

The CodeIgniter PHP framework (by default) will only allow certain characters to be sent via a GET HTTP request. Unfortunately, password values tend to contain abnormal characters. The list of characters it will accept is defined in the /open-audit/code_igniter/application/config/config.php file in the $config['permitted_uri_chars'] variable. You can check this string and add the characters you need to it, or even remove the contents of the string altogether and accept any character via the URL. The CodeIgniter developers do not recommend doing this. It is far better to add the characters you need to the string. The current default value for this variable as per Open-AudIT version 1.2 is -

Code Block
languagephp
$config['permitted_uri_chars'] = 'a-z 0-9~%.:|(),_\-!=&[]@*';

How can I add another user to Open-AudIT?

In the Open-AudIT web interface, as an admin user, select the menu item menu -> Manage -> Users -> Add a UserCreate Users.

Complete at least the username and password fields assign at least one Role and provide access to at least one Organization.

...