Changes between Version 48 and Version 49 of ConfigurationGuidelines


Ignore:
Timestamp:
05/29/10 20:57:32 (15 years ago)
Author:
Praneeth Bodduluri
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ConfigurationGuidelines

    v48 v49  
    159159 * point to this using Admin Panel
    160160
     161=== Error pages ===
     162Add the following to routes.py of your web2py installation for pretty error pages.
     163{{{
     164routes_onerror = [
     165        ('sahana/401', '/sahana/default/user/login'),
     166        ('sahana/*', '/sahana/errors/index'),
     167        ('*/*', '/sahana/errors/index'),
     168    ]
     169
     170
     171}}}
     172
    161173DeveloperGuidelinesThemes
    162174