mod_perl

DEVELOPER'S COOKBOOK

GEOFFREY YOUNG
PAUL LINDNER
RANDY KOBES
 Home  |  Reviews  |  Table of Contents  |  Sample Chapters  |  Source Code  |  Authors  |  Errata  |  Resources  |  Contact  Purchase Now 
  
 Errata

The below lists (unfortunate) errata contained in the second printing. You can tell which printing you have by checking the inside front cover - the second printing says Second printing with corrections: November 2002. If you have the first printing, you can check for errata in that edition here instead.

In cases where the errors are in the code itself, the sources in our code repository are usually corrected immediately.

You can report book errors or omissions to errata-at-modperlcookbook.org.


Page 339
Reported 10-26-2002
Reported By Kevin Berggren
Description the regex

(^.*\.pl$)

in the discussion should be the same as illustrated in the configuration on page 338

(^.*\.pl)$
Response thanks Kevin
Status

Page 361
Reported 11-24-2002
Reported By Ron Savage
Description the configuration

PerlSetVar protectedScript /login.html

should be

PerlSetVar protectedLoginScript /login.html
Response thanks Ron
Status

Page 547
Reported 11-13-2002
Reported By John Heitmann
Description the line

my $fields = join "$_,", keys %columns;

doesn't need the inline $_ and is better written as

my $fields = join ', ', keys %columns;
Response thanks John
Status


You can report book errors or omissions to errata-at-modperlcookbook.org.