You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
I just downloaded the new and improved script and installed it. I had the original installation to the point where I had a registration screen but could not register. After uploading the new files I get the following:
Script Execution Error
The following error was just encountered:
DBI object version 1.14 does not match $DBI::VERSION 1.30 at /usr/lib/perl5/5.6.0/i386-linux/DynaLoader.pm line 219, <DATA> line 64.
Help!!!!
Your host is running a very old version of DBI. You can try this:
In the file ./cgi-bin/library/common/initialize.pl
Edit the lines:
use lib "$server_script_path/modules";
push @INC,"$server_script_path/dbi";
To read:
push @INC,"$server_script_path/modules";
push @INC,"$server_script_path/dbi";
If that doesn't work, try changing them to:
use lib "$server_script_path/modules";
use lib "$server_script_path/dbi";
Or have your host upgrade DBI to version 1.30. They can download it from:
http://www.perl.com/CPAN-local/modules/ … .30.tar.gz
Offline
Thanks, I am having updates done on my server this afternoon and hopefully this module will be updated. I will wait until then and try it again.