Cannot load mod_perl (HP-UX 11.11, httpd 2.0.55, mod_perl, 64bit:)

2005-11-29 Thread Stephan Austermühle
Hi, I've compiled and installed Apache httpd 2.0.55 on HP-UX 11.11 in 64bit mode. The compilation of mod_perl 2.0.2 needed some tweaks (i.e., I had to remove the "+DD64" flag from the LDFLAGS lines in all Makefiles because ld doesn't like it) but after all it compiles without problems. Unfortunate

B-LexInfo

2005-11-29 Thread Philip M. Gollucci
Hi, Currently we have package Apache::RegistryLexInfo; @ISA = qw(Apache::RegistryNG); Should the next version which supports mod_perl 1.x and 2.x: o sub class ModPerl::RegistryBB, ModPerl::RegistryPrefork, ModPerl::Registry ? o Should it be configurable via a d

Newbie

2005-11-29 Thread Branden Johnson
I am just getting introduced to mod-perl. Can anyone point me in a direction for learning this from scratch? I have experience in VB6, VB.NET, VC+. I do not know anything about Perl, PerlScript, or mod_perl. I would like to start with the basics and learn syntax. Any help would be greatly appreci

RE: Newbie

2005-11-29 Thread Badai Aqrandista
I am just getting introduced to mod-perl. Can anyone point me in a direction for learning this from scratch? I have experience in VB6, VB.NET, VC+. I do not know anything about Perl, PerlScript, or mod_perl. I would like to start with the basics and learn syntax. Any help would be greatly app

Re: Newbie

2005-11-29 Thread Philip M. Gollucci
Badai Aqrandista wrote: I am just getting introduced to mod-perl. Can anyone point me in a direction for learning this from scratch? I suggest your look at the things mentioned in perldoc perl Also, for mod_perl http://perl.apache.org is very well done (I'm just slightly biased) -- --

Apache::Session's session size

2005-11-29 Thread Badai Aqrandista
Hi All, I am experiencing intermittently missing session data. After weeks of investigation, we suspect the size of the data we put in the session as the culprit: it is too big. So I am trying to fix it by adding Storable hooks for objects stored in the session to create smaller serialized dat

Re: Apache::Session's session size

2005-11-29 Thread Perrin Harkins
On Wed, 2005-11-30 at 14:29 +1000, Badai Aqrandista wrote: > I am experiencing intermittently missing session data. After weeks of > investigation, we suspect the size of the data we put in the session as the > culprit: it is too big. What database are you using? I thought the default data type

Re: Apache::Session's session size

2005-11-29 Thread Badai Aqrandista
Hi Perrin, What database are you using? I thought the default data types for most of them would hold a very large amount of data before having trouble. I suspect you are having locking problems or session data is not being written because the session object doesn't go out of scope. I am usin

Re: Apache::Session's session size

2005-11-29 Thread Perrin Harkins
On Wed, 2005-11-30 at 15:23 +1000, Badai Aqrandista wrote: > I am using MySQL 4.1 on debian sarge. The type of the field that hold the > session data is 'longtext'. That holds a very large amount of data. You can't be overflowing that. > Patrick Michaud pointed me off the list that i > should