session3 initialization failed
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 683
OpenInteract2::Config::Initializer 1.99_06
OpenInteract2::Config::Initializer is a Perl module for observable configuration initialization events. more>>
OpenInteract2::Config::Initializer is a Perl module for observable configuration initialization events.
SYNOPSIS
# Add an initializer in your package.conf
name mypackage
version 1.10
...
config_watcher OpenInteract2::MyInitializerSpops
config_watcher OpenInteract2::MyInitializerAction
# And the code in our package -- well dynamically add a rule from
# My::Googlable to a class where is_googlable is set to yes
package OpenInteract2::MyInitializerSpops;
use strict;
sub update {
my ( $class, $type, $config ) = @_;
return unless ( $type eq spops );
if ( $config->{is_googlable} eq yes ) {
push @{ $config->{rules_from} }, My::Googable;
}
}
# Add a configuration observer in the server configuration
[config_watcher]
class = OpenInteract2::MyInitializerAction
# and in the class well dynamically add a filter to an action where
# is_googlable is yes
package OpenInteract2::MyInitializerAction;
use strict;
use OpenInteract2::Context qw( CTX );
sub update {
my ( $class, $type, $config ) = @_;
return unless ( $type eq action );
if ( yes eq lc $config->{is_googlable} ) {
CTX->map_observer( google => $config->{class} );
}
}
<<lessSYNOPSIS
# Add an initializer in your package.conf
name mypackage
version 1.10
...
config_watcher OpenInteract2::MyInitializerSpops
config_watcher OpenInteract2::MyInitializerAction
# And the code in our package -- well dynamically add a rule from
# My::Googlable to a class where is_googlable is set to yes
package OpenInteract2::MyInitializerSpops;
use strict;
sub update {
my ( $class, $type, $config ) = @_;
return unless ( $type eq spops );
if ( $config->{is_googlable} eq yes ) {
push @{ $config->{rules_from} }, My::Googable;
}
}
# Add a configuration observer in the server configuration
[config_watcher]
class = OpenInteract2::MyInitializerAction
# and in the class well dynamically add a filter to an action where
# is_googlable is yes
package OpenInteract2::MyInitializerAction;
use strict;
use OpenInteract2::Context qw( CTX );
sub update {
my ( $class, $type, $config ) = @_;
return unless ( $type eq action );
if ( yes eq lc $config->{is_googlable} ) {
CTX->map_observer( google => $config->{class} );
}
}
Download (0.91MB)
Added: 2006-11-30 License: Perl Artistic License Price:
1058 downloads
sysinit 0.1 b1
sysinit is a system-initialization and daemon-management alternative. more>>
sysinit is a system initialization and daemon management scheme for Linux (and possibly other Unix-like operating systems).
The system initialization portion has no external requirements except a working BASH shell. The daemon management portion requires a working BASH shell and either runit or daemontools. There are additional scripts that work with runit as process number one.
You may use it under the terms of the GNU General Public License.
<<lessThe system initialization portion has no external requirements except a working BASH shell. The daemon management portion requires a working BASH shell and either runit or daemontools. There are additional scripts that work with runit as process number one.
You may use it under the terms of the GNU General Public License.
Download (0.004MB)
Added: 2005-04-11 License: GPL (GNU General Public License) Price:
1658 downloads
Linux Bandwidth Monitor 1.3
Linux Bandwidth Monitor (bwmon) is yet another utility that measures bandwidth utiliazation per interface basis. more>>
Linux Bandwidth Monitor (bwmon) is yet another utility that measures bandwidth utiliazation per interface basis. It is coded in C and takes advantage of POSIX thread and curses library. It runs only on Linux systems since the utility reads /proc/net/dev and /proc/uptime.
The utility reads /proc/net/dev and /proc/uptime files in order to print out bandwidth usage at user selected intervals, maximum bandwidth usage since initialization of the utility and average bandwidth usage since the last reboot. This is done based on network interface.
Tested on Linux 2.2.x, 2.4.x and 2.5.x, SuSE and RedHat distributions.
To compile, simply say
$ make
To install, say (optional)
# make install
Or copy bwmon binary where ever you want.
<<lessThe utility reads /proc/net/dev and /proc/uptime files in order to print out bandwidth usage at user selected intervals, maximum bandwidth usage since initialization of the utility and average bandwidth usage since the last reboot. This is done based on network interface.
Tested on Linux 2.2.x, 2.4.x and 2.5.x, SuSE and RedHat distributions.
To compile, simply say
$ make
To install, say (optional)
# make install
Or copy bwmon binary where ever you want.
Download (0.005MB)
Added: 2006-08-01 License: GPL (GNU General Public License) Price:
1203 downloads
PostScript::File 1.01
PostScript::File is a Perl base class for creating Adobe PostScript files. more>>
PostScript::File is a Perl base class for creating Adobe PostScript files.
SYNOPSIS
use PostScript::File qw(check_tilde check_file
incpage_label incpage_roman);
Simplest
An hello world program:
use PostScript::File;
my $ps = new PostScript::File();
$ps->add_to_page( Letter,
height => 500,
width => 400,
bottom => 30,
top => 30,
left => 30,
right => 30,
clip_command => stroke,
clipping => 1,
eps => 1,
dir => ~/foo,
file => "bar",
landscape => 0,
headings => 1,
reencode => ISOLatin1Encoding,
font_suffix => -iso,
errors => 1,
errmsg => Failed:,
errfont => Helvetica,
errsize => 12,
errx => 72,
erry => 300,
debug => 2,
db_active => 1,
db_xgap => 120,
db_xtab => 8,
db_base => 300,
db_ytop => 500,
db_color => 1 0 0 setrgbcolor,
db_font => Times-Roman,
db_fontsize => 11,
db_bufsize => 256,
);
<<lessSYNOPSIS
use PostScript::File qw(check_tilde check_file
incpage_label incpage_roman);
Simplest
An hello world program:
use PostScript::File;
my $ps = new PostScript::File();
$ps->add_to_page( Letter,
height => 500,
width => 400,
bottom => 30,
top => 30,
left => 30,
right => 30,
clip_command => stroke,
clipping => 1,
eps => 1,
dir => ~/foo,
file => "bar",
landscape => 0,
headings => 1,
reencode => ISOLatin1Encoding,
font_suffix => -iso,
errors => 1,
errmsg => Failed:,
errfont => Helvetica,
errsize => 12,
errx => 72,
erry => 300,
debug => 2,
db_active => 1,
db_xgap => 120,
db_xtab => 8,
db_base => 300,
db_ytop => 500,
db_color => 1 0 0 setrgbcolor,
db_font => Times-Roman,
db_fontsize => 11,
db_bufsize => 256,
);
Download (0.022MB)
Added: 2006-09-26 License: Perl Artistic License Price:
1124 downloads
servicemon 0.2
servicemon is a simple service monitoring application written in Python. more>>
servicemon is a simple service monitoring application written in Python. The project periodically calls the init scripts for services it has been configured to monitor and determines whether each service is running, restarting failed services as appropriate.
It can send e-mail alerts and has a network interface to talk to a graphical frontend. There is a graphical client available for Linux written in Python/GTK and also a Java client which will run on any platform supported by Suns Java.
Enhancements:
- This version features a Makefile to automate installation, an init script to start servicemon automatically on boot, and many fixes and improvements to the core code.
<<lessIt can send e-mail alerts and has a network interface to talk to a graphical frontend. There is a graphical client available for Linux written in Python/GTK and also a Java client which will run on any platform supported by Suns Java.
Enhancements:
- This version features a Makefile to automate installation, an init script to start servicemon automatically on boot, and many fixes and improvements to the core code.
Download (0.006MB)
Added: 2007-05-16 License: GPL (GNU General Public License) Price:
891 downloads
PerlActor 0.02
PerlActor is a simple automated executable acceptance test framework for Perl. more>>
PerlActor is a simple automated executable acceptance test framework for Perl.
PerlActor is a simple automated executable acceptance test framework for Perl. It can be used by Extreme Programming (XP) teams to rapidly develop executable acceptance tests for their Perl code.
XP mandates that the Customer writes acceptance tests for the application under development. The acceptance tests, also known as customer tests, demonstrate that application features are complete and that they work as expected. Ideally, the tests should be directly executable and automated so that they can be run continuously, without manual effort.
PerlActor enables an XP Customer to write *executable* acceptance tests as plain text files, using a very simple syntax. Each test consists of a number of parameterized commands (one per line), which PerlActor uses to exercise the application. PerlActor parses the test, invokes the commands with any parameters, and reports the result. The developers provide glue code to implement the commands required by the tests.
PerlActor allows tests to be grouped into suites so that related tests can be run as a group. The Customer can also just place test scripts in a directory structure and have PerlActor find and execute them all.
The PerlActor approach to acceptance testing has a number of advantages:
1) As the application grows the team will gradually develop a comprehensive set of Commands for testing the application.
2) The Customer, independent of the development team, can write and execute new tests for the application at any time, using any of the existing Commands.
3) Existing tests may be changed by the Customer at any time, again without developer help.
EXAMPLE SCRIPT
The following sample test script is adapted from one of the example scripts contained in the examples/calculator directory of this distribution. It tests a toy calculator "application":
# Script to check addition
# 10 + 32 = 42
# Create a new calculator application
NewCalculator
# Ensure that the display reads 0, initially
CheckDisplayReads 0
# Press key 1, then key 0
PressKeys 1 0
CheckDisplayReads 10
PressKeys +
CheckDisplayReads 10
PressKeys 3 2
CheckDisplayReads 32
PressKeys =
CheckDisplayReads 42
The following is sample output from the included test runner:
Running Acceptance Tests at Sun Apr 10 17:59:11 GMT 2005
==========================================================
.....
0.545077 wallclock secs ( 0.42 usr + 0.11 sys = 0.53 CPU)
Run: 5, Passed: 5, Failed: 0, Aborted: 0.
and with test failure:
Running Acceptance Tests at Sun Apr 10 18:04:36 GMT 2005
==========================================================
.F...
1.24811 wallclock secs ( 0.47 usr + 0.07 sys = 0.54 CPU)
Run: 5, Passed: 4, Failed: 1, Aborted: 0.
!!!FAILED!!!
1) FAILED: Display is wrong: expected 41, got 42 in scripts/test_addition.pact
at CheckDisplayReads 41, line 37
<<lessPerlActor is a simple automated executable acceptance test framework for Perl. It can be used by Extreme Programming (XP) teams to rapidly develop executable acceptance tests for their Perl code.
XP mandates that the Customer writes acceptance tests for the application under development. The acceptance tests, also known as customer tests, demonstrate that application features are complete and that they work as expected. Ideally, the tests should be directly executable and automated so that they can be run continuously, without manual effort.
PerlActor enables an XP Customer to write *executable* acceptance tests as plain text files, using a very simple syntax. Each test consists of a number of parameterized commands (one per line), which PerlActor uses to exercise the application. PerlActor parses the test, invokes the commands with any parameters, and reports the result. The developers provide glue code to implement the commands required by the tests.
PerlActor allows tests to be grouped into suites so that related tests can be run as a group. The Customer can also just place test scripts in a directory structure and have PerlActor find and execute them all.
The PerlActor approach to acceptance testing has a number of advantages:
1) As the application grows the team will gradually develop a comprehensive set of Commands for testing the application.
2) The Customer, independent of the development team, can write and execute new tests for the application at any time, using any of the existing Commands.
3) Existing tests may be changed by the Customer at any time, again without developer help.
EXAMPLE SCRIPT
The following sample test script is adapted from one of the example scripts contained in the examples/calculator directory of this distribution. It tests a toy calculator "application":
# Script to check addition
# 10 + 32 = 42
# Create a new calculator application
NewCalculator
# Ensure that the display reads 0, initially
CheckDisplayReads 0
# Press key 1, then key 0
PressKeys 1 0
CheckDisplayReads 10
PressKeys +
CheckDisplayReads 10
PressKeys 3 2
CheckDisplayReads 32
PressKeys =
CheckDisplayReads 42
The following is sample output from the included test runner:
Running Acceptance Tests at Sun Apr 10 17:59:11 GMT 2005
==========================================================
.....
0.545077 wallclock secs ( 0.42 usr + 0.11 sys = 0.53 CPU)
Run: 5, Passed: 5, Failed: 0, Aborted: 0.
and with test failure:
Running Acceptance Tests at Sun Apr 10 18:04:36 GMT 2005
==========================================================
.F...
1.24811 wallclock secs ( 0.47 usr + 0.07 sys = 0.54 CPU)
Run: 5, Passed: 4, Failed: 1, Aborted: 0.
!!!FAILED!!!
1) FAILED: Display is wrong: expected 41, got 42 in scripts/test_addition.pact
at CheckDisplayReads 41, line 37
Download (0.013MB)
Added: 2007-06-22 License: Perl Artistic License Price:
854 downloads
Epoch DHTML JavaScript Calendar 2.0.1
Epoch JavaScript Calendar and DatePicker runs on all major browsers and features a fast user interface. more>>
Epoch JavaScript Calendar and DatePicker runs on all major browsers and features a fast user interface, multiple date selection, flat or popup modes, CSS styling, automatic date formatting, full object-oriented design, and more. Epoch DHTML JavaScript Calendar is available in over a dozen major international languages.
Main features:
- Fast loading and initialization
- Intuitive, customizable interface
- Compatible with all Modern Browsers - see compatibility chart below.
- Can display as a Flat or Popup (DatePicker) calendar
- Automatic Date Formatting - US, European, or create your own!
- Multiple-Date selection - by clicking on calendar cells or the day & week headings.
<<lessMain features:
- Fast loading and initialization
- Intuitive, customizable interface
- Compatible with all Modern Browsers - see compatibility chart below.
- Can display as a Flat or Popup (DatePicker) calendar
- Automatic Date Formatting - US, European, or create your own!
- Multiple-Date selection - by clicking on calendar cells or the day & week headings.
Download (0.029MB)
Added: 2006-09-18 License: LGPL (GNU Lesser General Public License) Price:
1207 downloads
Vonage::Click2Call 0.11
Vonage::Click2Call is a Perl extension for using the Vonage Click2Call service. more>>
Vonage::Click2Call is a Perl extension for using the Vonage Click2Call service.
SYNOPSIS
use Vonage::Click2Call;
my $vonage = Vonage::Click2Call->new(login => user,
password => pass,
no_https_check => 1, # wasteful after the first time. turn it off.
);
if (! $vonage) {
# no $vonage for errstr...
die "Failed during initilization : " . $Vonage::Click2Call::errstr;
}
# get my phone numbers
my @phoneNumbers = $vonage->fromNumbers();
if (! defined($phoneNumbers[0])) {
die "No phone numbers found : " . $vonage->errstr;
}
printf("I have %d numbers configured.",scalar(@phoneNumbers));
# call someone. dont forget the leading 1.
my $rc = $vonage->call($phoneNumbers[0],12125551234);
if (! $rc) {
die "Failed to place a call : " . $vonage->errstr;
}
<<lessSYNOPSIS
use Vonage::Click2Call;
my $vonage = Vonage::Click2Call->new(login => user,
password => pass,
no_https_check => 1, # wasteful after the first time. turn it off.
);
if (! $vonage) {
# no $vonage for errstr...
die "Failed during initilization : " . $Vonage::Click2Call::errstr;
}
# get my phone numbers
my @phoneNumbers = $vonage->fromNumbers();
if (! defined($phoneNumbers[0])) {
die "No phone numbers found : " . $vonage->errstr;
}
printf("I have %d numbers configured.",scalar(@phoneNumbers));
# call someone. dont forget the leading 1.
my $rc = $vonage->call($phoneNumbers[0],12125551234);
if (! $rc) {
die "Failed to place a call : " . $vonage->errstr;
}
Download (0.003MB)
Added: 2007-05-25 License: Perl Artistic License Price:
888 downloads
Doubly Linked List 1.2.0
Doubly Linked List project consists of an API for a doubly linked list. more>>
Doubly Linked List project consists of an API for a doubly linked list. The API is divided into six functional groups: initialization, status and state, pointer manipulation, list update, search, and input/output. The API has been used in production software for over 2 years.
Enhancements:
- A CVS-generated ChangeLog has replaced the manually kept HISTORY file.
- The three header files have been reduced to one, and the code formatting has partially changed.
- The documentation has been updated, and a new PDF file has been added to the already existing PS and HTML docs.
- The project is now dual licensed: the Eclipse license has been added to the original Artistic License.
<<lessEnhancements:
- A CVS-generated ChangeLog has replaced the manually kept HISTORY file.
- The three header files have been reduced to one, and the code formatting has partially changed.
- The documentation has been updated, and a new PDF file has been added to the already existing PS and HTML docs.
- The project is now dual licensed: the Eclipse license has been added to the original Artistic License.
Download (0.32MB)
Added: 2007-08-01 License: Artistic License Price:
817 downloads
Apache::AxKit::XSP::Language::SimpleTaglib 1.6.2
Apache::AxKit::XSP::Language::SimpleTaglib is an alternate XSP taglib helper. more>>
Apache::AxKit::XSP::Language::SimpleTaglib is an alternate XSP taglib helper.
SYNOPSIS
package Your::XSP::Package;
use Apache::AxKit::Language::XSP::SimpleTaglib;
... more initialization stuff, start_document handler, utility functions, whatever
you like, but no parse_start/end handler needed - if in doubt, just leave empty ...
package Your::XSP::Package::Handlers;
sub some_tag : attrib(id) attribOrChild(some-param) node(result) keepWhitespace {
my ($e, $tag, %attr) = @_;
return do_something($attr_some_param,.$attr{id}.);;
}
This taglib helper allows you to easily write tag handlers with most of the common behaviours needed. It manages all Design Patterns from the XSP man page plus several other useful tag styles.
<<lessSYNOPSIS
package Your::XSP::Package;
use Apache::AxKit::Language::XSP::SimpleTaglib;
... more initialization stuff, start_document handler, utility functions, whatever
you like, but no parse_start/end handler needed - if in doubt, just leave empty ...
package Your::XSP::Package::Handlers;
sub some_tag : attrib(id) attribOrChild(some-param) node(result) keepWhitespace {
my ($e, $tag, %attr) = @_;
return do_something($attr_some_param,.$attr{id}.);;
}
This taglib helper allows you to easily write tag handlers with most of the common behaviours needed. It manages all Design Patterns from the XSP man page plus several other useful tag styles.
Download (0.30MB)
Added: 2006-09-12 License: Perl Artistic License Price:
1137 downloads
SPMS/syspatch 0.6
SPMS and syspatch are a useful tools to apply OpenBSD patches to a collection of OpenBSD hosts. more>>
SPMS and syspatch are a useful tools to apply OpenBSD patches to a collection of OpenBSD hosts where you dont want to have a compiler and the src hierarchy, nor spend the time needed to compile some sources.
SPMS and syspatch are designed for admins who have more than one OpenBSD box to administer, who work in teams, and dont want to spend time on repetitive tasks. In case of trouble, you can revert on an applied patch.
SPMS/syspatch will not mask the process of OpenBSD patching, since you still have to build errata on a buildhost and understand what is patched.
Enhancements:
- This release uses SPMS::* Perl modules to clean up the source and make syspatch easier to maintain and develop by more than one person.
- It has POD documentation for SPMS modules, better /var/db/spms/index.db initialization, and better control over untar operations.
<<lessSPMS and syspatch are designed for admins who have more than one OpenBSD box to administer, who work in teams, and dont want to spend time on repetitive tasks. In case of trouble, you can revert on an applied patch.
SPMS/syspatch will not mask the process of OpenBSD patching, since you still have to build errata on a buildhost and understand what is patched.
Enhancements:
- This release uses SPMS::* Perl modules to clean up the source and make syspatch easier to maintain and develop by more than one person.
- It has POD documentation for SPMS modules, better /var/db/spms/index.db initialization, and better control over untar operations.
Download (0.004MB)
Added: 2006-02-13 License: BSD License Price:
1350 downloads
Measuring Buffer 20090628
Measuring Buffer is an enhanced version of buffer. more>>
Measuring Buffer 20090628 provides you with a perfect and enhanced version of buffer which features display of throughput, network support, memory-mapped file I/O for huge buffers and multithreading. This will be your excellent choice.
Major Features:
- Display of I/O speed
- Optional use of memory mapped I/O for huge buffers
- Multithreaded instead of sharedmemory ipc
- Multi volume support
- Autoloader support
- Networking support
- Compatible command-line options
Enhancements:
- This release fixes a hang on transfer sizes smaller than blocksize with status display active.
- It has a Gentoo compatibility update, a man page update, a summary display update, and a libmhash initialization fix.
- Termination latency with active status display is reduced.
- There is a fix for -q suppressing the output of -H.
Added: 2009-06-29 License: GPL v3 Price: FREE
14 downloads
Java::JCR::Exception 0.08
Java::JCR::Exception is a Perl wrapper for repository exceptions. more>>
Java::JCR::Exception is a Perl wrapper for repository exceptions.
SYNOPSIS
eval {
my $node = $root->add_node(foo, nt:unstructured);
};
if ($@) {
print STDERR "Failed to add node foo: $@n";
}
This class is used to make the exceptions thrown from the Java code work more nicely in Perl. Primarily, this involves performing nicer stringification than is provided by Inline::Java.
<<lessSYNOPSIS
eval {
my $node = $root->add_node(foo, nt:unstructured);
};
if ($@) {
print STDERR "Failed to add node foo: $@n";
}
This class is used to make the exceptions thrown from the Java code work more nicely in Perl. Primarily, this involves performing nicer stringification than is provided by Inline::Java.
Download (0.047MB)
Added: 2007-06-05 License: Perl Artistic License Price:
871 downloads
Catalyst::Plugin::Authentication::Credential::BBAuth 0.03
Catalyst::Plugin::Authentication::Credential::BBAuth is a Yahoo! Browser-Based Authentication for Catalyst. more>>
Catalyst::Plugin::Authentication::Credential::BBAuth is a Yahoo! Browser-Based Authentication for Catalyst.
SYNOPSIS
use Catalyst qw(
Authentication
Authentication::Credential::BBAuth
Session
Session::Store::FastMmap
Session::State::Cookie
);
MyApp->config(
authentication => {
use_session => 1, # default 1. see C::P::Authentication
bbauth => {
appid => your appid,
secret => your secret,
},
},
);
sub default : Private {
my ( $self, $c ) = @_;
if ( $c->user_exists ) {
# $c->user setted
}
}
# redirect BBAuth login form
sub login : Local {
my ( $self, $c ) = @_;
$c->res->redirect( $c->authenticate_bbauth_url );
}
# login callback url
sub auth : Path(/auth) {
my ( $self, $c ) = @_;
if ( $c->authenticate_bbauth ) {
# login successful
$c->res->redirect( $c->uri_for(/) );
} else {
# login failed
}
}
This module provide authentication via Yahoo! Browser-Based Authentication, using its api.
<<lessSYNOPSIS
use Catalyst qw(
Authentication
Authentication::Credential::BBAuth
Session
Session::Store::FastMmap
Session::State::Cookie
);
MyApp->config(
authentication => {
use_session => 1, # default 1. see C::P::Authentication
bbauth => {
appid => your appid,
secret => your secret,
},
},
);
sub default : Private {
my ( $self, $c ) = @_;
if ( $c->user_exists ) {
# $c->user setted
}
}
# redirect BBAuth login form
sub login : Local {
my ( $self, $c ) = @_;
$c->res->redirect( $c->authenticate_bbauth_url );
}
# login callback url
sub auth : Path(/auth) {
my ( $self, $c ) = @_;
if ( $c->authenticate_bbauth ) {
# login successful
$c->res->redirect( $c->uri_for(/) );
} else {
# login failed
}
}
This module provide authentication via Yahoo! Browser-Based Authentication, using its api.
Download (0.003MB)
Added: 2006-12-12 License: GPL (GNU General Public License) Price:
1046 downloads
mod_accounting 0.5
mod_accounting is a simple Apache module that can record traffic statistics into a database. more>>
mod_accounting is a simple Apache module that can record traffic statistics (bytes received/sent per request) into a database.
Enhancements:
- Added a placeholder for user names (%u) to allow for more statistics on the recorded data.
- Now uses ap_get_server_name(r) to get the value for %h, to support virtual host names.
- Added the AccountingIgnoreHosts directive.
- Adds the version string to the Apache SERVER_SOFTWARE-Environment (patch by Michael Diekmann 29.04.2002)
- Added a sample database schema and FAQs provided by Chris Hall.
- Fixed segv when handling failed internal redirections (and possibly in other cases where r->status_line is NULL)
<<lessEnhancements:
- Added a placeholder for user names (%u) to allow for more statistics on the recorded data.
- Now uses ap_get_server_name(r) to get the value for %h, to support virtual host names.
- Added the AccountingIgnoreHosts directive.
- Adds the version string to the Apache SERVER_SOFTWARE-Environment (patch by Michael Diekmann 29.04.2002)
- Added a sample database schema and FAQs provided by Chris Hall.
- Fixed segv when handling failed internal redirections (and possibly in other cases where r->status_line is NULL)
Download (0.010MB)
Added: 2005-08-23 License: GPL (GNU General Public License) Price:
1525 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above session3 initialization failed search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed