Este documento explica paso a paso cómo instalar Apache2, PHP 8.4 y un conjunto de extensiones esenciales para entornos de desarrollo web en Ubuntu 22.04 o superior.
sudo apt install software-properties-common gnupg2 -yEste documento explica paso a paso cómo instalar Apache2, PHP 8.4 y un conjunto de extensiones esenciales para entornos de desarrollo web en Ubuntu 22.04 o superior.
sudo apt install software-properties-common gnupg2 -y| <h1>Crear usuario</h1> | |
| <?php View::content() ?> | |
| <?= Form::open() ?> | |
| <div class="row"> | |
| <div class="six columns"> | |
| <label>Nombre | |
| <?= Form::text('user.name', 'required') ?> | |
| </label> | |
| </div> |
Primero que todo debes tener instalado git en tu equipo, una cuenta en https://github.com/ y debes iniciar sesión.
Ir al repositorio del framework: https://github.com/KumbiaPHP/KumbiaPHP
Hacer clic en el botón "fork", esto creará en tu cuenta una copia completa del
| <?php | |
| . | |
| . | |
| . | |
| if (Input::hasPost('login', 'password') && HsCsrf::validate()) { | |
| //Intenta la autenticación | |
| return self::doAuthenticate(); | |
| } |
Primero que todo debes tener instalado git en tu equipo, una cuenta en https://github.com/ y debes iniciar sesión.
Ir al repositorio del framework: https://github.com/KumbiaPHP/KumbiaPHP
Hacer clic en el botón "fork", esto creará en tu cuenta una copia completa del
| public static String consultar(String strUrl) throws Exception { | |
| String xml = ""; | |
| String inputLine = ""; | |
| try { | |
| // Install the custom authenticator | |
| Authenticator.setDefault(new MyAuthenticator()); | |
| //Conexion a la URL | |
| URL url = new URL(strUrl); | |
| URLConnection wsConnection = url.openConnection(); | |
| //Lector de de la respuesta |
| <?php | |
| /** | |
| * KumbiaPHP web & app Framework | |
| * | |
| * LICENSE | |
| * | |
| * This source file is subject to the new BSD license that is bundled | |
| * with this package in the file LICENSE.txt. | |
| * It is also available through the world-wide-web at this URL: |
| <?php | |
| /** | |
| * Backend - KumbiaPHP Backend | |
| * PHP version 5 | |
| * LICENSE | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU Affero General Public License as | |
| * published by the Free Software Foundation, either version 3 of the |