You are viewing a plain text version of this content. The canonical link for it is here.
Posted to embperl@perl.apache.org by Kee Hinckley <na...@somewhere.com> on 2002/03/07 20:07:50 UTC

RE: TIEHASH error with upgrade to most recent everything

[5951]ERR: 32: Warning in Perl code: perl_tie_hash: Can't locate 
object method "TIEHASH" via package "Apache::Table" (perhaps you 
forgot to load "Apache::Table"?) at 
/usr/local/www/consulting/data/ClientTemplate.html line 143.

I'm getting that on a line that says:

my $auth = $req_rec->headers_in->{'Authorization'};

mod_perl is built with TABLE support on (I just rechecked and rebuilt 
and reinstalled to make sure, although I'm still trying some way to 
prove it at runtime).  Is this potentially an embperl2.0 problem?
-- 

Kee Hinckley - Somewhere.Com, LLC
http://consulting.somewhere.com/
nazgul@somewhere.com

I'm not sure which upsets me more: that people are so unwilling to accept
responsibility for their own actions, or that they are so eager to regulate
everyone else's.

---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org


Re: TIEHASH error with upgrade to most recent everything

Posted by Kee Hinckley <na...@somewhere.com>.
At 1:42 PM +0100 3/13/02, Gerald Richter wrote:
>  >
>>  I put a "use Apache::Table" in my code just for fun and it didn't
>>  complain, but I got the same error.  I'll keep playing with it.
>
>Then it really looks to me as if you don't have table support enabled when
>build mod_perl. Maybe you have build mod_perl with table support, but load
>another version?

