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.229.669 Times

Cgi freeware
Filter: All | Freeware | Demo
 

Cgi

< 1 2 3 4 5 > 
Added: February 13, 2010 | Visits: 1.209

CGI-Shell CGI-Shell provides a shell using CGI, so everyone who has a CGI directory on a Web server can also have a shell on it. It is something like telnet or SSH. How to install? make make install (you have to be root) How to uninstall? make uninstall (you have to be root) The server is...



Platforms: *nix

License: Freeware Size: 225.28 KB Download (106): CGI-Shell Download

Added: March 17, 2010 | Visits: 1.126

lisp-cgi-utils lisp-cgi-utils is a CGI library for Common Lisp. It implements a very basic HTTP/CGI interface (sending headers, getting GET/POST and environment variables) and offers tools for easier HTML generation with special support for handling HTML forms. lisp-cgi-utils also supports HTTP cookies for...





Platforms: *nix

License: Freeware Size: 31.74 KB Download (104): lisp-cgi-utils Download

Added: November 06, 2010 | Visits: 1.614

CGI::WeT::Modules::News CGI::WeT::Modules::News are Perl extensions to engine to allow article management. SYNOPSIS use CGI::WeT::Modules::News (); This module provides rendering constructs to allow navigation through a set of articles. Support is provided for multiple types of articles in multiple groupings (or...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (104): CGI::WeT::Modules::News Download

Added: July 14, 2010 | Visits: 1.698

Mon.cgi Mon.cgi is a CGI interface for viewing the status of a Mon service. mon is a general-purpose scheduler and alert management tool used for monitoring service availability and triggering alerts upon failure detection. mon was designed to be open and extensible in the sense that it supports...


Platforms: *nix

License: Freeware Size: 44.03 KB Download (104): Mon.cgi Download

Added: September 08, 2010 | Visits: 1.193

CGI::Simple CGI::Simple is a simple totally OO CGI interface that is CGI.pm compliant. SYNOPSIS use CGI::Simple; $CGI::Simple::POST_MAX = 1024; # max upload via post default 100kB $CGI::Simple::DISABLE_UPLOADS = 0; # enable uploads $q = new CGI::Simple; $q = new CGI::Simple( { foo=>1, bar=>[2,3,4] }...


Platforms: *nix

License: Freeware Size: 84.99 KB Download (103): CGI::Simple Download

Added: March 01, 2010 | Visits: 986

CGI::Application::Generator CGI::Application::Generator is a Perl module with dynamically build CGI::Application modules. SYNOPSIS use CGI::Application::Generator; # Required methods my $cat = CGI::Application::Generator->new(); $cat->package_name(My::Widget::Browser); $cat->start_mode(list_widgets);...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (103): CGI::Application::Generator Download

Added: August 12, 2010 | Visits: 1.124

simple_cgi_email simple_cgi_email is a very simple CGI script for sending email from an HTML form. Uses LAFmessage internally and runs on both Win32 and Linux (and possibly other Unix-like OSes). simple_cgi_email is meant to provide a quick-n-dirty way to send email from an HTML form. Its output is fairly...


Platforms: *nix

License: Freeware Size: 358.4 KB Download (103): simple_cgi_email Download

Added: March 23, 2010 | Visits: 1.020

mod_ruby mod_ruby is an Apache module that embeds the Ruby interpreter into the Apache web server, allowing Ruby CGI scripts to be executed natively. These scripts will start up much faster than without mod_ruby. You can also extend Apache by mod_ruby. mod_ruby provides Apache API to Ruby..


Platforms: *nix

License: Freeware Size: 102.4 KB Download (103): mod_ruby Download

Added: April 23, 2010 | Visits: 1.204

mod_actions mod_actions is an Apache module that provides functions for executing CGI scripts based on media type or request method. This module has two directives. The Action directive lets you run CGI scripts whenever a file of a certain type is requested. The Script directive lets you run CGI scripts...


Platforms: *nix

License: Freeware Download (103): mod_actions Download

Added: April 24, 2010 | Visits: 1.277

CGI::NoPoison CGI::NoPoison is No Poison Null Byte in CGI->Vars. SYNOPSIS use CGI; use CGI::NoPoison my $m = CGI->new(); $m->param( -name=>amplifier, -value=>[nine, ten, up to eleven], ); my %h = $m->Vars(); # look ma, no splitting on poison null-bytes ( )! print "$_ => ", join ", ", @{$h{$_}}...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (102): CGI::NoPoison Download

Added: March 11, 2010 | Visits: 923

Urluminator Urluminator is a project which log URLs that urlsnarf sees to a database and view with a CGI script. Urluminator uses urlsnarf to capture URLs that traverse the network and log them to a MySQL database. It also includes a CGI script that allows you to view and search the DB. From the CGI you...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (102): Urluminator Download

Added: January 04, 2010 | Visits: 1.045

CGI::Validate CGI::Validate is an advanced CGI form parser and type validation. SYNOPSIS use CGI::Validate; # GetFormData() only use CGI::Validate qw(:standard); # Normal use use CGI::Validate qw(:subs); # Just functions use CGI::Validate qw(:vars); # Just exception vars ## If you dont want it to...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (101): CGI::Validate Download

Added: July 19, 2010 | Visits: 824

CGI::FormBuilder CGI::FormBuilder is a Perl module to easily generate and process stateful forms. SYNOPSIS use CGI::FormBuilder; # Assume we did a DBI query to get existing values my $dbval = $sth->fetchrow_hashref; # First create our form my $form = CGI::FormBuilder->new( name => acctinfo, method =>...


Platforms: *nix

License: Freeware Size: 163.84 KB Download (101): CGI::FormBuilder Download

Added: November 14, 2010 | Visits: 1.377

Authenticated User Community Authenticated User Community project is a CGI-based intranet system for K-12 settings. AUC (Authenticated User Community) is an intranet system designed for use in an educational organization but is also useful in many other settings. It offers the ability for users to have a uniform...


Platforms: *nix

License: Freeware Size: 3.3 MB Download (101): Authenticated User Community Download

Added: September 23, 2010 | Visits: 2.359

CGI::Application::Plugin::Authentication::Store CGI::Application::Plugin::Authentication::Store is a base module for building storage classes for the CGI::Application::Plugin::Authentication plugin. SYNOPSIS package CGI::Application::Plugin::Authentication::Store::MyStore; use base qw(CGI::Application::Plugin::Authentication::Store);...


Platforms: *nix

License: Freeware Size: 47.1 KB Download (100): CGI::Application::Plugin::Authentication::Store Download

Added: October 06, 2010 | Visits: 1.028

CGI::Ex::App CGI::Ex::App is a anti-framework application framework. Fill in the blanks and get a ready made web application. This module is somewhat similar in spirit to CGI::Application, CGI::Path, and CGI::Builder and any other "CGI framework." As with the others, CGI::Ex::App tries to do as much of the...


Platforms: *nix

License: Freeware Size: 215.04 KB Download (100): CGI::Ex::App Download

Added: June 15, 2010 | Visits: 1.335

CGI::Minimal CGI::Minimal is a lightweight CGI form processing package. SYNOPSIS # use CGI::Minimal qw(:preload); use CGI::Minimal; my $cgi = CGI::Minimal->new; if ($cgi->truncated) { &scream_about_bad_form; exit; } my $form_field_value = $cgi->param(some_field_name); Provides a micro-weight...


Platforms: *nix

License: Freeware Size: 29.7 KB Download (99): CGI::Minimal Download

Added: August 06, 2010 | Visits: 1.510

CGI::WeT::Modules::Calendar CGI::WeT::Modules::Calendar are Perl extensions to engine to allow calendar management. SYNOPSIS use CGI::WeT::Modules::Calendar (); This module provides rendering constructs to allow navigation through a set of calendars. Support is provided for multiple types of events in multiple...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (99): CGI::WeT::Modules::Calendar Download

Added: May 22, 2010 | Visits: 1.044

eformmail eformmail project is a stand-alone CGI program that accepts an HTML form and emails it. The target email address is not buried in the HTML form, making it impossible for spammers to take advantage of this email address. The output can be formatted by an XSLT processor, and form fields can be...


Platforms: *nix

License: Freeware Size: 75.78 KB Download (99): eformmail Download

Added: February 25, 2010 | Visits: 1.449

Bundle::Application::Magic Bundle::Application::Magic is a a bundle to install CGI::Application::Magic plus all related prerequisites. SYNOPSIS perl -MCPAN -e install Bundle::Application::Magic CONTENTS HTML::Tagset - used by HTML::Parser HTML::Parser - used by HTML::FillInForm and HTML::TableTiler...


Platforms: *nix

License: Freeware Size: 34.82 KB Download (99): Bundle::Application::Magic Download

< 1 2 3 4 5 >