Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Bruce went to the ThemeRoller site, picked a theme, made some changes, saved it, and added it to his app.

You can serve up static pages with NetTalk, and you can insert static content through the use of Net: tags. You can also add dynamic code to static pages but that's harder work for the server and generally doesn't work out well. 

More good discussion on serving text files, including the great risks in allowing the user to pass in anything more than alphanumeric characters and periods when requesting files. You could be exposing every file on your system to download.

Bruce showed a nifty trick for determining the content type used for a given file extension.

Often you'll want to send email from your web server. You can do this synchronously or asynchronously. 

Biggest thing you can do to speed up your site is probably to enable the Combine all files setting. Second best option is to pre-compress files or compress on the fly. 

More coming later on this page... 

...