Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.480.082 Times

Script Error Handler Not Defined software
Filter: All | Freeware | Demo
 

Script Error Handler Not Defined

< 1 2 3 4 5 > 
Added: September 23, 2010 | Visits: 785

Variable::Strongly::Typed Variable::Strongly::Typed is a Perl module to let some variables be strongly typed. SYNOPSIS use Variable::Strongly::Typed; my $int :TYPE(int); # must have an int value my $float :TYPE(float); # must have a float value my $string :TYPE(string); # must not be a reference my $file... Platforms: *nix

License: Freeware Size: 10.24 KB Download (94): Variable::Strongly::Typed Download

Added: January 18, 2010 | Visits: 1.275

Data::Encrypted Data::Encrypted is a Perl module to transparently store encrypted data via RSA. SYNOPSIS # functional interface: use Data::Encrypted file => "./.$0-encrypted-data", qw(encrypted); # note: login and password are not *really* the login and # password values, only the desired prompt! my... Platforms: *nix

License: Freeware Size: 7.17 KB Download (94): Data::Encrypted Download

Added: March 02, 2010 | Visits: 933

Basset::Container::Hash Basset::Container::Hash Perl module implements a layered hash. The easiest way to explain is with an example: my %x = (a => b); tie my %y, Basset::Container::Hash, %x; #<- %x is the parent of y. print $x{a}; #prints b print $y{a}; #prints b (inherited from x) $y{a} = foo; $y{z} = bar;... Platforms: *nix

License: Freeware Size: 143.36 KB Download (94): Basset::Container::Hash Download

Added: January 24, 2010 | Visits: 1.499

CGI::WeT::Theme CGI::WeT::Theme is a Perl module with theme loader for the CGI::WeT package. SYNOPSIS use CGI::WeT::Theme (); This module provides a well-defined interface between the rendering engine and the theme definition loaders. It is designed to work with or without mod_perl. All theme loader... Platforms: *nix

License: Freeware Size: 40.96 KB Download (94): CGI::WeT::Theme Download

Added: May 25, 2010 | Visits: 792

I18NFolder I18NFolder is a product allow you to create multilingual folders. It is recommended to use I18NLayer 0.5.5 or later with I18NFolder I18NFolder supports the special language dropdown menu introduced in I18NLayer 0.5.5 which serves for easy adding of localized content. To enable this... Platforms: *nix

License: Freeware Size: 83.97 KB Download (94): I18NFolder Download

Added: February 07, 2010 | Visits: 804

Net::Server::Mail::ESMTP::XFORWARD Net::Server::Mail::ESMTP::XFORWARD is a Perl module to add support to the XFORWARD command in Net::Server::Mail::ESMTP. SYNOPSIS use Net::Server::Mail::ESMTP; my @local_domains = qw(example.com example.org); my $server = new IO::Socket::INET Listen => 1, LocalPort => 25; my $conn;... Platforms: *nix

License: Freeware Size: 15.36 KB Download (93): Net::Server::Mail::ESMTP::XFORWARD Download

Added: May 19, 2010 | Visits: 880

Whitespace Whitespace is a Perl module to cleanup various types of bogus whitespace in source files. SYNOPSIS use Whitespace; # Instantiate a whitespace object with # both input and output files specified $ws = new Whitespace($infile, $outfile); # Instantiate a whitespace object with # only the... Platforms: *nix

License: Freeware Size: 4.1 KB Download (92): Whitespace Download

Added: August 04, 2008 | Visits: 1.048

X360 Ftp Client ActiveX Control X360 Ftp Client ActiveX Control helps application developers and programmers create applications with a simple method of implementing FTP client capabilities. It allows you to access FTP functions with a single line of code. You can get the file listing within a folder on FTP server. Create new... Platforms: Windows

License: Shareware Cost: $34.90 USD Size: 1.42 KB Download (92): X360 Ftp Client ActiveX Control Download

Added: October 09, 2010 | Visits: 945

Cache::Cache Cache::Cache Perl module contains the Cache interface. The Cache modules are designed to assist a developer in persisting data for a specified period of time. Often these modules are used in web applications to store data locally to save repeated and redundant expensive calls to remote machines... Platforms: *nix

License: Freeware Size: 34.82 KB Download (91): Cache::Cache Download

Added: June 04, 2010 | Visits: 979

