|
|
|
| решил поставить посмотре чего такоое bugzilla. Так он очень много модулей просит под перл.
Вот значит прога которая эты модули првоеряет.
K:\Perl>perl D:\www\bugzilla\checksetup.pl --check-modules
* This is Bugzilla 3.0 on perl 5.8.8
* Running on WinXP/.Net Build 2600 (Service Pack 2)
Checking perl modules...
Checking for CGI (v2.93) ok: found v3.20
Checking for TimeDate (v2.21) ok: found v2.22
Checking for DBI (v1.41) ok: found v1.52
Checking for PathTools (v0.84) ok: found v3.12
Checking for Template-Toolkit (v2.12) ok: found v2.15
Checking for Email-Send (v2.16) found v2.05
Checking for Email-MIME-Modifier (any) ok: found v1.440
Checking available perl DBD modules...
Checking for DBD-Pg (v1.45) not found
Checking for DBD-mysql (v2.9003) ok: found v3.0002
The following Perl modules are optional:
Checking for GD (v1.20) ok: found v2.16
Checking for Template-GD (any) ok: found v1.56
Checking for Chart (v1.0) ok: found v2.3
Checking for GDGraph (any) ok: found v1.43
Checking for GDTextUtil (any) ok: found v0.86
Checking for XML-Twig (any) ok: found v3.26
Checking for MIME-tools (v5.406) ok: found v5.417
Checking for libwww-perl (any) ok: found v2.033
Checking for PatchReader (v0.9.4) ok: found v0.9.5
Checking for PerlMagick (any) not found
Checking for perl-ldap (any) ok: found v0.34
Checking for SOAP-Lite (any) ok: found v0.55
Checking for HTML-Parser (v3.40) ok: found v3.56
Checking for HTML-Scrubber (any) ok: found v0.08
Checking for Email-MIME-Attachment-Stripper (any) ok: found v1.3
Checking for Email-Reply (any) ok: found v1.200
Checking for mod_perl (v1.999022) ok: found v2.000003
Checking for CGI (v3.11) ok: found v3.20
Checking for Apache-DBI (v0.96) ok: found v1.06
* NOTE: You must run any commands listed below as Administrator.
***********************************************************************
* Note For Windows Users *
***********************************************************************
* In order to install the modules listed below, you first have to run *
* the following command as an Administrator: *
* *
* ppm repo add theory58S http://theoryx5.uwinnipeg.ca/ppms *
* *
* Then you have to do (also as an Administrator): *
* *
* ppm repo up theory58S *
* *
* Do that last command over and over until you see "theory58S" at the *
* top of the displayed list. *
***********************************************************************
***********************************************************************
* REQUIRED MODULES *
***********************************************************************
* Bugzilla requires you to install some Perl modules which are either *
* missing from your system, or the version on your system is too old. *
* *
* The latest versions of each module can be installed by running the *
* commands below. *
***********************************************************************
COMMANDS:
ppm install Email-Send
**********************************************************************
* OPTIONAL MODULES *
**********************************************************************
* Certain Perl modules are not required by Bugzilla, but by *
* installing the latest version you gain access to additional *
* features. *
* *
* The optional modules you do not have installed are listed below, *
* with the name of the feature they enable. If you want to install *
* one of these modules, just run the appropriate command in the *
* "COMMANDS TO INSTALL" section. *
**********************************************************************
***********************************************************************
* MODULE NAME * ENABLES FEATURE(S) *
***********************************************************************
* PerlMagick * Optionally Convert BMP Attachments to PNGs *
***********************************************************************
COMMANDS TO INSTALL:
PerlMagick: ppm install PerlMagick
|
Как видите после проверки осталось поставить только 2 модуля.
-PerlMagick
-Email-Send
но сколько я их не пытался поставить он мне пишет:
K:\Perl>ppm install PerlMagick
ppm install failed: Can't find any package that provide PerlMagick
K:\Perl>ppm install Email-Send
No missing packages to install
Добавлял другие источники ppm's, если для отслаьных пакетов это помогло, то для этих двух не в какую. | |
|
|
|
|
|
|
|
для: Бамси
(27.07.2007 в 20:41)
| | Попробуй складировать модули в папке скрипта. Если не удобно, попробуй создать папку удобную, например, modules и добавь путь до нее в массив @INC следующим образом:
use lib "путь до папки с модулями";
|
| |
|
|
|