Запарился с установкой на localhost Ikonboard 3.1.1
Ругается на файл installer.cgi. Пишет что:
E:\Apache\cgi-bin\iconboard3>installer.cgi
Perl lib version (v5.6.1) doesn't match executable version (v5.6.0) at E:/Apache/Perl/lib/Config.pm
line 21.
Compilation failed in require at E:/Apache/Perl/lib/lib.pm line 4.
BEGIN failed--compilation aborted at E:/Apache/Perl/lib/lib.pm line 4.
Compilation failed in require at E:\Apache\cgi-bin\iconboard3\installer.cgi line 53.
BEGIN failed--compilation aborted at E:\Apache\cgi-bin\iconboard3\installer.cgi line 53.
---
А сам код installer.cgi выглядит так:
#!/usr/bin/perl
package iB;
use strict;
#####################################################Ikonboard by Matthew Mecham [ v3.0 ]##| No parts of this script can be used outside Ikonboard#without prior consent.#You must keep this header intact and all copyright#links visable.##| (c)2001 Jarvis Entertainment Group, Inc.#Web: <http://www.ikonboard.com>#Email: ib@ikonboard.com#IRC Server : irc.ikonboard.com# Port : #6667# Channels : #ikonboard #help #support##| Please Read the licence for more information.
####################################################
####################################################
#
# P R O G R A M S E T - U P
#
# If the installer has requested it, please following
# the instructions below.
#
#
# PART ONE:
# What is the path to this script?
# Please follow the example below by adding a trailing
# slash
my $full_path = 'E:\Apache\cgi-bin\iconboard3';
# What extension do you use for CGI scripts?
# NT folks may want to use pl
#my $ext = 'cgi';
# Change the use lib information below to reflect your
# full paths.
# Example:
# Change './' to '/home/board/www/stuff/'
# and './install_modules' to '/home/board/www/stuff/install_modules'
use lib (
'E:\Apache\cgi-bin\iconboard3',
'E:\Apache\cgi-bin\iconboard3\Sources',
'E:\Apache\cgi-bin\iconboard3\install_modules',
);
#
# END OF SET UP
и т.д.
А может подключать их по отдельности:
use lib 'E:\Apache\cgi-bin\iconboard3';
use lib 'E:\Apache\cgi-bin\iconboard3\Sources';
use lib 'E:\Apache\cgi-bin\iconboard3\install_modules';