This repository was archived by the owner on Jan 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconx.php
More file actions
19 lines (16 loc) · 1.28 KB
/
conx.php
File metadata and controls
19 lines (16 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
// Cambia los datos por los tuyos.
$servername = "localhost"; // Dejar en localhost, si sabes lo que haces, cámbialo. / Keep it on localhost, if you know what are you doing, change it.
$username = "root"; // Nombre de usuario de la base de datos / Username's database.
$pw = ""; // Contraseña de la base de datos / Password's database.
$dbname = "gdps"; // Nombre de la base de datos / Database name.
$root = "http://localhost/AdminGDPS"; // Link web donde la herramienta AdminGDPS está. Ejemplo: http://gdpsjeffrey.7m.pl/AdminGDPS
// ^^ Web link where AdminGDPS tool is located. Example: http://gdpsjeffrey.7m.pl/AdminGDPS
// ^^^^^^^^^^^^^^ esto se usará para evitar errores al usar la barra de navegación.
// ^^^^^^^^^^^^^^ this will be used for avoiding errors by using the navbar.
// Lenguaje / Language
$lang = "ES"; // Change to "EN" if your language is English.
// Seguridad
$seguro = "lock" // Esta será una tipo contraseña, que se deberá poner la hacer acciones dentro de tu base de datos del servidor privado. Cuídala bien y compartela SÓLO con personas de TOTAL confianza.
// ^^^^ This will work like a password, which should be done doing actions within your private server database. Take good care of it and share it ONLY with people of TOTAL confidence.
?>