You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Luis 'Champs' de Carvalho <ch...@tbn.com.br> on 2000/09/26 16:26:43 UTC

It just stopped work...

	
	Hi, list people...
	I have a serious problem here... 
	I'm building a rewriting proxy for my apache with mod_perl.
	(Source code here: http://www.sourceforge.net/projects/myproxy/)
	Have a nice beta release... 
	So i decided that it was time to refresh the perl libs.
	Started the CPAN module in shell mode and asked for a 'install
Bundle::CPAN', and for a 'install LWP' followed by a 'install HTTP HTML
URI'.
	All install requests completed successfully.
	
	Since that, my perl handler just stops work with a message like
this:

	=============================================

[Tue Sep 26 10:50:07 2000] [notice] Apache/1.3.9 (Unix) Debian/GNU
mod_ssl/2.4.10 OpenSSL/0.9.4 mod_perl/1.21_03-dev configured -- resuming
normal operations

[Tue Sep 26 10:50:07 2000] [notice] suEXEC mechanism enabled
(wrapper: /usr/lib/apache/suexec)

[Tue Sep 26 10:50:43 2000] [error] Can't locate object method "schema" via
package "URI::http" at /usr/local/lib/site_perl/URI/WithBase.pm line 48.

	==============================================

	Allways at the first request.
	
	I don't know what to do!
	Please, help me!!
	[]'z!

 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 Luis 'Champs' de Carvalho   @@   @@       @@
 SysAdmin at TBN             @@   @@       @@
 mail to:champs@tbn.com.br @@@@@@ @@@@ @@@@@@
 http://www.tbn.com.br/    @@@@@@ @@@@ @@@@@@
 Phone: +55(011)3845.5964    @@   @@@@ @@
 "There's no spoon."         @@   @@@@ @@
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=





Re: It just stopped work...

Posted by Doug MacEachern <do...@covalent.net>.
On Tue, 26 Sep 2000, Luis 'Champs' de Carvalho wrote:
 
> [Tue Sep 26 10:50:43 2000] [error] Can't locate object method "schema" via
                                                                      ^
> package "URI::http" at /usr/local/lib/site_perl/URI/WithBase.pm line 48.

line 48 is an AUTOLOAD routine:
    $self->[0]->$method(@_);

looks like your code is calling '$uri->schema', rather than '$uri->scheme'