This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
| <title></title> | |
| </head> | |
| <body> | |
| <div> | |
| <h2>Registrarse</h2> | |
| <?php if(isset($errors['register'])):?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php defined('SYSPATH') or die('No direct script access.'); | |
| /** | |
| * | |
| * Model_Users | |
| * | |
| * Modelo/entidad de la tabla users | |
| * | |
| * @author Javier | |
| * @package backend | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| p,div,span,a,#discussion_single #responses .comment_content p,p.note,a.button, input.button[type="button"], input.button[type="submit"]{font-size:<?php echo $fontsize ?>px;} | |
| </style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <style> | |
| .contenedor-que-indica-el-ancho { width:250px; } | |
| .b1, .b2, .b3, .b4{font-size:1px; overflow:hidden; display:block;} | |
| .b1 {height:1px; background:#D1D1D1; margin:0 5px;} | |
| .b2 {height:1px; background:#fff; border-right:2px solid #D1D1D1; border-left:2px solid #D1D1D1; margin:0 3px;} | |
| .b3 {height:1px; background:#fff; border-right:1px solid #D1D1D1; border-left:1px solid #D1D1D1; margin:0 2px;} | |
| .b4 {height:2px; background:#fff; border-right:1px solid #D1D1D1; border-left:1px solid #D1D1D1; margin:0 1px;} | |
| .contentb {background: #fff; border-right:1px solid #D1D1D1; border-left:1px solid #D1D1D1;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Suma() | |
| { | |
| public $sum; | |
| public function addSumando($sum) | |
| { | |
| $this->sum += $sum; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- phpMyAdmin SQL Dump | |
| -- version 3.4.5 | |
| -- http://www.phpmyadmin.net | |
| -- | |
| -- Servidor: localhost | |
| -- Tiempo de generación: 28-01-2012 a las 19:55:23 | |
| -- Versión del servidor: 5.5.16 | |
| -- Versión de PHP: 5.3.8 | |
| SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Fatal error: session_start(): Failed to initialize storage module: files (path: ) in /usr/share/phpmyadmin/libraries/session.inc.php on line 82 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root@debianj:/home/javier# ./configure --with-apxs2=/usr/bin/apxs2 --with-mysql --with-zlib --with-gettext --with-mcrypt --enable-soap --enable-sockets --with-pdo-mysql --with-mysqli --with-config-file-path=/etc/php5/apache2/ --with-config-file-scan-dir=/etc/php5/ --enable-mbstring --with-openssl --enable-sockets --with-gd --with-pcre-regex |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Kohana_Exception extends Kohana_Kohana_Exception { | |
| static public function handler(Exception $e) | |
| { | |
| if (Kohana::$environment === Kohana::DEVELOPMENT) | |
| { | |
| parent::handler($e); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Kohana_Exception extends Kohana_Kohana_Exception { | |
| static public function handler(Exception $e) | |
| { | |
| Kohana::$log->add(Kohana_Log::ERROR, Kohana_Exception::text($e)); | |
| $request = array( | |
| // 500 error by default |