Dear Team thanks for the reply. I am afraid to install 3.0 version bcoz we use PHP4 . I am pasting the inc.setting.php file below.
<?php^M
// MyDMS. Document Management System^M
// Copyright © 2002-2005 Markus Westphal^M
// Copyright © 2006-2008 Malcolm Cowe^M
// Copyright © 2010 Matteo Lucarelli^M
//^M
// This program is free software; you can redistribute it and/or modify^M
// it under the terms of the GNU General Public License as published by^M
// the Free Software Foundation; either version 2 of the License, or^M
// (at your option) any later version.^M
//^M
// This program is distributed in the hope that it will be useful,^M
// but WITHOUT ANY WARRANTY; without even the implied warranty of^M
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the^M
// GNU General Public License for more details.^M
//^M
// You should have received a copy of the GNU General Public License^M
// along with this program; if not, write to the Free Software^M
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.^M
^M
class Settings^M
{^M
// Name of site -- used in the page titles. Default: MyDMS^M
var $_siteName = "ARIES DMS";^M
^M
// Message to display at the bottom of every page.^M
var $_footNote = "ARIES Document Management System ";^M
// if true the disclaimer message the lang.inc files will be print on the bottom of the page^M
var $_printDisclaimer = true;
// Default page on login. Defaults to out/out.ViewFolder.php^M
var $_siteDefaultPage = "";^M
^M
// IDs of admin-user, guest-user and root-folder (no need to change)^M
var $_adminID = 1;^M
var $_guestID = 2;^M
var $_rootFolderID = 1;^M
^M
// If you want anybody to login as guest, set the following line to true
// note: guest login should be used only in a trusted environment^M
var $_enableGuestLogin = false;^M
^M
// Restricted access: only allow users to log in if they have an entry in^M
// the local database (irrespective of successful authentication with LDAP).^M
var $_restricted = true;^M
^M
// Strict form checking. If set to true, then all fields in the form will^M
// be checked for a value. If set to false, then (most) comments and^M
// keyword fields become optional. Comments are always required when^M
// submitting a review or overriding document status.^M
var $_strictFormCheck = false;^M
^M
// path to where mydms is located^M
var $_rootDir = "/var/www/html/ARIESDMS/";^M
^M
// The relative path in the URL, after the domain part. Do not include the^M
// http:// prefix or the web host name. e.g. If the full URL is^M
//
http://www.example.com/mydms/, set $_httpRoot = "/mydms/".^M
// If the URL is
http://www.example.com/, set $_httpRoot = "/".^M
var $_httpRoot = "/ARIESDMS/";^M
^M
// Where the uploaded files are stored (best to choose a directory that^M
// is not accessible through your web-server)^M
var $_contentDir = "/opt/ARIESData/";^M
^M
// To work around limitations in the underlying file system, a new
// directory structure has been devised that exists within the content
// directory ($_contentDir). This requires a base directory from which
// to begin. Usually leave this to the default setting, 1048576, but can
// be any number or string that does not already exist within $_contentDir.
var $_contentOffsetDir = "1048576";
^M
// Maximum number of sub-directories per parent directory. Default: 32700.^M
var $_maxDirID = 32700;^M
^M
// default language (name of a subfolder in folder "languages")^M
var $_language = "English";^M
^M
// users are notified about document-changes that took place within the last $_updateNotifyTime seconds^M
var $_updateNotifyTime = 86400; //means 24 hours^M
^M
// files with one of the following endings can be viewed online (USE ONLY LOWER CASE CHARACTERS)^M
//var $_viewOnlineFileTypes = array();^M
var $_viewOnlineFileTypes = array(".txt", ".text", ".html", ".htm", ".pdf", ".gif", ".png", ".jpg", ".jpeg");^M
^M
// enable/disable converting of files^M
var $_enableConverting = false;^M
^M
// default style (name of a subfolder in folder "styles")^M
var $_theme = "clean";
^M
// Workaround for page titles that go over more than 2 lines.^M
var $_titleDisplayHack = true;
// enable/disable automatic email notification
var $_enableEmail = true;
// enable/disable group and user view for all users
var $_enableUsersView = true;
^M
// false to don't list administrator as reviewer/approver
var $_enableAdminRevApp = false;
// the name of the versioning info file created by the backup tool
var $_versioningFileName = "versioning_info.txt";
// set false to disable log system
var $_logFileEnable = true;
// the log file rotation (h=hourly, d=daily, m=monthly)
var $_logFileRotation = "m";
// enable users images
var $_enableUserImage = false;
// enable calendar
var $_enableCalendar = true;
// calendar default view ("w" for week,"m" for month,"y" for year)
var $_calendarDefaultView = "y";
// first day of the week (0=sunday, 6=saturday)
var $_firstDayOfWeek = 0;
// false to don't show the folder tree side panel
var $_enableFolderTree = true;
// 0 to start with tree hidden
// 1 to start with tree shown and first level expanded
// 2 to start with tree shown fully expanded
var $_expandFolderTree = 1;
// if true user cannot edit his own profile
var $_disableSelfEdit = false;
// if enabled admin can login only by specified IP addres
// leave ampty to avoid the control
// NOTE: works only with local autentication (no LDAP)
var $_adminIP = "";
^M
// -------------------------------- Database-Setup --------------------------------------------^M
^M
//Path to adodb^M
var $_ADOdbPath = "/var/www/html/ARIESDMS/adodb/";^M
^M
//DB-Driver used by adodb (see adodb-readme)^M
var $_dbDriver = "mysql";^M
^M
//DB-Server^M
var $_dbHostname = "localhost";^M
^M
//database where the tables for mydms are stored (optional - see adodb-readme)^M
var $_dbDatabase = "letodms";^M
^M
//username for database-access^M
var $_dbUser = "letodms";^M
^M
//password for database-access^M
var $_dbPass = "xxxxxx";^M
^M
// -------------------------------- LDAP Authentication Setup --------------------------------------------^M
/* new code by Doudoux - TO BE TESTED */
// var $_ldapHost = ""; // URIs are supported, e.g.: ldaps://ldap.host.com
// var $_ldapPort = 389; // Optional.
// var $_ldapBaseDN = "";
// var $_ldapAccountDomainName = "";
// var $_ldapType = 1; // 0 = Generic LDAP ; 1 = Microsoft LDAP
/* old code */^M
// var $_ldapHost = ""; // URIs are supported, e.g.: ldaps://ldap.host.com^M
// var $_ldapPort = 389; // Optional.^M
// var $_ldapBaseDN = "";^M
^M
function Settings()^M
{^M
//files with one of the following endings will be converted with the given commands^M
//for windows users^M
$this->_convertFileTypes = array(".doc" => "cscript \"" . $this->_rootDir."op/convert_word.js\" {SOURCE} {TARGET}",^M
".xls" => "cscript \"".$this->_rootDir."op/convert_excel.js\" {SOURCE} {TARGET}",^M
".ppt" => "cscript \"".$this->_rootDir."op/convert_pp.js\" {SOURCE} {TARGET}");^M
// For linux users^M
// $this->_convertFileTypes = array(".doc" => "mswordview -o {TARGET} {SOURCE}");^M
}^M
}^M
^M
$settings = new Settings();^M
^M
?>^M
Please send me the solution