Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the CPAN-Mini CPAN distribution.

Report information
The Basics
Id: 93195
Status: resolved
Priority: 0/
Queue: CPAN-Mini

People
Owner: Nobody in particular
Requestors: Irwin.Binder [...] marseille-port.fr
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: unable to contact the remote mirror
Date: Thu, 20 Feb 2014 15:50:26 +0000
To: "bug-CPAN-Mini [...] rt.cpan.org" <bug-CPAN-Mini [...] rt.cpan.org>
From: Binder Irwin <Irwin.Binder [...] marseille-port.fr>
Hi, I wanna try to make a mini repository, but have always this error message : < unable to contact the remote mirror > I have good right with my proxy, Tryed to open Internet with LWR :UserAgent, everything is OK But when i launch minicpam (the binary, or perl code) same error. For proxy settings, I use env settings (export proxy_http) Thanks.
On 2014-02-20 10:50:40, Irwin.Binder@marseille-port.fr wrote: Show quoted text
> < unable to contact the remote mirror >
The code that gives that error is: Carp::croak "unable to contact the remote mirror" unless eval { $self->__lwp->head($test_uri)->is_success }; I suggest you edit CPAN/Mini.pm to do this: my $res = $self->__lwp->head($test_uri); unless ($res->is_success) { warn $res->as_string; Carp::croak "unable to contact remote mirror"; } That should give you more information. If that doesn't help, re-open this ticket and let me know what you found! -- rjbs