Server requirements for Tubecgi
Your Server:
Must have the following installed :

- cgi-bin

- ffmpeg

- LAME (+ codec libmp3lame)

- Ruby

- Flvtool2

- PerlMagick

- ImageMagick

- Libwww

- PERL 5.0 or greater

- htaccess with "addhandler" activated

- SSI activated on .shtml pages (server side include)

- FTP access

* A decent web server will already have these installed.
If you have problems getting these standard things installed on your web server
then you should ask yourself why you are paying that hosting company.


Test Script
* Install the following perl script to see if your server has libwww and imagemagick installed.
If you get an 500 internal server error then contact your hosting service to correct the problem.

#!/usr/bin/perl

use Image::Magick;
use LWP;
use LWP::Simple;
use URI::Escape 'uri_escape';
require LWP::UserAgent;
use HTTP::Request::Common;
use MIME::Base64;
require HTTP::Headers;

print "content-type: text/html\n\n";

print "Hurray!";

exit;