#!/usr/bin/perl

# ADDED BY VICTOR 

use strict;
use warnings;
#use CGI::Carp qw (fatalsToBrowser); # TO SHOW ERRORS ON PAGE

# THIS SCRIPT IS USED TO SET BASE FOLDER _ FOR NEW SERVER UBUNTU LINUX PLESK
use FindBin qw( $RealBin );
use lib $RealBin;

# END ADDED BY VICTOR

# ORIGINAL TW SCRIPT

use twenv; #compile time so other 'use' find /libapp!
use twinit;

####################################################################
# In mod_perl, the cgi script is wrapped into a function that gets #
# the request object (Apache2::RequestRec) as the first parameter. #
# The request is undefined when not using mod_perl.                #
####################################################################
my $request = shift(@_);

twinit->ignite($request);

sub main
{
}