Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pantallas
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Rolando Neira
pantallas
Commits
ddaa6627
Commit
ddaa6627
authored
Dec 23, 2019
by
Rolando Neira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Agregando archivos de configuración
parent
ddaefaab
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
210 additions
and
5 deletions
+210
-5
.gitignore
.gitignore
+0
-5
.htaccess
.htaccess
+7
-0
constants.php
application/config/constants.php
+107
-0
database.php
application/config/database.php
+96
-0
No files found.
.gitignore
View file @
ddaa6627
/application/config/database.php
/application/config/constants.php
.htaccess
.index.php
\ No newline at end of file
.htaccess
0 → 100644
View file @
ddaa6627
DirectoryIndex
index.php
RewriteEngine
on
RewriteCond
$1 !^(index\.php|(.*)\.swf|forums|images|css|downloads|jquery|js|robots\.txt|favicon\.ico)
RewriteCond
%{REQUEST_FILENAME} !-f
RewriteCond
%{REQUEST_FILENAME} !-d
RewriteRule
^(.*)$ ./index.php?$1 [L,QSA]
application/config/constants.php
0 → 100644
View file @
ddaa6627
<?php
defined
(
'BASEPATH'
)
OR
exit
(
'No direct script access allowed'
);
/*
|--------------------------------------------------------------------------
| Display Debug backtrace
|--------------------------------------------------------------------------
|
| If set to TRUE, a backtrace will be displayed along with php errors. If
| error_reporting is disabled, the backtrace will not display, regardless
| of this setting
|
*/
defined
(
'SHOW_DEBUG_BACKTRACE'
)
OR
define
(
'SHOW_DEBUG_BACKTRACE'
,
TRUE
);
/*
|--------------------------------------------------------------------------
| File and Directory Modes
|--------------------------------------------------------------------------
|
| These prefs are used when checking and setting modes when working
| with the file system. The defaults are fine on servers with proper
| security, but you may wish (or even need) to change the values in
| certain environments (Apache running a separate process for each
| user, PHP under CGI with Apache suEXEC, etc.). Octal values should
| always be used to set the mode correctly.
|
*/
defined
(
'FILE_READ_MODE'
)
OR
define
(
'FILE_READ_MODE'
,
0644
);
defined
(
'FILE_WRITE_MODE'
)
OR
define
(
'FILE_WRITE_MODE'
,
0666
);
defined
(
'DIR_READ_MODE'
)
OR
define
(
'DIR_READ_MODE'
,
0755
);
defined
(
'DIR_WRITE_MODE'
)
OR
define
(
'DIR_WRITE_MODE'
,
0755
);
/*
|--------------------------------------------------------------------------
| File Stream Modes
|--------------------------------------------------------------------------
|
| These modes are used when working with fopen()/popen()
|
*/
defined
(
'FOPEN_READ'
)
OR
define
(
'FOPEN_READ'
,
'rb'
);
defined
(
'FOPEN_READ_WRITE'
)
OR
define
(
'FOPEN_READ_WRITE'
,
'r+b'
);
defined
(
'FOPEN_WRITE_CREATE_DESTRUCTIVE'
)
OR
define
(
'FOPEN_WRITE_CREATE_DESTRUCTIVE'
,
'wb'
);
// truncates existing file data, use with care
defined
(
'FOPEN_READ_WRITE_CREATE_DESTRUCTIVE'
)
OR
define
(
'FOPEN_READ_WRITE_CREATE_DESTRUCTIVE'
,
'w+b'
);
// truncates existing file data, use with care
defined
(
'FOPEN_WRITE_CREATE'
)
OR
define
(
'FOPEN_WRITE_CREATE'
,
'ab'
);
defined
(
'FOPEN_READ_WRITE_CREATE'
)
OR
define
(
'FOPEN_READ_WRITE_CREATE'
,
'a+b'
);
defined
(
'FOPEN_WRITE_CREATE_STRICT'
)
OR
define
(
'FOPEN_WRITE_CREATE_STRICT'
,
'xb'
);
defined
(
'FOPEN_READ_WRITE_CREATE_STRICT'
)
OR
define
(
'FOPEN_READ_WRITE_CREATE_STRICT'
,
'x+b'
);
/*
|--------------------------------------------------------------------------
| Exit Status Codes
|--------------------------------------------------------------------------
|
| Used to indicate the conditions under which the script is exit()ing.
| While there is no universal standard for error codes, there are some
| broad conventions. Three such conventions are mentioned below, for
| those who wish to make use of them. The CodeIgniter defaults were
| chosen for the least overlap with these conventions, while still
| leaving room for others to be defined in future versions and user
| applications.
|
| The three main conventions used for determining exit status codes
| are as follows:
|
| Standard C/C++ Library (stdlibc):
| http://www.gnu.org/software/libc/manual/html_node/Exit-Status.html
| (This link also contains other GNU-specific conventions)
| BSD sysexits.h:
| http://www.gsp.com/cgi-bin/man.cgi?section=3&topic=sysexits
| Bash scripting:
| http://tldp.org/LDP/abs/html/exitcodes.html
|
*/
defined
(
'EXIT_SUCCESS'
)
OR
define
(
'EXIT_SUCCESS'
,
0
);
// no errors
defined
(
'EXIT_ERROR'
)
OR
define
(
'EXIT_ERROR'
,
1
);
// generic error
defined
(
'EXIT_CONFIG'
)
OR
define
(
'EXIT_CONFIG'
,
3
);
// configuration error
defined
(
'EXIT_UNKNOWN_FILE'
)
OR
define
(
'EXIT_UNKNOWN_FILE'
,
4
);
// file not found
defined
(
'EXIT_UNKNOWN_CLASS'
)
OR
define
(
'EXIT_UNKNOWN_CLASS'
,
5
);
// unknown class
defined
(
'EXIT_UNKNOWN_METHOD'
)
OR
define
(
'EXIT_UNKNOWN_METHOD'
,
6
);
// unknown class member
defined
(
'EXIT_USER_INPUT'
)
OR
define
(
'EXIT_USER_INPUT'
,
7
);
// invalid user input
defined
(
'EXIT_DATABASE'
)
OR
define
(
'EXIT_DATABASE'
,
8
);
// database error
defined
(
'EXIT__AUTO_MIN'
)
OR
define
(
'EXIT__AUTO_MIN'
,
9
);
// lowest automatically-assigned error code
defined
(
'EXIT__AUTO_MAX'
)
OR
define
(
'EXIT__AUTO_MAX'
,
125
);
// highest automatically-assigned error code
/**** USER DEFINED CONSTANTS **********/
define
(
'ROLE_ADMIN'
,
'1'
);
define
(
'ROLE_MANAGER'
,
'2'
);
define
(
'ROLE_EMPLOYEE'
,
'3'
);
define
(
'SEGMENT'
,
2
);
/************************** EMAIL CONSTANTS *****************************/
define
(
'EMAIL_FROM'
,
'Your from email'
);
// e.g. email@example.com
define
(
'EMAIL_BCC'
,
'Your bcc email'
);
// e.g. email@example.com
define
(
'FROM_NAME'
,
'CIAS Admin System'
);
// Your system name
define
(
'EMAIL_PASS'
,
'Your email password'
);
// Your email password
define
(
'PROTOCOL'
,
'smtp'
);
// mail, sendmail, smtp
define
(
'SMTP_HOST'
,
'Your smtp host'
);
// your smtp host e.g. smtp.gmail.com
define
(
'SMTP_PORT'
,
'25'
);
// your smtp port e.g. 25, 587
define
(
'SMTP_USER'
,
'Your smtp user'
);
// your smtp user
define
(
'SMTP_PASS'
,
'Your smtp password'
);
// your smtp password
define
(
'MAIL_PATH'
,
'/usr/sbin/sendmail'
);
\ No newline at end of file
application/config/database.php
0 → 100644
View file @
ddaa6627
<?php
defined
(
'BASEPATH'
)
OR
exit
(
'No direct script access allowed'
);
/*
| -------------------------------------------------------------------
| DATABASE CONNECTIVITY SETTINGS
| -------------------------------------------------------------------
| This file will contain the settings needed to access your database.
|
| For complete instructions please consult the 'Database Connection'
| page of the User Guide.
|
| -------------------------------------------------------------------
| EXPLANATION OF VARIABLES
| -------------------------------------------------------------------
|
| ['dsn'] The full DSN string describe a connection to the database.
| ['hostname'] The hostname of your database server.
| ['username'] The username used to connect to the database
| ['password'] The password used to connect to the database
| ['database'] The name of the database you want to connect to
| ['dbdriver'] The database driver. e.g.: mysqli.
| Currently supported:
| cubrid, ibase, mssql, mysql, mysqli, oci8,
| odbc, pdo, postgre, sqlite, sqlite3, sqlsrv
| ['dbprefix'] You can add an optional prefix, which will be added
| to the table name when using the Query Builder class
| ['pconnect'] TRUE/FALSE - Whether to use a persistent connection
| ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
| ['cache_on'] TRUE/FALSE - Enables/disables query caching
| ['cachedir'] The path to the folder where cache files should be stored
| ['char_set'] The character set used in communicating with the database
| ['dbcollat'] The character collation used in communicating with the database
| NOTE: For MySQL and MySQLi databases, this setting is only used
| as a backup if your server is running PHP < 5.2.3 or MySQL < 5.0.7
| (and in table creation queries made with DB Forge).
| There is an incompatibility in PHP with mysql_real_escape_string() which
| can make your site vulnerable to SQL injection if you are using a
| multi-byte character set and are running versions lower than these.
| Sites using Latin-1 or UTF-8 database character set and collation are unaffected.
| ['swap_pre'] A default table prefix that should be swapped with the dbprefix
| ['encrypt'] Whether or not to use an encrypted connection.
|
| 'mysql' (deprecated), 'sqlsrv' and 'pdo/sqlsrv' drivers accept TRUE/FALSE
| 'mysqli' and 'pdo/mysql' drivers accept an array with the following options:
|
| 'ssl_key' - Path to the private key file
| 'ssl_cert' - Path to the public key certificate file
| 'ssl_ca' - Path to the certificate authority file
| 'ssl_capath' - Path to a directory containing trusted CA certificats in PEM format
| 'ssl_cipher' - List of *allowed* ciphers to be used for the encryption, separated by colons (':')
| 'ssl_verify' - TRUE/FALSE; Whether verify the server certificate or not ('mysqli' only)
|
| ['compress'] Whether or not to use client compression (MySQL only)
| ['stricton'] TRUE/FALSE - forces 'Strict Mode' connections
| - good for ensuring strict SQL while developing
| ['ssl_options'] Used to set various SSL options that can be used when making SSL connections.
| ['failover'] array - A array with 0 or more data for connections if the main should fail.
| ['save_queries'] TRUE/FALSE - Whether to "save" all executed queries.
| NOTE: Disabling this will also effectively disable both
| $this->db->last_query() and profiling of DB queries.
| When you run a query, with this setting set to TRUE (default),
| CodeIgniter will store the SQL statement for debugging purposes.
| However, this may cause high memory usage, especially if you run
| a lot of SQL queries ... disable this to avoid that problem.
|
| The $active_group variable lets you choose which connection group to
| make active. By default there is only one group (the 'default' group).
|
| The $query_builder variables lets you determine whether or not to load
| the query builder class.
*/
$active_group
=
'default'
;
$query_builder
=
TRUE
;
$db
[
'default'
]
=
array
(
'dsn'
=>
''
,
'hostname'
=>
'localhost'
,
'username'
=>
'root'
,
'password'
=>
''
,
'database'
=>
'pantallasdb'
,
'dbdriver'
=>
'mysqli'
,
'dbprefix'
=>
''
,
'pconnect'
=>
FALSE
,
'db_debug'
=>
(
ENVIRONMENT
!==
'production'
),
'cache_on'
=>
FALSE
,
'cachedir'
=>
''
,
'char_set'
=>
'utf8'
,
'dbcollat'
=>
'utf8_general_ci'
,
'swap_pre'
=>
''
,
'encrypt'
=>
FALSE
,
'compress'
=>
FALSE
,
'stricton'
=>
FALSE
,
'failover'
=>
array
(),
'save_queries'
=>
TRUE
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment