Versions Compared

Key

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

Table of Contents
maxLevel2
minLevel2

What are the default credentials to log into the web interface?

...

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 -> Users -> Add a User.

...

You should now be able to navigate to http://<SERVER>:81/ in your browser and get a response.

I cannot start the Apache service on Windows.

Have you checked that another program is not already using port 80? If you start a command prompt and type:

...