checker 1.0
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3162
GMail::Checker 1.04
GMail::Checker is a Perl wrapper for Gmail accounts. more>>
GMail::Checker is a Perl wrapper for Gmail accounts.
SYNOPSIS
use GMail::Checker;
my $gwrapper = new GMail::Checker();
my $gwrapper = new GMail::Checker(USERNAME => "username", PASSWORD => "password");
# Lets log into our account (using SSL)
$gwrapper->login("username","password");
# Get the number of messages in the maildrop & their total size
my ($nb, $size) = $gwrapper->get_msg_nb_size();
# Do we have new messages ?
my $alert = $gwrapper->get_pretty_nb_messages(ALERT => "TOTAL_MSG");
# Get the headers for a specific message (defaults to last message)
my @headers = $gwrapper->get_msg_headers(HEADERS => "FULL", MSG => 74);
# Get a message size
my ($msgnb, $msgsize) = $gwrapper->get_msg_size(MSG => 42);
# Retrieve a specific message
my @msg = $gwrapper->get_msg(MSG => 23);
print $msg[0]->{content}, "n";
print $msg[0]->{body};
# Retrieve UIDL for a message
my @uidl = $gwrapper->get_uidl(MSG => 10);
This module provides a wrapper that allows you to perform major operations on your gmail account.
You may create a notifier to know about new incoming messages, get information about a specific e-mail, retrieve your mails using the POP3 via SSL interface.
<<lessSYNOPSIS
use GMail::Checker;
my $gwrapper = new GMail::Checker();
my $gwrapper = new GMail::Checker(USERNAME => "username", PASSWORD => "password");
# Lets log into our account (using SSL)
$gwrapper->login("username","password");
# Get the number of messages in the maildrop & their total size
my ($nb, $size) = $gwrapper->get_msg_nb_size();
# Do we have new messages ?
my $alert = $gwrapper->get_pretty_nb_messages(ALERT => "TOTAL_MSG");
# Get the headers for a specific message (defaults to last message)
my @headers = $gwrapper->get_msg_headers(HEADERS => "FULL", MSG => 74);
# Get a message size
my ($msgnb, $msgsize) = $gwrapper->get_msg_size(MSG => 42);
# Retrieve a specific message
my @msg = $gwrapper->get_msg(MSG => 23);
print $msg[0]->{content}, "n";
print $msg[0]->{body};
# Retrieve UIDL for a message
my @uidl = $gwrapper->get_uidl(MSG => 10);
This module provides a wrapper that allows you to perform major operations on your gmail account.
You may create a notifier to know about new incoming messages, get information about a specific e-mail, retrieve your mails using the POP3 via SSL interface.
Download (0.007MB)
Added: 2007-04-19 License: Perl Artistic License Price:
920 downloads
QArchive.org web files checker 1.0
QArchive.org web files checker is an extension which allows people to check web files for any malware. more>>
QArchive.org web files checker is an extension which allows people to check web files for any malware.
The add-on allowing people to check web files for any malware (viruses, trojans, worms, adware, spyware and other unwanted things) inclusions. Install this plug-in to your browser, reload it. Then click the web file link by right mouse button and choose a "Check files with QArchive.org".
Then follow web site instructions. The usual way: your file will be enqueued. Refresh the report page to get completete antivirus report. That will show you all web files part checking and a summary as well. If you are a web master you can you the useful feature.
Taking the code of received report and placed it on your web site you can inform people about a concrete file safety. The web forums code version exists as well.
<<lessThe add-on allowing people to check web files for any malware (viruses, trojans, worms, adware, spyware and other unwanted things) inclusions. Install this plug-in to your browser, reload it. Then click the web file link by right mouse button and choose a "Check files with QArchive.org".
Then follow web site instructions. The usual way: your file will be enqueued. Refresh the report page to get completete antivirus report. That will show you all web files part checking and a summary as well. If you are a web master you can you the useful feature.
Taking the code of received report and placed it on your web site you can inform people about a concrete file safety. The web forums code version exists as well.
Download (0.005MB)
Added: 2007-03-30 License: MPL (Mozilla Public License) Price:
977 downloads
Games::Checkers 0.1.0
Games::Checkers is a Perl module that allows you to play the Checkers games. more>>
SYNOPSIS
# automatical computer-vus-computer play script
use Games::Checkers::Constants;
use Games::Checkers::Board;
use Games::Checkers::BoardTree;
my $board = new Games::Checkers::Board;
my $color = White;
my $numMoves = 0;
print $board->dump;
while ($board->canColorMove($color)) {
sleep(2);
# allow 100 moves for each player
die "Automatical drawn" if $numMoves++ == 200;
my $boardTree = new Games::Checkers::BoardTree
($board, $color, 2); # think 2 steps ahead
my $move = $boardTree->chooseBestMove; # or: chooseRandomMove
$board->transform($move);
print $move->dump, "n", $board->dump;
$color = ($color == White)? Black: White;
}
print "n", ($color == White? "Black": "White"), " won.n";
ABSTRACT ^
Games::Checkers is a set of Perl classes implementing the Checkers game play. Several national rule variants are supported. A basic AI heuristics is implemented using the Minimax algorithm. Replay of previously recorded games is supported too.
DESCRIPTION ^
This package is intended to provide complete infrastructure for interactive and automatic playing and manipulating of Checkers games. Some features are not implemented yet.
Download (0.28MB)
Added: 2007-01-03 License: Perl Artistic License Price:
1032 downloads
Integcheck 1.0.4
Integcheck is a system integrity checker. more>>
Integcheck is a system integrity checker.
Integcheck checks the integrity of exposed systems by getting a list of MD5 hashes of any important file via SSH.
The idea is to check integrity of exposed systems by getting a list of md5 of any important file via ssh, to keep this list on a pretty safe system (a system that do not run any server publicly available), and, finally, to compare everyday this list and with the previous one.
As long as the system considered as safe is not compromised, it should inform administrators of any changes on the others systems.
As others integrity checker, if its own components are corrupted, it can be fooled. In others words, you cannot have a security policy entirely relying on an integrity checker, and you should always do manual checks regularly to be sure that the integrity checker is not corrupted itself.
So whats the point of this tool, if you are still forced to do manual checks? In fact, it is way faster to check integrity of integcheck than integrity of the whole system.
Enhancements:
- Checks now rely on MD5 and file size instead of just MD5.
<<lessIntegcheck checks the integrity of exposed systems by getting a list of MD5 hashes of any important file via SSH.
The idea is to check integrity of exposed systems by getting a list of md5 of any important file via ssh, to keep this list on a pretty safe system (a system that do not run any server publicly available), and, finally, to compare everyday this list and with the previous one.
As long as the system considered as safe is not compromised, it should inform administrators of any changes on the others systems.
As others integrity checker, if its own components are corrupted, it can be fooled. In others words, you cannot have a security policy entirely relying on an integrity checker, and you should always do manual checks regularly to be sure that the integrity checker is not corrupted itself.
So whats the point of this tool, if you are still forced to do manual checks? In fact, it is way faster to check integrity of integcheck than integrity of the whole system.
Enhancements:
- Checks now rely on MD5 and file size instead of just MD5.
Download (0.015MB)
Added: 2005-11-14 License: GPL (GNU General Public License) Price:
1440 downloads
XML::Checker 0.13
XML::Checker is a Perl module for validating XML. more>>
XML::Checker is a Perl module for validating XML.
SYNOPSIS
XML::Checker::Parser - an XML::Parser that validates at parse time
XML::DOM::ValParser - an XML::DOM::Parser that validates at parse time
(Some of the package names may change! This is only an alpha release...)
XML::Checker can be used in different ways to validate XML. See the manual pages of XML::Checker::Parser and XML::DOM::ValParser for more information.
This document only describes common topics like error handling and the XML::Checker class itself.
WARNING: Not all errors are currently checked. Almost everything is subject to change. Some reported errors may not be real errors. For production code, it is recommended that you use XML::LibXML or XML::GDOME instead of XML::Checker. Both modules share the same DTD validation code with libxml2 and XML::LibXML is easier to install.
<<lessSYNOPSIS
XML::Checker::Parser - an XML::Parser that validates at parse time
XML::DOM::ValParser - an XML::DOM::Parser that validates at parse time
(Some of the package names may change! This is only an alpha release...)
XML::Checker can be used in different ways to validate XML. See the manual pages of XML::Checker::Parser and XML::DOM::ValParser for more information.
This document only describes common topics like error handling and the XML::Checker class itself.
WARNING: Not all errors are currently checked. Almost everything is subject to change. Some reported errors may not be real errors. For production code, it is recommended that you use XML::LibXML or XML::GDOME instead of XML::Checker. Both modules share the same DTD validation code with libxml2 and XML::LibXML is easier to install.
Download (0.033MB)
Added: 2006-09-16 License: Perl Artistic License Price:
1134 downloads
XML::Checker::Parser 1.02
XML::Checker::Parser is an XML::Parser that validates at parse time. more>>
XML::Checker::Parser is an XML::Parser that validates at parse time.
SYNOPSIS
use XML::Checker::Parser;
my %expat_options = (KeepCDATA => 1,
Handlers => [ Unparsed => &my_Unparsed_handler ]);
my $parser = new XML::Checker::Parser (%expat_options);
eval {
local $XML::Checker::FAIL = &my_fail;
$parser->parsefile ("fail.xml");
};
if ($@) {
# Either XML::Parser (expat) threw an exception or my_fail() died.
... your error handling code here ...
}
# Throws an exception (with die) when an error is encountered, this
# will stop the parsing process.
# Dont die if a warning or info message is encountered, just print a message.
sub my_fail {
my $code = shift;
die XML::Checker::error_string ($code, @_) if $code < 200;
XML::Checker::print_error ($code, @_);
}
XML::Checker::Parser extends XML::Parser
I hope the example in the SYNOPSIS says it all, just use XML::Checker::Parser as if it were an XML::Parser. See XML::Parser for the supported (expat) options.
You can also derive your parser from XML::Checker::Parser instead of from XML::Parser. All you should have to do is replace:
package MyParser;
@ISA = qw( XML::Parser );
with:
package MyParser;
@ISA = qw( XML::Checker::Parser );
<<lessSYNOPSIS
use XML::Checker::Parser;
my %expat_options = (KeepCDATA => 1,
Handlers => [ Unparsed => &my_Unparsed_handler ]);
my $parser = new XML::Checker::Parser (%expat_options);
eval {
local $XML::Checker::FAIL = &my_fail;
$parser->parsefile ("fail.xml");
};
if ($@) {
# Either XML::Parser (expat) threw an exception or my_fail() died.
... your error handling code here ...
}
# Throws an exception (with die) when an error is encountered, this
# will stop the parsing process.
# Dont die if a warning or info message is encountered, just print a message.
sub my_fail {
my $code = shift;
die XML::Checker::error_string ($code, @_) if $code < 200;
XML::Checker::print_error ($code, @_);
}
XML::Checker::Parser extends XML::Parser
I hope the example in the SYNOPSIS says it all, just use XML::Checker::Parser as if it were an XML::Parser. See XML::Parser for the supported (expat) options.
You can also derive your parser from XML::Checker::Parser instead of from XML::Parser. All you should have to do is replace:
package MyParser;
@ISA = qw( XML::Parser );
with:
package MyParser;
@ISA = qw( XML::Checker::Parser );
Download (0.36MB)
Added: 2006-06-15 License: Perl Artistic License Price:
1226 downloads
Checkmate 0.15
Checkmate is a set of programs that scan MP3s. more>>
Checkmate is a set of programs that scan MP3s. It scans the file to see if the frames are where they are supposed to be, if the frame headers are correct and if the headers are consistent throughout the file.
Checkmate gives some statistics on the file, and a conclusion whether the file is bad or good. It is used from the command prompt.
Checkmate mpck is the core that does the actual scanning. It can be used on the command line on both Linux and Windows.
Checkmate MP3 checker is a Microsoft Windows interface for mpck. It scans MP3 files and has a Explorer-like display which shows which files where scanned and what the result was. Wimpck was tested on Windows 2000 and should work on any Windows version.
Enhancements:
- Recursively scanning directories now works with extension matching.
- Some cases where checkmate reported read errors were also solved.
<<lessCheckmate gives some statistics on the file, and a conclusion whether the file is bad or good. It is used from the command prompt.
Checkmate mpck is the core that does the actual scanning. It can be used on the command line on both Linux and Windows.
Checkmate MP3 checker is a Microsoft Windows interface for mpck. It scans MP3 files and has a Explorer-like display which shows which files where scanned and what the result was. Wimpck was tested on Windows 2000 and should work on any Windows version.
Enhancements:
- Recursively scanning directories now works with extension matching.
- Some cases where checkmate reported read errors were also solved.
Download (0.14MB)
Added: 2006-11-02 License: GPL (GNU General Public License) Price:
1105 downloads
gURLChecker 0.10.1
gURLChecker is a graphical web links checker for GNU/Linux and other POSIX OS. more>>
gURLChecker is a graphical web links checker for GNU/Linux and other POSIX OS. gURLChecker can work on a whole site, a single local page or a browser bookmarks file.
<<less Download (0.80MB)
Added: 2007-04-25 License: GPL (GNU General Public License) Price:
912 downloads
SEO Rank Checker 2.1
Search-Engine-Optimized project is a free online resource for anyone who wants to step up their search engine optimization. more>>
Search-Engine-Optimized project is a free online resource for anyone who wants to step up their search engine optimization strategies to the next gear.
The web is a constantly changing place, expecially search engines, but there are numerous search engine optimization strategies that are consistant across all the major search engines, and are probably going to be very useful for a long time to come.
Read on to learn what they are and how to employ them in the development of your web site.
Main features:
SEO Rank Checker is a nice little script for checking your keyword status for a few select keywords without going through the trouble of checking the search engine result pages yourself.
- Automated fetching of the top 100 results for MSN, Yahoo and Google to check for your site.
- Easy to read, compare and print output
- Installation is super easy, just upload to your server and youre done!
- Super small script, just a few KBs of space!
<<lessThe web is a constantly changing place, expecially search engines, but there are numerous search engine optimization strategies that are consistant across all the major search engines, and are probably going to be very useful for a long time to come.
Read on to learn what they are and how to employ them in the development of your web site.
Main features:
SEO Rank Checker is a nice little script for checking your keyword status for a few select keywords without going through the trouble of checking the search engine result pages yourself.
- Automated fetching of the top 100 results for MSN, Yahoo and Google to check for your site.
- Easy to read, compare and print output
- Installation is super easy, just upload to your server and youre done!
- Super small script, just a few KBs of space!
Download (0.003MB)
Added: 2006-01-24 License: Freeware Price:
1371 downloads
SMTP Relay Checker 2.0.3
SMTP Relay Checker is a fully configurable, multithreaded open mail relay scanner. more>>
SMTP Relay Checker is a fully configurable, multithreaded open mail relay scanner. It supports scanning of IP blocks, and can print the results to a Web page.
SMTP Relay Checker is intended for Systems Administrators to check IP blocks under their control.
Compilation / Installation
To build SmtpRC please run "make" in the package directory. This will build the package and create the binary "smtprc". To install the package, please run "make install".
By Default, the binary will be installed into /usr/local/bin/, configuration files will be installed under /usr/local/etc/smtprc/ and all documentation files will be installed under /usr/local/share/doc/smtprc/. Please see below for a full list of installed files.
/usr/local/bin/smtprc
/usr/local/bin/gsmtprc
/usr/local/etc/smtprc/auto.conf
/usr/local/etc/smtprc/email.tmpl
/usr/local/etc/smtprc/rcheck.conf
/usr/local/share/doc/smtprc/README
/usr/local/share/doc/smtprc/FAQ
/usr/local/man/man1/smtprc.1
/usr/local/man/man1/gsmtprc.1
Using Smtprc
SmtpRC can be run by specifying options on the command line, or by configuring an "auto configuration" file and letting SmtpRC parse the options from there. The latter is recommended.
When SmtpRC is installed, a example "auto configuration" file is installed in "/usr/local/etc/smtprc/auto.conf". Edit this file, changing the values to suit your specific network requirements and run smtprc with the following option (a full list of options
is detailed below):
"/usr/local/bin/smtprc -j /usr/local/etc/smtprc/auto.conf"
To be sure that a mailserver relays third-party email, SmtpRC will attempt to relay mail to an address specified. It is recommended that this address is a mailbox on the local machine that is being used to run SmtpRC - pop support is a planned feature, but for now, SmtpRC only supports checking local mailboxes (mbox and Maildir). Create a new user account (smtprc), specify the email address for this account, and the local mailbox (on the command line or in the "auto configuration" file), and SmtpRC will attempt to relay emails to this address and check for recieved emails after scanning.
There is also a GUI interface to smtprc (gsmtprc) that is installed in /usr/local/bin. This requires Perl Tk to run.
Enhancements:
- Fixes a race condition between the master and reaper threads.
<<lessSMTP Relay Checker is intended for Systems Administrators to check IP blocks under their control.
Compilation / Installation
To build SmtpRC please run "make" in the package directory. This will build the package and create the binary "smtprc". To install the package, please run "make install".
By Default, the binary will be installed into /usr/local/bin/, configuration files will be installed under /usr/local/etc/smtprc/ and all documentation files will be installed under /usr/local/share/doc/smtprc/. Please see below for a full list of installed files.
/usr/local/bin/smtprc
/usr/local/bin/gsmtprc
/usr/local/etc/smtprc/auto.conf
/usr/local/etc/smtprc/email.tmpl
/usr/local/etc/smtprc/rcheck.conf
/usr/local/share/doc/smtprc/README
/usr/local/share/doc/smtprc/FAQ
/usr/local/man/man1/smtprc.1
/usr/local/man/man1/gsmtprc.1
Using Smtprc
SmtpRC can be run by specifying options on the command line, or by configuring an "auto configuration" file and letting SmtpRC parse the options from there. The latter is recommended.
When SmtpRC is installed, a example "auto configuration" file is installed in "/usr/local/etc/smtprc/auto.conf". Edit this file, changing the values to suit your specific network requirements and run smtprc with the following option (a full list of options
is detailed below):
"/usr/local/bin/smtprc -j /usr/local/etc/smtprc/auto.conf"
To be sure that a mailserver relays third-party email, SmtpRC will attempt to relay mail to an address specified. It is recommended that this address is a mailbox on the local machine that is being used to run SmtpRC - pop support is a planned feature, but for now, SmtpRC only supports checking local mailboxes (mbox and Maildir). Create a new user account (smtprc), specify the email address for this account, and the local mailbox (on the command line or in the "auto configuration" file), and SmtpRC will attempt to relay emails to this address and check for recieved emails after scanning.
There is also a GUI interface to smtprc (gsmtprc) that is installed in /usr/local/bin. This requires Perl Tk to run.
Enhancements:
- Fixes a race condition between the master and reaper threads.
Download (0.053MB)
Added: 2006-04-13 License: GPL (GNU General Public License) Price:
1313 downloads
HTML::CGIChecker 0.90
HTML::CGIChecker is a Perl module to detect dangerous HTML code. more>>
HTML::CGIChecker is a Perl module to detect dangerous HTML code.
SYNOPSIS
use HTML::CGIChecker;
$feedback =
< TABLE CELLPADDING="2" >< TR >< TD >One column< /TD >< /TR >< /TABLE >< BR >
" Arrays & variables "
Dough > Hi, how are you ?
And now some Perl code:
< PRE >
print "< HTML >< BODY >< /BODY >< /HTML >";
< /PRE >
;
# create the $checker object
$checker = new HTML::CGIChecker (
mode => allow,
allowclasses => [ qw( tables images ) ],
allowtags => [ qw ( B I A U STRONG BR HR ) ],
jscript => 0,
html => 0,
pre => 1,
debug => 0,
err_tag => Tag {tag} is not allowed in {element}.
);
# Now you can use it to check any string using its checkHTML()
# method. It "remembers" its configuration, so you can reuse it.
($checked_feedback, $Warnings) =
$checker->checkHTML ($feedback);
# Process the results ...
if ($checked_feedback) {
# save $checked_feedback to the database ....
}
else {
# print the warnings ...
print join ("n", @{$Warnings});
}
The example above produces no warning messages and returns $feedback checked and properly HTML escaped. The only HTML "error" - the unescaped ">" bracket on the fourth line - is autocorrected. One warning message was overriden by a customized version. Potential warnings would not be HTML formatted and HTML safe, because the html parameter is not true.
<<lessSYNOPSIS
use HTML::CGIChecker;
$feedback =
< TABLE CELLPADDING="2" >< TR >< TD >One column< /TD >< /TR >< /TABLE >< BR >
" Arrays & variables "
Dough > Hi, how are you ?
And now some Perl code:
< PRE >
print "< HTML >< BODY >< /BODY >< /HTML >";
< /PRE >
;
# create the $checker object
$checker = new HTML::CGIChecker (
mode => allow,
allowclasses => [ qw( tables images ) ],
allowtags => [ qw ( B I A U STRONG BR HR ) ],
jscript => 0,
html => 0,
pre => 1,
debug => 0,
err_tag => Tag {tag} is not allowed in {element}.
);
# Now you can use it to check any string using its checkHTML()
# method. It "remembers" its configuration, so you can reuse it.
($checked_feedback, $Warnings) =
$checker->checkHTML ($feedback);
# Process the results ...
if ($checked_feedback) {
# save $checked_feedback to the database ....
}
else {
# print the warnings ...
print join ("n", @{$Warnings});
}
The example above produces no warning messages and returns $feedback checked and properly HTML escaped. The only HTML "error" - the unescaped ">" bracket on the fourth line - is autocorrected. One warning message was overriden by a customized version. Potential warnings would not be HTML formatted and HTML safe, because the html parameter is not true.
Download (0.014MB)
Added: 2007-08-07 License: Perl Artistic License Price:
809 downloads
Flinch 1.0.5
Flinch is a powerful and flexible web link checker that will make your life as a web designer or web server admin easier. more>>
Flinch is a powerful and flexible web link checker that will make your life as a web designer or web server admin easier. Flinch is implemented in Perl and released under the GPL (GNU General Public License).
The Flinch software can be used to check all the external links on your web pages periodically and produce HTML reports of its findings. If a web resource at the end of a link has not been reachable for a few days, Flinch can send you an email.
Note that Flinch is designed to work for medium sized sites with a few hundred or maybe a thousand links, it will be too slow and eat too much memory for really big sites.
Enhancements:
- workaround from 1.0.4 didnt work everywhere. Flinch has been changed to not use Digest::MD5 any more which should solve the problem once and for all.
<<lessThe Flinch software can be used to check all the external links on your web pages periodically and produce HTML reports of its findings. If a web resource at the end of a link has not been reachable for a few days, Flinch can send you an email.
Note that Flinch is designed to work for medium sized sites with a few hundred or maybe a thousand links, it will be too slow and eat too much memory for really big sites.
Enhancements:
- workaround from 1.0.4 didnt work everywhere. Flinch has been changed to not use Digest::MD5 any more which should solve the problem once and for all.
Download (0.031MB)
Added: 2007-06-26 License: GPL (GNU General Public License) Price:
850 downloads
kggs 1.0
kggs project is a interface for playing on the GGS. more>>
kggs project is a interface for playing on the GGS.
kggs is a KDE interface for playing reversi. It is designed to play online, on the GGS (Generic Game Server), the server for Othello, Amazons, Checkers, Go, Hex, Chess, Dots+Boxes, Domineering, and Ataxx. It implements chat and Othello.
It will be a alternative for lion (the Windows client) and GGSA (the Java interface). The program has been designed to be easy and intuitive to use, and other games should also be easy to implement.
Enhancements:
- Initial Creation
<<lesskggs is a KDE interface for playing reversi. It is designed to play online, on the GGS (Generic Game Server), the server for Othello, Amazons, Checkers, Go, Hex, Chess, Dots+Boxes, Domineering, and Ataxx. It implements chat and Othello.
It will be a alternative for lion (the Windows client) and GGSA (the Java interface). The program has been designed to be easy and intuitive to use, and other games should also be easy to implement.
Enhancements:
- Initial Creation
Download (0.50MB)
Added: 2006-11-30 License: GPL (GNU General Public License) Price:
1058 downloads
Page Update Checker 0.3.1
Page Update Checker is a FireFox extension that automatically checks to see if web pages have changed. more>>
Tired of clicking the reload button? Page Update Checker (aka PUC -- pronounced "Puke" is a FireFox extension that automatically checks to see if web pages have changed.
How to Use:
Once installed, you will be able to right-click on any page in Firefox and select "Monitor for Updates". The PUC options will open up and you can select how often you would like PUC to download the webpage and see if it has changed. To return to the options menu later, select "Tools" -> "Page Update Checker Options..."
Click the homepage link to find the PUC Wiki and share your Update Checkers!
<<lessHow to Use:
Once installed, you will be able to right-click on any page in Firefox and select "Monitor for Updates". The PUC options will open up and you can select how often you would like PUC to download the webpage and see if it has changed. To return to the options menu later, select "Tools" -> "Page Update Checker Options..."
Click the homepage link to find the PUC Wiki and share your Update Checkers!
Download (0.072MB)
Added: 2007-05-30 License: MPL (Mozilla Public License) Price:
947 downloads
ftpcluster 1.0.9
ftpcluster provides a system which integrates several FTP servers into one. more>>
ftpcluster provides a system which integrates several FTP servers into one.
ftpcluster integrates a number of individual FTP servers into a single large server. You can think of it as a network disk array with FTP as the access protocol.
Main features:
- FTP protocol
ftpcluster speaks enough FTP to upload, download, delete and rename files. You can also create, delete and rename directories.
- The cluster is working
Files can be distributed over your cluster nodes. ftpcluster knows how to handle files on your nodes.
- Replication
Files can be replicated to two or more node for fail-over situations.
- User authentication
Version 1.0.3: Users must authenticate against a local password file. Password are actually stored in cleartext.
- Filenames
Version 1.0.3: Filenames are not limited to a certain set of characters. Theres optional support for blanks and/or arbitrary characters in filenames. You can however restrict your users to usual UNIX filename conventions.
- Partial support for FTP REST command
Version 1.0.7: The cluster supports the REST command for downloads, for uploads only if the file is stored on the cluster.
- System checker
Since version 1.0.9 there are programs to check and repair cluster nodes.
Enhancements:
- Programs to check and repair the cluster were added.
- The FXP configuration documentation was started.
<<lessftpcluster integrates a number of individual FTP servers into a single large server. You can think of it as a network disk array with FTP as the access protocol.
Main features:
- FTP protocol
ftpcluster speaks enough FTP to upload, download, delete and rename files. You can also create, delete and rename directories.
- The cluster is working
Files can be distributed over your cluster nodes. ftpcluster knows how to handle files on your nodes.
- Replication
Files can be replicated to two or more node for fail-over situations.
- User authentication
Version 1.0.3: Users must authenticate against a local password file. Password are actually stored in cleartext.
- Filenames
Version 1.0.3: Filenames are not limited to a certain set of characters. Theres optional support for blanks and/or arbitrary characters in filenames. You can however restrict your users to usual UNIX filename conventions.
- Partial support for FTP REST command
Version 1.0.7: The cluster supports the REST command for downloads, for uploads only if the file is stored on the cluster.
- System checker
Since version 1.0.9 there are programs to check and repair cluster nodes.
Enhancements:
- Programs to check and repair the cluster were added.
- The FXP configuration documentation was started.
Download (0.10MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
910 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 checker 1.0 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