in reply to Net:Google:Calender fails to run

When I comment it out I get a 500 Internal server error!?

And when I start it before the CGI::Carp like this, i get the same 500 error:

#!/usr/bin/perl -w print "Content-Type: text/html\n\n"; use CGI; use Net::Google::Calendar; use CGI::Carp qw( fatalsToBrowser ); use Date::Calc qw(:all); use HTTP::Request::Common; use LWP::UserAgent; use Time::Local; use File::Copy; use File::Path; use PDF::Create; use PDF::CreateSimple; use DBI; use Geo::IP; use MIME::Base64 qw(encode_base64); $query = new CGI;

Replies are listed 'Best First'.
Re^2: Net:Google:Calender fails to run (log)
by tye (Sage) on Apr 06, 2014 at 17:49 UTC

    And what does the web server error log show in that case?

    My best guess at the most likely problem is that you don't have libxml installed correctly.

    - tye