To participate you must create an account on apostrophenow.org. If you have already done so, click Login.

Changeset 1802

Show
Ignore:
Timestamp:
07/20/10 11:59:50 (22 months ago)
Author:
tboutell
Message:

Changed debug flag back to false (probably my own fault this time), added a comment for us and a comment for others about when and how to edit this file

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • sandboxes/asandbox/branches/1.4/web/index.php

    r1659 r1802  
    44require_once(dirname(__FILE__).'/../config/ProjectConfiguration.class.php'); 
    55 
    6 $configuration = ProjectConfiguration::getApplicationConfiguration('frontend', 'prod', true); 
     6// P'UNK TEAM: DO NOT change this file, use frontend_dev.php if you want dev or debug output etc. 
     7// Changing this file creates problems for everyone else who expects a production environment here. 
     8// Don't change the environment, don't change the debug flag. 
     9 
     10// EVERYONE ELSE: of course you should feel free to change this in your own download of the project. 
     11// Our preferred approach is to rsync exclude this file and have it be a dev environment on our 
     12// local boxes and a production environment on production. But that's not the Symfony default, 
     13// which we're trying to stick with here to help folks see what they expect to see. 
     14 
     15$configuration = ProjectConfiguration::getApplicationConfiguration('frontend', 'prod', false); 
    716sfContext::createInstance($configuration)->dispatch();