Errata

Web Site Cookbook

Errata for Web Site Cookbook

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
6.8-Discussion
Second line of code under heading Discussion

There is an errant semicolon at the end of <rss version="2.0">.

KatieK  Oct 09, 2012 
Printed Page 18
4th paragraph, Apache re-write code

The code given for the rewrite engine is wrong. It has an error in the second line
($1 is meaningless as the source) and extra white space in the 3rd and 4th lines.
The correct code is:

RewriteEngine On

RewriteCond %{REQUEST_URI} !^/htdocs/
RewriteRule (.*) /htdocs/$1 [L]

RewriteCond %{THE_REQUEST} ^[A-Z]+ /htdocs/
RewriteRule .* - [F]

Anonymous   
Printed Page 162
Recipe 7.1, 5th paragraph under "Discussion"

"This effectively disables the submit button until the three required fields in the form have been filled in. You also can put the JavaScript code in a function"

It most certainly does NOT "effectively disable" the submit button.

Anonymous