Locked Area 6.0 (Lite branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Locked Area 6.0 (Lite branch)
# 1  
Old 01-31-2008
Locked Area 6.0 (Lite branch)

ImageLocked Area is a highly sophisticated password protection and membership management system. It has been designed to be as secure as possible while it still runs hands-free with no input from the Webmaster needed. Locked Area uses Apache's .htaccess and .htpasswd along with DES randomized salt or MD5 encryption of passwords for increased security. It also includes a member database that lets the administrator maintain a mailing list along with the member's area. License: FreewareChanges:
Locked Area Pro now offers support for up to 10custom form fields, and the PayPal subscriptionssystem now supports monthly and yearlysubscription durations without manual modificationto the template files. Locked Area Lite/Pro alsoincludes new field descriptions, enabling you toinclude a description for custom form fields. Allthe templates have been updated to utilize basicCSS/stylesheets, and the general layout is stillcontrolled with HTML to ensure 100% browsercompatibility. Various other minor bugfixes andfeature enhancements have also been added.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
XMLRPC::Lite(3) 					User Contributed Perl Documentation					   XMLRPC::Lite(3)

NAME
XMLRPC::Lite - client and server implementation of XML-RPC protocol SYNOPSIS
Client use XMLRPC::Lite; print XMLRPC::Lite -> proxy('http://betty.userland.com/RPC2') -> call('examples.getStateStruct', {state1 => 12, state2 => 28}) -> result; CGI server use XMLRPC::Transport::HTTP; my $server = XMLRPC::Transport::HTTP::CGI -> dispatch_to('methodName') -> handle ; Daemon server use XMLRPC::Transport::HTTP; my $daemon = XMLRPC::Transport::HTTP::Daemon -> new (LocalPort => 80) -> dispatch_to('methodName') ; print "Contact to XMLRPC server at ", $daemon->url, " "; $daemon->handle; DESCRIPTION
XMLRPC::Lite is a Perl modules which provides a simple nterface to the XML-RPC protocol both on client and server side. Based on SOAP::Lite module, it gives you access to all features and transports available in that module. See t/26-xmlrpc.t for client examples and examples/XMLRPC/* for server implementations. DEPENDENCIES
SOAP::Lite SEE ALSO
SOAP::Lite CREDITS
The XML-RPC standard is Copyright (c) 1998-2001, UserLand Software, Inc. See <http://www.xmlrpc.com> for more information about the XML- RPC specification. COPYRIGHT
Copyright (C) 2000-2001 Paul Kulchenko. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. AUTHOR
Paul Kulchenko (paulclinger@yahoo.com) perl v5.12.1 2010-03-17 XMLRPC::Lite(3)