Re: Can't find package AutoLoader in CGI::Application program

2003-12-08 Thread david
Jon Seidel wrote:

[snip]

 The beginning of my GroupRank.pm file looks like this:
 ///
 package GroupRank;
 use base 'CGI::Application';
 use AutoLoader;
 #use DBI;
 
 use strict;
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
 $|++;

your GroupRank.pm module doesn't seem to return a true value. change '$|++;' 
to '$|=1;' and see what happen.

david
-- 
s,.*,,e,y,\n,,d,y,.s,10,,s
.ss.s.s...s.sss.s.ss
s.s.s...s...s..s
...s.ss..s.sss..ss.sss.s
s.s.s...ss.sss.s
..s..sss.s.ss.sss...
..ssss.sss.sss.s

,{4},|?{*=}_'y!'+0!$;
,ge,y,!#:$_(-*[./[EMAIL PROTECTED],b-t,
.y...,$~=q~=?,;^_#+?{~,,$~=~
y.!-*-/:[EMAIL PROTECTED] ().;s,;,
);,g,s,s,$~s,g,y,y,%,,g,eval

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/ http://learn.perl.org/first-response




RE: Can't find package AutoLoader in CGI::Application program

2003-12-08 Thread NYIMI Jose (BMB)
Try putting
1;
As the last line of your GroupRank.pm file.

Remember that a module (*.pm file) is
supposed to return a true value.

José.

-Original Message-
From: david [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 08, 2003 7:06 PM
To: [EMAIL PROTECTED]
Subject: Re: Can't find package AutoLoader in CGI::Application program


Jon Seidel wrote:

[snip]

 The beginning of my GroupRank.pm file looks like this: 
 /// package GroupRank;
 use base 'CGI::Application';
 use AutoLoader;
 #use DBI;
 
 use strict;
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
 $|++;

your GroupRank.pm module doesn't seem to return a true value. change '$|++;' 
to '$|=1;' and see what happen.

david
-- 
s,.*,,e,y,\n,,d,y,.s,10,,s
.ss.s.s...s.sss.s.ss
s.s.s...s...s..s
...s.ss..s.sss..ss.sss.s
s.s.s...ss.sss.s
..s..sss.s.ss.sss...
..ssss.sss.sss.s

,{4},|?{*=}_'y!'+0!$;
,ge,y,!#:$_(-*[./[EMAIL PROTECTED],b-t,
.y...,$~=q~=?,;^_#+?{~,,$~=~
y.!-*-/:[EMAIL PROTECTED] ().;s,;,
);,g,s,s,$~s,g,y,y,%,,g,eval

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/ 
http://learn.perl.org/first-response




 DISCLAIMER 

This e-mail and any attachment thereto may contain information which is confidential 
and/or protected by intellectual property rights and are intended for the sole use of 
the recipient(s) named above. 
Any use of the information contained herein (including, but not limited to, total or 
partial reproduction, communication or distribution in any form) by other persons than 
the designated recipient(s) is prohibited. 
If you have received this e-mail in error, please notify the sender either by 
telephone or by e-mail and delete the material from any computer.

Thank you for your cooperation.

For further information about Proximus mobile phone services please see our website at 
http://www.proximus.be or refer to any Proximus agent.


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/ http://learn.perl.org/first-response




RE: Can't find package AutoLoader in CGI::Application program

2003-12-08 Thread Jon Seidel
Nyimi...

Thanks for your reply; I figured it out (there already was a '1' at the end 
of my module).

I had used h2xs to create the module framework... that framework requires 
exporter and then exports the name 'AutoLoader'. Once I took that out, 
everything worked fine.

Thanks again...jon

Nyimi Jose wrote:

 Try putting
 1;
 As the last line of your GroupRank.pm file.
 
 Remember that a module (*.pm file) is
 supposed to return a true value.
 
 José.
 
 -Original Message-
 From: david [mailto:[EMAIL PROTECTED]
 Sent: Monday, December 08, 2003 7:06 PM
 To: [EMAIL PROTECTED]
 Subject: Re: Can't find package AutoLoader in CGI::Application program
 
 
 Jon Seidel wrote:
 
 [snip]
 
 The beginning of my GroupRank.pm file looks like this:
 /// package GroupRank;
 use base 'CGI::Application';
 use AutoLoader;
 #use DBI;
 
 use strict;
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
 $|++;
 
 your GroupRank.pm module doesn't seem to return a true value. change
 '$|++;' to '$|=1;' and see what happen.
 
 david


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/ http://learn.perl.org/first-response