The latest stable version can be found on the website of AuthClassed or the project site of AuthClassed on Sourceforge. If you want more than that, it is always possible to get the latest (unstable) version from cvs.
Download
the latest version (.tar.gz format)
Download
the latest version (.zip format)
To get the latest version via cvs, you will need a ssh client and a cvs client. This project's SourceForge.net CVS repository can be checked out through anonymous (pserver) CVS with the following instruction set. The module you wish to check out must be specified as the modulename. When prompted for a password for anonymous, simply press the Enter key.
cvs -d:pserver:anonymous@cvs.authclassed.sourceforge.net:/cvsroot/authclassed login
cvs -z3 -d:pserver:anonymous@cvs.authclassed.sourceforge.net:/cvsroot/authclassed co authclassed
Developer CVS Access via SSH
Only project developers can access the CVS tree via this method. SSH1 must be installed on your client machine. Substitute modulename and developername with the proper values. Enter your site password when prompted.
export CVS_RSH=ssh
cvs -z3 -d:ext:developername@cvs.authclassed.sourceforge.net:/cvsroot/authclassed co authclassed
Return to Top
First the database must be created. In order to do this, you must ask you database administrator to process the file 'authclassed.sql' for you. If you are the database adminstrator, run the command
mysql -u root -p < authclassed.sql
If you want to rename the database or table, change the names in 'authclassed.sql' and change the database and table name in the class files.
Return to Top
AuthClassedEdit was designed to be as simple as possible. The only thing you have to do is include both class files in your script and invoke new objects, for AuthClassed and AuthClassedEdit. Examples can be found in the examples directory.
Exported functions:
constructor AuthClassedEdit(object $AuthClassedObj)
The constructor function sets up the application. The required parameter $AuthClassedObj is an instance of the class AuthClassed. Please pay attention that the user instantiating the AuthClassedEdit class should have permission 1 (or ADMIN).
AuthClassedEdit, © Rob Hanssen 2002. 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.
Return to Top