It was a variety of problems.  First I was building mod_perl as a DSO 
(don't).  Then I did it correctly, but it managed to get the Darwin 
configuration and installed there, whereas I was running it in the 
Apache location....  I finally got it straightened out.  Thanks.
-- 

Kee Hinckley - Somewhere.Com, LLC
http://consulting.somewhere.com/
nazgul@somewhere.com

I'm not sure which upsets me more: that people are so unwilling to accept
responsibility for their own actions, or that they are so eager to regulate
everyone else's.

---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org


Re: TIEHASH error with upgrade to most recent everything

Posted by Gerald Richter <ri...@ecos.de>.
>
> I put a "use Apache::Table" in my code just for fun and it didn't
> complain, but I got the same error.  I'll keep playing with it.

Then it really looks to me as if you don't have table support enabled when
build mod_perl. Maybe you have build mod_perl with table support, but load
another version?

Gerald


-------------------------------------------------------------
Gerald Richter    ecos electronic communication services gmbh
Internetconnect * Webserver/-design/-datenbanken * Consulting

Post:       Tulpenstrasse 5         D-55276 Dienheim b. Mainz
E-Mail:     richter@ecos.de         Voice:    +49 6133 925131
WWW:        http://www.ecos.de      Fax:      +49 6133 925152
-------------------------------------------------------------




---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org


Re: cookies not expiring on IE.

Posted by Gerald Richter <ri...@ecos.de>.
>
> Is this an IE problem or my code is wrong?
>

Your code seems ok, I would suggest to set the option that IE should ask
always before accepting a cookie, then you can click on details and see what
you get send.

Gerald


> Andrew
>
> ++++++++++++++++++++++++++++++++++
> my $cookie1 = cookie(-name=>'A', -value=>'AAAA', -expires=>'+10m');
> my $cookie2 = cookie(-name=>'B', -value=>'BBBBBB', -expires=>'+10m');
> print header(-cookie=>[$cookie1, $cookie2]);
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
> For additional commands, e-mail: embperl-help@perl.apache.org
>
>


-------------------------------------------------------------
Gerald Richter    ecos electronic communication services gmbh
Internetconnect * Webserver/-design/-datenbanken * Consulting

Post:       Tulpenstrasse 5         D-55276 Dienheim b. Mainz
E-Mail:     richter@ecos.de         Voice:    +49 6133 925131
WWW:        http://www.ecos.de      Fax:      +49 6133 925152
-------------------------------------------------------------




---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org


cookies not expiring on IE.

Posted by Andrew Lim <an...@caltan.com>.
Hi. This might be a off-topic for this list but anyone knows anything about
this?

I sent cookie using the code below. (You see anything wrong?)
But the cookie are not seemed to be expired after 10 minutes.
I could confirm that it get's expired well on netscape but not on IE.

Is this an IE problem or my code is wrong?

Andrew

++++++++++++++++++++++++++++++++++
my $cookie1 = cookie(-name=>'A', -value=>'AAAA', -expires=>'+10m');
my $cookie2 = cookie(-name=>'B', -value=>'BBBBBB', -expires=>'+10m');
print header(-cookie=>[$cookie1, $cookie2]);


---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org


Re: TIEHASH error with upgrade to most recent everything

Posted by Kee Hinckley <na...@somewhere.com>.
At 7:03 AM +0100 3/8/02, Gerald Richter wrote:
>  > >>[5951]ERR: 32: Warning in Perl code: perl_tie_hash: Can't locate
>>  >>object method "TIEHASH" via package "Apache::Table" (perhaps you
>>  >>forgot to load "Apache::Table"?) at
>>  >>/usr/local/www/consulting/data/ClientTemplate.html line 143.
>>  >
>
>This is surely _not_ am Embperl issue.
>
>Could you see the Apache/Table.pm under your site directory?
>
>Did you load Apache::Table, e.g. use it?

I put a "use Apache::Table" in my code just for fun and it didn't 
complain, but I got the same error.  I'll keep playing with it.
-- 

Kee Hinckley - Somewhere.Com, LLC
http://consulting.somewhere.com/
nazgul@somewhere.com

I'm not sure which upsets me more: that people are so unwilling to accept
responsibility for their own actions, or that they are so eager to regulate
everyone else's.

---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org


Re: TIEHASH error with upgrade to most recent everything

Posted by Gerald Richter <ri...@ecos.de>.
> >>[5951]ERR: 32: Warning in Perl code: perl_tie_hash: Can't locate 
> >>object method "TIEHASH" via package "Apache::Table" (perhaps you 
> >>forgot to load "Apache::Table"?) at 
> >>/usr/local/www/consulting/data/ClientTemplate.html line 143.
> >

This is surely _not_ am Embperl issue. 

Could you see the Apache/Table.pm under your site directory?

Did you load Apache::Table, e.g. use it?

Gerald

-------------------------------------------------------------
Gerald Richter    ecos electronic communication services gmbh
Internetconnect * Webserver/-design/-datenbanken * Consulting

Post:       Tulpenstrasse 5         D-55276 Dienheim b. Mainz
E-Mail:     richter@ecos.de         Voice:    +49 6133 925131
WWW:        http://www.ecos.de      Fax:      +49 6133 925152
-------------------------------------------------------------



---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org


RE: TIEHASH error with upgrade to most recent everything

Posted by Kee Hinckley <na...@somewhere.com>.
At 2:17 PM -0500 3/7/02, Kee Hinckley wrote:
>At 2:07 PM -0500 3/7/02, Kee Hinckley wrote:
>>[5951]ERR: 32: Warning in Perl code: perl_tie_hash: Can't locate 
>>object method "TIEHASH" via package "Apache::Table" (perhaps you 
>>forgot to load "Apache::Table"?) at 
>>/usr/local/www/consulting/data/ClientTemplate.html line 143.
>
>Looks like a false alarm.  For some reason the first time I ran the 
>mod_perl config it did *not* update the Makefiles in the apache 
>directory.  Weird.
>--

Okay, I'm retracting my retraction.  I've tried every build option I 
can think of and I can't get it to work.
-- 

Kee Hinckley - Somewhere.Com, LLC
http://consulting.somewhere.com/
nazgul@somewhere.com

I'm not sure which upsets me more: that people are so unwilling to accept
responsibility for their own actions, or that they are so eager to regulate
everyone else's.

---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org


RE: TIEHASH error with upgrade to most recent everything

Posted by Kee Hinckley <na...@somewhere.com>.
At 2:07 PM -0500 3/7/02, Kee Hinckley wrote:
>[5951]ERR: 32: Warning in Perl code: perl_tie_hash: Can't locate 
>object method "TIEHASH" via package "Apache::Table" (perhaps you 
>forgot to load "Apache::Table"?) at 
>/usr/local/www/consulting/data/ClientTemplate.html line 143.

Looks like a false alarm.  For some reason the first time I ran the 
mod_perl config it did *not* update the Makefiles in the apache 
directory.  Weird.
-- 

Kee Hinckley - Somewhere.Com, LLC
http://consulting.somewhere.com/
nazgul@somewhere.com

I'm not sure which upsets me more: that people are so unwilling to accept
responsibility for their own actions, or that they are so eager to regulate
everyone else's.

---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org