Tk::event Tk::event contains miscellaneous event facilities: define virtual events and generate events. SYNOPSIS $widget->eventAction(?arg, arg, ...?); The eventAction methods provides several facilities for dealing with window system events, such as defining virtual events and synthesizing events.... Platforms: *nix

License: Freeware Size: 5.7 MB Download (91): Tk::event Download

Added: September 14, 2010 | Visits: 913

Perl::Critic::Config Perl::Critic::Config is a Perl module to find and load Perl::Critic user-preferences. Perl::Critic::Config takes care of finding and processing user-preferences for Perl::Critic. The Config object defines which Policy modules will be loaded into the Perl::Critic engine and how they should be... Platforms: *nix

License: Freeware Size: 245.76 KB Download (90): Perl::Critic::Config Download

Added: February 11, 2010 | Visits: 846

Class::ParmList Class::ParmList is a Perl module with methods for processing named parameter lists. SYNOPSIS use Class::ParmList qw(simple_parms parse_parms); $thingy->some_method({ -bgcolor => #ff0000, -textcolor => #000000 }); sub some_method { my ($self) = shift; my ($parm_ref) = @_; my $parms... Platforms: *nix

License: Freeware Size: 16.38 KB Download (89): Class::ParmList Download

Added: June 06, 2010 | Visits: 830

filofant filofant project is a mail archiving and document indexing software intended for using in companies or workgroups which wants to share the knowledge embedded in their documents and emails. Installation: Currently there is no installscript, so you have to do all at your own... 1) Binaries... Platforms: *nix

License: Freeware Size: 3.1 MB Download (89): filofant Download

Added: March 17, 2010 | Visits: 648

Iterator::BreakOn Iterator::BreakOn is a Perl module to create iterators with control flow breaks. SYNOPSIS use Iterator::BreakOn; # # get a generic data source with a next method implemented whom # returns a generic object # # in this example the order of the items in the data stream is assumed # to... Platforms: *nix

License: Freeware Size: 13.31 KB Download (89): Iterator::BreakOn Download

Added: October 25, 2010 | Visits: 722

Devel::FindGlobals Devel::FindGlobals is a Perl module to find global variables and their size. SYNOPSIS use Devel::FindGlobals; print print_globals_sizes(); This module just runs around and over the symbol table, finds global variables, gets their sizes with Devel::Size, and then prints them out.... Platforms: *nix

License: Freeware Size: 3.07 KB Download (88): Devel::FindGlobals Download

Added: March 03, 2010 | Visits: 792

SILC Autodist SILC Autodist is a program which is used to manage and create source distributions. The Autodist is a source distribution management system that allows powerful mechanisms to define what is included in and excluded from a distribution, and what license the distribution is released under. It is... Platforms: *nix

License: Freeware Size: 215.04 KB Download (88): SILC Autodist Download

Released: November 28, 2014  |  Added: December 03, 2014 | Visits: 1.332

Anvisoft PC Plus Anvisoft PC Plus is an integrated desktop & system management software for Windows OS. Anvisoft PC Plus v1.0 is devote to providing comprehensive and various types solutions for different kinds of PC problems including desktop icon issues, network issues, software problems, system issues, game... Platforms: Windows, Windows 7

License: Freeware Size: 18.21 MB Download (70): Anvisoft PC Plus Download

Released: July 02, 2012  |  Added: July 02, 2012 | Visits: 606

ISSI Inno Setup Script Includes is a library of functions that can be implemented very easily into your existing setups build with Jordan Russell's Inno Setup. In the past adding some customization to Jordan Russell's Inno Setup one had to look for pieces of code and implement them into their own... Platforms: Windows

License: Freeware Size: 1.09 MB Download (66): ISSI Download

Added: May 10, 2013 | Visits: 510

Vikingboard 0.2b Vikingboard is a PHP-based community board designed by the principle of “less is more”, and features a powerful web-based extension-system, a lighting-fast cache system and dynamic web update. Small, but incredibly fast and powerful. Features: - All the standard posting features found in... Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (62): Vikingboard 0.2b Download

Added: May 10, 2013 | Visits: 889

Basic PHP Photo Album Basic PHP Photo Album is a simple photo album written in PHP to quickly and easily display photos on a web site. This is a bare bones script that does not contain anything excessive or fancy. An ideal solution for anyone that just wants to display photos. Features: - Fully customizable - Fast... Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (62): Basic PHP Photo Album Download

< 1 2 3 4 5 >