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

Show
Ignore:
Timestamp:
07/20/10 12:01:58 (22 months ago)
Author:
tboutell
Message:

Comments explaining when and how to modify web/index.php (we at P'unk should leave it alone so
Symfony devs see what they expect; once you've cloned this into your own repo though, go ahead
and change it if you wish).

Separate superadmin and admin test users in the default fixtures (we recommend pulling the
plug on superadmin before you hand the keys to your client)

Location:
sandboxes/asandbox/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • sandboxes/asandbox/trunk

  • sandboxes/asandbox/trunk/web/index.php

    r1365 r1803  
    44require_once(dirname(__FILE__).'/../config/ProjectConfiguration.class.php'); 
    55 
     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 
    615$configuration = ProjectConfiguration::getApplicationConfiguration('frontend', 'prod', false); 
    716sfContext::createInstance($configuration)->dispatch();