Ver Mensaje Individual
  #8 (permalink)  
Antiguo 01/05/2014, 11:07
potoka
 
Fecha de Ingreso: octubre-2009
Mensajes: 107
Antigüedad: 15 años
Puntos: 2
Respuesta: Problema al generar código de barras

Cita:
Iniciado por LuisUrrutia Ver Mensaje
Postea el codigo del archivo Zend.php
Es el que me dijiste, lo dejé intacto:
Código PHP:
<?php 
if (!defined('BASEPATH')) {exit('No direct script access allowed');}
 
class 
Zend
{
 
    function 
__construct()
    {
 
        
ini_set('include_path',
        
ini_get('include_path') . PATH_SEPARATOR APPPATH 'libraries');
 
    }
 
 
    function 
load($class)
    {
        require_once (string) 
$class EXT;
 
    }
}