-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allowing for developers to override settings on developer machines
- Loading branch information
Eric Washburn
committed
Apr 16, 2015
1 parent
83295af
commit 2e22580
Showing
3 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
/* | ||
* Copy this file to local.settings.php in order to override configuration within settings.php | ||
* local.settings.php is ignored by git and not deployed to Pantheon | ||
*/ | ||
$databases['default']['default'] = array( | ||
'driver' => 'mysql', | ||
'database' => 'kalamuna_playbox', | ||
'username' => 'root', | ||
'password' => 'root', | ||
'host' => 'localhost', | ||
'port' => '8889', | ||
'prefix' => '', | ||
); | ||
|
||
$update_free_access = TRUE; | ||
|
||
|
||
$base_url = 'http://'.$_SERVER['HTTP_HOST'].'/kalamuna/playbox'; // NO trailing slash! | ||
$cookie_domain = $_SERVER['HTTP_HOST']; | ||
|
||
#disables Drupal Caching if desired | ||
/*$conf = array( | ||
'cache' => '0', | ||
'preprocess_css' => '0', | ||
'preprocess_js' => '0', | ||
'block_cache' => '0', | ||
'page_compression' => '0', | ||
);*/ | ||
|
||
ini_set('memory_limit', '500M'); | ||
ini_set('max_execution_time', 300); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters