Main > Free Download Search >

Free what is management software for linux

what is management

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1913
PHP time management 1.07b

PHP time management 1.07b


PHP time management is a Web-based time management application. more>>
PHP time management project is a Web-based time management application. You can enter scheduled items, copy items, and view them on a calendar.

A few minor items in the login page for the system were fixed.

<<less
Download (0.018MB)
Added: 2006-09-18 License: GPL (GNU General Public License) Price:
1143 downloads
phpIP Management 4.3.2

phpIP Management 4.3.2


phpIP Management is a complete IPv4 address management suite. more>>
phpIP Management is a complete IPv4 address management suite, built to handle the complexity of managing todays IP address space.
phpIP Management project was built to scale and address the full lifecycle of IP address space using techniques that are not administratively intensive.
Main features:
CIDR
- Full IPv4 CIDR support.
LDAP
- Support for LDAP based user accounts.
Licensed under GNU General Public License
- This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
IPv4
- Full IPv4 support using Pear Net_IPv4 class.
User Management
- User based management allows administrators to create users and assign different levels of permissions to the phpIP Management interface. Each user can set their own display preference.
<<less
Download (0.12MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1083 downloads
Essential Management

Essential Management


Essential Management provides a project management system for organizing and writing technical documents. more>>
Essential Management provides a project management system for organizing and writing technical documents.

Essential Management is a multi-user project management system for managing intricate and complex information. Its initial purpose was to allow software development teams to create, maintain, track, and store project requirements on a multi-project basis in a multi-user environment. It has now become more abstract in the type of data it can maintain, allowing the easy addition of new data models and other expansions. Information can be stored in any of several database management systems, and can take advantage of a networked DBMS.

The first and most important feature of the application is that data is stored in a central data repository managed by some database management server; initially PostgreSQL fills this role, but support for others are growing. The repository is fully searchable. An alternative data storage format exists in the form of a locally maintained XML file if the user wishes to use it.

One of the key features Essential Management was designed around is the ability to define and maintain relationships between requirements. Using the software requirement model as an example, our application allows users to define projects; each project is composed of zero or more root requirements, which are typically business level requirements. Each business requirement has zero or more sub-requirements, which either refine the parent business requirement or dive into the functional requirements which allow the business requirement to be achieved. This tree continues to branch and grow deeper until the most basic level that the user wishes to define is reached.

In addition the relationship between parent and child requirements, relationships can be defined between requirements not in the same branch. These relationships may have any meaning the user wishes to define and can be unidirectional or bi-directional.

Essential Management implements the concept of user level permissions, which provides a small measure of security for the projects and their requirements. Additionally, creation of and changes to requirements can be traced to the user who initiated the action.

Finally, the application provides a means to track changes made to requirements during their lifetime so it is possible to determine when a change was made, what information was changed and who edited the requirement.
<<less
Download (MB)
Added: 2007-02-09 License: BSD License Price:
993 downloads
PHP Running Management 1.0.2

PHP Running Management 1.0.2


PHP Running Management or phpRunMan is a set of scripts for runners. more>>
PHP Running Management or phpRunMan is a set of scripts for runners. Users can enter intermediate times of their training or race performance for calculating various statistics (distance, avg speed, time/km, projection on different distance, etc.). In PHP Running Management you can enter comments for the whole run or every intermediate segment so the data can be used as a logbook.

Every run (training or competition) is entered as a list of segments and times. You can specify the number of laps and the "offset" (manual correction) of the distance.

Several views are proposed:

- Year view: displays all the runs with their distance, time, average speed, etc.
- Detail view: shows the profile of a run by segment (time, speed, cumulated distance and other indicators).
- Month view: aggregates runs per month over the selected year, shows every months distance, time, average speed.

All the scripts are written in PHP (requires GD lib activated too) and the data is stored in MySQL database.

<<less
Download (0.49MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1215 downloads
Computation Job Management 0.6

Computation Job Management 0.6


Computation Job Management (jobman in short) is a program that calls executables according to a given program flow. more>>
Computation Job Management (jobman in short) is a program that calls executables according to a given program flow. Each executable is run in a separate process. It is useful when a project needs to carry out a series of calculations that are performed by software written in different languages or supplied by third parties, but invoking individual programs manually is error prone and hard to manage.
The various individual programs dont communicate with each other except via persistent storage. This is especially the case for some scientific computing, quantitative finance, and prototyped programming.
Enhancements:
- A job can output a status string indicating to skip other sibling jobs.
- Fixed a number of bugs.
- Mark the program in beta status as it has been used to manage jobs completed in days.
<<less
Download (0.14MB)
Added: 2007-04-24 License: LGPL (GNU Lesser General Public License) Price:
915 downloads
LDAP User Management System 0.4

LDAP User Management System 0.4


LDAP User Management System provides a set of basic LDAP API functions for PHP and a strong configuration language. more>>
LDAP User Management System (LUMS) provides a set of basic LDAP API functions for PHP and a strong configuration language. The project can then be used to create Web services or can be used in any PHP script.
The language allows the administrator to define LDAP object types along with their corresponding attributes.
Each attribute may be defined as required as multivalued with a type (string, binary, dn, telephone, mail, etc.) and can be user inserted, constant, auto incremented, or function created. Attribute uniqueness is supported.
It exports the following LDAP operations:
- function LUMS_ldap_search($L_binddn,$L_bindpassword,$L_basedn,$L_scope,$L_filter,$L_attrs_array)
Returns an $info object with the search results or a string with an error
- function LUMS_ldap_add_entry($L_binddn, $L_bindpassword,$L_object_type,$L_entrydn,$L_entry_info)
Returns 0 for success or string with error
- function LUMS_ldap_change_password($L_binddn, $L_bindpassword,$L_entrydn,$L_newpassword)
Returns 0 for success or string with error
- function LUMS_ldap_modify_entry($L_binddn, $L_bindpassword, $L_object_type, $L_entrydn, $L_change_info)
Returns 0 for success or string with error
- function LUMS_ldap_delete_entry($L_binddn, $L_bindpassword, $L_object_type, $L_entrydn)
Returns 0 for success or string with error
- function LUMS_ldap_rename_entry($L_binddn, $L_bindpassword, $L_object_type, $L_entrydn, $L_newrdn, $L_newparent, $L_deleteoldrdn)
Enhancements:
- Add a virtual attribute which is not stored on ldap but can be useful when creating other attribute values
- Add mapping between an indexing attribute value to other attribute values
- Fix a few typos
- Perform the same checks for all value types not just uservalue
- Lower case all passed attribute names
<<less
Download (0.12MB)
Added: 2007-04-28 License: Perl Artistic License Price:
913 downloads
PHP Sessions Management Class 1.0.3

PHP Sessions Management Class 1.0.3


PHP Sessions Management Class is a php class to handle sessions by using a mySQL database. more>>
PHP Sessions Management Class is a php class to handle sessions by using a mySQL database for session related data storage providing better security then the default session handler used by PHP.
If you are not familiar with what php sessions are and what are they good for, check out the dedicated chapter in the php manual
If you are familiar with php sessions and you want to use this php class in your projects then remember that to prevent session hijacking, you must not forget to use the regenerate_id() method whenever you do a privilege change in your application
Before usage, make sure you use the session_data.sql file (which is a sql dump file generated with phpMyAdmin) from the install_sql folder to set up the table used by the class
You dont need to modify anything in your previous applications: after instantiating the php class, just use sessions as you would normally.
Note:
The class assumes that there is an active connection to a mySQL database and it does not attempt to create one. This is due to the fact that, usually, there is a config file that holds the database connection related information and another class, or function that handles database connection. If this is not how you do it, you can easily adapt the code by putting the database connection related code in the "open" method of the class.
Enhancements:
- The get_users_online() method is now more accurate as it now runs the garbage collector before getting the number of online users.
- The structure of the MySQL table used by the class was tweaked in so that the "http_user_agent" field was changed from VARCHAR(255) to TEXT to accomodate user agent strings that are longer than 255 characters.
- The "session_data" field was also changed from TEXT to BLOB to help users who store a large amount of data in sessions.
<<less
Download (0.020MB)
Added: 2006-12-16 License: Free for non-commercial use Price:
1044 downloads
LAN Management System 1.9.1

LAN Management System 1.9.1


LMS is the integrated system of networks management designed for various size internet providers (ISP). more>>
LMS (LAN Management System) is the integrated system of networks management designed for various size internet providers (ISP).

That software writed in PHP, Perl and C, works with variuos database systems.

<<less
Download (1.93MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1230 downloads
Nelisys Management System 0.2.1

Nelisys Management System 0.2.1


Nelisys Management System can manage and monitor system and network including Router, Switch. more>>
Nelisys project is Open Source Web-based Management System, to manage and monitor system and network including Router, Switch, Wi-Fi Access Point, Server, Networking services, etc.

There are performance and fault management function.

<<less
Download (0.045MB)
Added: 2006-08-25 License: GPL (GNU General Public License) Price:
1158 downloads
Learning Management System 1.14

Learning Management System 1.14


Learning Management System allows users to manage online learning classes. more>>
Learning Management System allows users to manage online learning classes.
It allows them to set up classes, create assignments online, and send messages to students from within the system for tracking.
Learning Management System is a simple system to move academic classes onto the Web in order to reach a larger audience.
Enhancements:
- This release fixed two bugs in the library file system.
<<less
Download (0.10MB)
Added: 2006-01-26 License: Other/Proprietary License with Source Price:
1368 downloads
AntiCMS Content Management System 0.2.1

AntiCMS Content Management System 0.2.1


AntiCMS is a minimalist content management system for small and simple websites. more>>
AntiCMS is a minimalist content management system for small and simple websites. The main purpose of this system is to separate content, structure and layout.
Layout is defined using templates; content and structure are stored in XML file - database is not required. System is written in Python and released under the GPL.
Its still in early stage of development, so errors and unpredicted behaviour may occour. Currently a content editor is being developed, which will run on users computer and allow easy managent of content and structure of websites.
Enhancements:
- This release adds site configuration (it is now possible to change encodings, paths, and some other properties) and a new variable in the template engine.
<<less
Download (0.034MB)
Added: 2005-11-07 License: GPL (GNU General Public License) Price:
1446 downloads
Network Management Tool 1.44

Network Management Tool 1.44


Network Management Tool is a tool to manage and monitor the devices on your network. more>>
Manage your network with a free Network Monitoring Software application.
Network Management Tool is an organized way to manage your network. 100% web-based network management.
Manage your network devices with ease. 100% Free Network Managment Software! Manage all your network devices, routers, switches, firewalls, hubs, and more.
Enhancements:
- A display bug that occurred when viewing the comments on a device was fixed.
<<less
Download (0.061MB)
Added: 2006-09-07 License: GPL (GNU General Public License) Price:
1158 downloads
Internet Task Management System 0.11

Internet Task Management System 0.11


Internet Task Management System uses PHP to formalize the task delegation process in a business environment. more>>
Internet Task Management System uses PHP to formalize the task delegation process in a business environment.
Functionality includes the ability to create individual tasks and then combine them into a process of work items which can be easily delegated to any user of the system.
Assignment and reminder emails are recieved based upon user preferences.
Administrators of the system have the ability to manage all users and their task properties. ITMS supports MySQL, Oracle, LDAP, and SSL.
Enhancements:
- Fixed bug where using 12 am or 12 pm would change the task date to 11/30/1999 (Bug# 749490)
-
- Also if the current hour of the day is 12, the task assign forms reflects the proper time now.
-
- The above code fixes were in task_assign2.php and task_pending_edit.php
<<less
Download (0.3MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
1152 downloads
Sahana Disaster Management System LiveCD 1.2

Sahana Disaster Management System LiveCD 1.2


Sahana project is an integrated set of pluggable, web-based disaster management. more>>
Sahana project is an integrated set of pluggable, web-based disaster management applications that provide solutions to large-scale humanitarian problems in the aftermath of a disaster.
Main features:
- Missing Person Registry - Helping to reduce trauma by effectively finding missing persons
- Organization Registry - Coordinating and balancing the distribution of relief organizations in the affected areas and connecting relief groups allowing them to operate as one
- Request Management System - Registering and Tracking all incoming requests for support and relief upto fullfilment and helping donors connect to relief requirements
- Camp Registry - Tracking the location and numbers of victims in the various camps and temporary shelters setup all around the affected area.
<<less
Download (683.8MB)
Added: 2006-01-12 License: LGPL (GNU Lesser General Public License) Price:
1387 downloads
Resource Management Game 0.12

Resource Management Game 0.12


Resource Management Game project is a Web-based resource management game. more>>
Resource Management Game project is a Web-based resource management game.

Resource Management Game is a PHP framework for easily creating resource management and strategy games.

Two playable games are included.

The system uses sessions to store data and should work out of the box with little or no configuration.

<<less
Download (0.081MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1022 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5