-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
135 lines (119 loc) · 5.04 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
/**
* This file is part of P4A - PHP For Applications.
*
* P4A is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
* P4A is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with P4A. If not, see <http://www.gnu.org/licenses/lgpl.html>.
*
* To contact the authors write to: <br />
* CreaLabs SNC <br />
* Via Medail, 32 <br />
* 10144 Torino (Italy) <br />
* Website: {@link http://www.crealabs.it} <br />
* E-mail: {@link mailto:[email protected] [email protected]}
*
* @author Andrea Giardina <[email protected]>
* @author Fabrizio Balliano <[email protected]>
* @copyright CreaLabs SNC
* @link http://www.crealabs.it
* @link http://p4a.sourceforge.net
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
* @package p4a
*/
/**
* *********Traducción No Oficial *********
* Este archivo es parte de P4A - PHP Para Aplicaciones
*
* P4A es Software Libre: usted puede redistribuirlo y/o modificarlo
* bajo los términos de la GNU Lesser Licencia Pública General Menor (Lesser General Public License) tal y como está
* publicada por la Fundación de Software Libre, en la versión 3 de
* la Lincecia, o (a su elección) alguna versión posterior.
*
* P4A es distribuido con la esperanza de que pueda serle útil,
* pero SIN NINGUNA GARANTÍA; sin siquiera la garantía implicita de
* COMERCIABILIDAD o IDIONIDAD PARA UN PROPÓSITO PARTICULAR. Vea la
* GNU Licencia Pública General Menor (Lesser General Public License) para más detalles.
*
* Usted debería tener una copia de la GNU Licencia Pública General Menor (GNU Lesser General Public License)
* junto con P4A. Sí no, vea <http://www.gnu.org/licenses/lgpl.html>.
*
* Para contactar a los autores escriba a: <br />
* CreaLabs SNC <br />
* Via Medail, 32 <br />
* 10144 Torino (Italy) <br />
* Website: {@link http://www.crealabs.it} <br />
* E-mail: {@link mailto:[email protected] [email protected]}
*
* @author Andrea Giardina <[email protected]>
* @author Fabrizio Balliano <[email protected]>
* @copyright CreaLabs SNC
* @link http://www.crealabs.it
* @link http://p4a.sourceforge.net
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
* @package p4a
*/
/**
* Sistema de Información para la Organización Comunitaria
* Desarrollado por
* Software:
* @author Cesar Carbonara <[email protected]>
* Documentos:
* @author Leonardo Lobo <[email protected]>
* Asesoría y apoyo:
* @author Leonardo Caballero <[email protected]>
* Durante le proceso académico para la obtención del título
* Ingeniero en Informática
* Programa Nacional de Formación en Informática
* Instituto Universitario Tecnológico de Ejido
*
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
* @copyleft 2010
*
* @package SIOC
*/
// Select application's locale
define("P4A_LOCALE", 'es_VE');
// Engine Database Connection type
define("P4A_DSN_ENGINEDB", "pgsql");
// Database User
define("P4A_DSN_USER", "usuario");
// Database Password
define("P4A_DSN_PASSWORD", "usuario");
// Database Host
define("P4A_DSN_HOST", "localhost");
// Database Name
define("P4A_DSN_DB", "apoyacomunidad");
// Database Port Connection
define("P4A_DSN_PORT", "5432");
// Connect to the database (if you want you can add "?charset=YOURCHARSET" to the DSN)
define("P4A_DSN", "".P4A_DSN_ENGINEDB."://".P4A_DSN_USER.":".P4A_DSN_PASSWORD."@".P4A_DSN_HOST."/".P4A_DSN_DB."");
// Enable logging and profiling of all DB actions
//define("P4A_DB_PROFILE", true);
// Enable more error details
//define("P4A_EXTENDED_ERRORS", true);
// Disable AJAX during the development phase, it will allows you
// a faster debug, enable it on the production server
// define("P4A_AJAX_ENABLED", false);
// Path (on server) where P4A will write all code transferred via AJAX
// define("P4A_AJAX_DEBUG", "/tmp/p4a_ajax_debug.txt");
require_once 'p4a.php';
// Check Installation and configuration.
// This lines should be removed after the first run.
$check = p4a_check_configuration();
// Here we go
if (is_string($check)) {
print $check;
} else {
$p4a = p4a::singleton("base");
$p4a->main();
}