Thomas See below.
Cheers Ron Savage [EMAIL PROTECTED] http://savage.net.au/index.html > > When I tried the "make test" from the mod_perl installation I had an error > > saying that the module URI couldn't be found. I then downloaded and > > installed the URI module from cpan.org: URI-1.18 and now I get the following > > error: > > > > /usr/bin/perl t/TEST 0 > > Can't locate object method "new" via package "URI::URL" at > > ../blib/lib/Apache/te > > st.pm line 252. > I ran into the same problem yesterday. I 'solved' it by adding > use URI::URL; > to blib/lib/Apache/test.pm > > Does anyone know why this fails or how to fix it properly? If I recall, years ago the module was called URI::URL, and is now called URI. _If_ they are method-call compatible, you could change the source from use URI::URL; to use URI;