Skip to content

Commit

Permalink
[TASK] Move localconf.php to LocalConfiguration.php
Browse files Browse the repository at this point in the history
This will fix a fatal in master. localconf.php will still be
there to be used in 4.7 branch.
  • Loading branch information
lolli42 committed Aug 24, 2012
1 parent 477bb7c commit 13cf796
Showing 1 changed file with 95 additions and 0 deletions.
95 changes: 95 additions & 0 deletions typo3conf/LocalConfiguration.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<?php
return array(
'BE' => array(
'createGroup' => 'vagrant',
'disable_exec_function' => 0,
'fileCreateMask' => '0664',
'folderCreateMask' => '2774',
'forceCharset' => 'utf-8',
'installToolPassword' => 'bacb98acf97e0b6112b1d1b650b84971',
'versionNumberInFilename' => '0',
),
'DB' => array(
'database' => 'typo3_test',
'host' => 'localhost',
'password' => '',
'username' => 'root',
),
'EXT' => array(
'extConf' => array(
'workspaces' => 'a:0:{}',
),
'extList' => 'extbase,fluid,info,perm,func,filelist,about,tsconfig_help,context_help,extra_page_cm_options,impexp,sys_note,tstemplate,tstemplate_ceditor,tstemplate_info,tstemplate_objbrowser,tstemplate_analyzer,func_wizards,wizard_crpages,wizard_sortpages,lowlevel,install,belog,beuser,aboutmodules,setup,taskcenter,info_pagetsconfig,viewpage,rtehtmlarea,css_styled_content,t3skin,t3editor,reports,felogin,form,phpunit',
'extListArray' => array(
'extbase',
'fluid',
'info',
'perm',
'func',
'filelist',
'about',
'tsconfig_help',
'context_help',
'extra_page_cm_options',
'impexp',
'sys_note',
'tstemplate',
'tstemplate_ceditor',
'tstemplate_info',
'tstemplate_objbrowser',
'tstemplate_analyzer',
'func_wizards',
'wizard_crpages',
'wizard_sortpages',
'lowlevel',
'install',
'belog',
'beuser',
'aboutmodules',
'setup',
'taskcenter',
'info_pagetsconfig',
'viewpage',
'rtehtmlarea',
'css_styled_content',
't3skin',
't3editor',
'reports',
'felogin',
'form',
'phpunit',
),
),
'FE' => array(
'addRootLineFields' => 'backend_layout',
'lifetime' => '604800',
'logfile_dir' => 'localsettings/logs/',
'pageNotFound_handling' => '/404/',
),
'GFX' => array(
'gdlib_png' => '1',
'im_noScaleUp' => '1',
'im_path' => '/usr/bin/',
'im_version_5' => 'im6',
'TTFdpi' => '96',
'thumbnails_png' => '1',
'jpg_quality' => '80',
),
'INSTALL' => array(
'wizardDone' => array(),
),
'SYS' => array(
'devIPmask' => ',192.168.1.*',
'displayErrors' => '1',
'doNotCheckReferer' => '1',
'enable_DLOG' => 'enable_DLOG',
'enableDeprecationLog' => 'file',
'encryptionKey' => 'Travis Tests',
'forceReturnPath' => '1',
'setDBinit' => 'SET NAMES utf8',
'sitename' => 'New TYPO3 site',
'sqlDebug' => '1',
'UTF8filesystem' => '1',
),
);
?>

0 comments on commit 13cf796

Please sign in to comment.