Previous page Next page

Installation for any other Unix-based operating system:

  1. Download the winzip file and run: unzip avayadir-1.0.zip
  2. Copy the entire tree that was created by running unzip under the documentRoot of the httpd server. For example, if your directory is /var/www/html, the directory created will be /var/www/html/avayadir.
  3. Use the command “chown apache:apache /var/www/html/avayadir/avayadirini” to change the user and group of the directory /var/www/html/avayadir/avayadirini to user:apache, group:apache.
  4. Run “chmod 755 /var/www/avayadir/avayadirini” to change the permission of the /var/www/html/avayadir/avayadirini to 755.
  5. To enable password control for the Directory Administration Application, create a directory entry in the httpd.conf file as follows:

    NOTE:

    The correct file name is httpd.conf, not http.conf.

<Directory “/var/www/html/avayadir/avayadiradmin”>
AuthType Basic
AuthName “Password Required”
AuthUserFile “/var/www/password/avayadirpasswd”
Require user ldap
</Directory>

  1. The default user/password combination is ldap/ldap. To change the password, run “htpasswd /var/www/passwd/avayadirpasswd ldap”.
  2. Open the file /etc/php.ini for editing.
  3. Set the option “short_open_tag = On” in php.ini.
  4. Uncomment the line “extension=ldap.so” in php.ini
  5. To finish, restart the web server by running “/sbin/service httpd restart”.
  6. Now test everything out by pointing a browser at the newly created directory structure such as <http://yourserver/avayadir/avayadiradmin/index.htm>.

Previous page Next page