This file contains 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
<h1><?php echo __('Bienvenido') ?></h1> | |
<script> | |
alert(__('hola')); | |
</script> | |
#Ejemplo con alguna variable | |
<h1><?php echo __('Bienvenido :user',array(':user' => 'javier')) ?></h1> |
This file contains 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: Maximum function nesting level of '100' reached, aborting! in /home/www/symblog.dev/app/cache/dev/twig/c9/5b/abbe9cbf3df9d03eafcd975ad24c.php on line 7996 | |
Call Stack: | |
0.0003 235696 1. {main}() /home/www/symblog.dev/web/app_dev.php:0 | |
0.0301 2938256 2. Symfony\Component\HttpKernel\Kernel->handle() /home/www/symblog.dev/web/app_dev.php:24 | |
0.0450 3968464 3. Symfony\Bundle\FrameworkBundle\HttpKernel->handle() /home/www/symblog.dev/app/bootstrap.php.cache:547 | |
0.0451 3970280 4. Symfony\Component\HttpKernel\HttpKernel->handle() /home/www/symblog.dev/app/cache/dev/classes.php:4879 | |
0.0451 3970344 5. Symfony\Component\HttpKernel\HttpKernel->handleRaw() /home/www/symblog.dev/app/cache/dev/classes.php:3875 | |
0.0779 5360272 6. call_user_func_array() /home/www/symblog.dev/app/cache/dev/classes.php:3905 | |
0.0779 5360440 7. Blogger\BlogBundle\Controller\PageController->indexAction() /home/www/symblog.dev/app/cache/dev/classes.php:3905 |
This file contains 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 |
This file contains 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 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 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 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 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 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 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> |