Aigaion Bibliography System 2.0.0 beta (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Aigaion Bibliography System 2.0.0 beta (Default branch)
# 1  
Old 12-24-2007
Aigaion Bibliography System 2.0.0 beta (Default branch)

ImageAigaion is a Web-based shared bibliography managerbuilt on PHP/MySQL. It is based on the BibTeXformat, but has support for other formats as well.Some of its key features are extensive support fororganizing a bibliography in a topic structure,personal and public annotations on eachpublication, multi-user support, easyimport/export, and an intuitive user interface.License: GNU General Public License (GPL)Changes:
The entire code was rewritten and now relies on an MVC framework (Code Igniter). The most important changes: Access levels (public, intern, private) are customizable for publications, topics, notes, and attachments. The import and export code was improved. User group management was added. Support for guest users was improved. Modules were added for integrating login management with other systems such as wiki or CMS systems. Persistent bookmark lists were added. Topic assignment for publications were improved. Update management was improved. Flexible sort options were added for publication list display.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
MYSQLI_SSL_SET(3)							 1							 MYSQLI_SSL_SET(3)

mysqli::ssl_set - Used for establishing secure connections using SSL

       Object oriented style

SYNOPSIS
bool mysqli::ssl_set (string $key, string $cert, string $ca, string $capath, string $cipher) DESCRIPTION
Procedural style bool mysqli_ssl_set (mysqli $link, string $key, string $cert, string $ca, string $capath, string $cipher) Used for establishing secure connections using SSL. It must be called before mysqli_real_connect(3). This function does nothing unless OpenSSL support is enabled. Note that MySQL Native Driver does not support SSL before PHP 5.3.3, so calling this function when using MySQL Native Driver will result in an error. MySQL Native Driver is enabled by default on Microsoft Windows from PHP version 5.3 onwards. PARAMETERS
o $ link -Procedural style only: A link identifier returned by mysqli_connect(3) or mysqli_init(3) o $key - The path name to the key file. o $cert - The path name to the certificate file. o $ca - The path name to the certificate authority file. o $capath - The pathname to a directory that contains trusted SSL CA certificates in PEM format. o $cipher - A list of allowable ciphers to use for SSL encryption. Any unused SSL parameters may be given as NULL RETURN VALUES
This function always returns TRUE value. If SSL setup is incorrect mysqli_real_connect(3) will return an error when you attempt to con- nect. SEE ALSO
mysqli_options(3), mysqli_real_connect(3). PHP Documentation Group MYSQLI_SSL_SET(3)