Skip to content

Commit c8b1109

Browse files
author
Leonid Vakulenko
committed
Better config examples.
1 parent 6dd9ac4 commit c8b1109

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

wa-config/SystemConfig.class.php.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<?php
22

3+
//ini_set('display_errors', 1);
4+
//error_reporting(E_ALL);
5+
36
require_once realpath(dirname(__FILE__).'/../').'/wa-system/autoload/waAutoload.class.php';
47
waAutoload::register();
58

wa-config/apps.php.example

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<?php
22

33
return array(
4-
'contacts' => true,
4+
'team' => true,
5+
// 'developer' => true,
6+
// 'contacts' => true,
57
'site' => true,
68
'blog' => true,
79
'photos' => true,

wa-config/config.php.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
return array (
33
'debug' => true,
4-
'backend_url' => 'admin',
5-
'mod_rewrite' => true
4+
// 'backend_url' => 'admin', // default is 'webasyst'
5+
'mod_rewrite' => true,
66
);

0 commit comments

Comments
 (0)