Warning!

Fuel\Core\PhpErrorException [ Warning ]:
getimagesize(/home/c132owkel9qr/public_html/uploads/images/PICTURE/Kia_Moning%202010/kinh-chieu-hau-moning-10-1.jpg): failed to open stream: No such file or directory

COREPATH/classes/image/gd.php @ line 324

319            $width  imagesx($filename);
320            $height imagesy($filename);
321        }
322        else
323        {
324            list($width$height) = getimagesize($filename);
325        }
326        return (object) array('width' => $width'height' => $height);
327    }
328
329    public function save($filename null$permissions null)

Backtrace

  1. COREPATH/bootstrap.php @ line 103
    98        include COREPATH.'classes/errorhandler.php';
    99        class_alias('\Fuel\Core\Errorhandler''Errorhandler');
    100        class_alias('\Fuel\Core\PhpErrorException''PhpErrorException');
    101    }
    102
    103    return \Errorhandler::error_handler($severity$message$filepath$line);
    104});
    105
    106function setup_autoloader()
    107{
    108    \Autoloader::add_namespace('Fuel\\Core'COREPATH.'classes/');
    
  2. COREPATH/classes/image/gd.php @ line 324
    319            $width  imagesx($filename);
    320            $height imagesy($filename);
    321        }
    322        else
    323        {
    324            list($width$height) = getimagesize($filename);
    325        }
    326        return (object) array('width' => $width'height' => $height);
    327    }
    328
    329    public function save($filename null$permissions null)
    
  3. COREPATH/classes/image/gd.php @ line 37
    32
    33        // Check if the function exists
    34        if (function_exists('imagecreatefrom'.$image_extension))
    35        {
    36            // Create a new transparent image.
    37            $sizes $this->sizes($image_fullpath);
    38            $tmpImage call_user_func('imagecreatefrom'.$image_extension$image_fullpath);
    39            $image $this->create_transparent_image($sizes->width$sizes->height$tmpImage);
    40            if ( ! $return_data)
    41            {
    42                $this->image_data $image;
    
  4. COREPATH/classes/image.php @ line 119
    114     * @param   mixed    $force_extension    Whether or not to force the image extension
    115     * @return  Image_Driver
    116     */
    117    public static function load($filename$return_data false$force_extension false)
    118    {
    119        return static::instance()->load($filename$return_data$force_extension);
    120    }
    121
    122    /**
    123     Crops the image using coordinates or percentages.
    124     *
    
  5. APPPATH/classes/controller/layout/product.php @ line 252
    247            $image_url Uri::base() . 'shares/' $file_name .'.'$file_ext;
    248
    249            if (File::exists(Uri::base() . 'shares/' $file_name .'.'$file_ext)) {
    250                $image $image_url;
    251            } elseif ($picture) {
    252                Image::load(substr(DOCROOT0, -1) . $picture)->resize(600315truetrue)->save($full_path);
    253                $image $image_url;
    254            }
    255        }
    256
    257        return strtolower($image);
    
  6. APPPATH/classes/controller/layout/product.php @ line 84
    79            }
    80
    81            $page                       $this->get_pagination($category['link'] . '.html'Model_Product::count_all($condition), array(), 28);
    82            $data['products']           = Model_Product::get_lists($page->offset$page->per_pagenull$condition);
    83            foreach ($data['products'] as $p_key => $product) {
    84                $data['products'][$p_key]['share_img'] = $this->get_share_image($product['picture']);
    85            }
    86            View::set_global('navigation'$this->get_navigation($category['list_parent_id']) . ' >> ' $category['title'], false);
    87
    88            $this->template->og_image   $this->get_share_image($category['picture']);
    89            $this->template->content    View::forge('layout/product/product-category'$data);
    
  7. COREPATH/classes/request.php @ line 454
    449                    // fire any controller started events
    450                    \Event::instance()->has_events('controller_started') and \Event::instance()->trigger('controller_started''''none');
    451
    452                    $class->hasMethod('before') and $class->getMethod('before')->invoke($this->controller_instance);
    453
    454                    $response $action->invokeArgs($this->controller_instance$this->method_params);
    455
    456                    $class->hasMethod('after') and $response $class->getMethod('after')->invoke($this->controller_instance$response);
    457
    458                    // fire any controller finished events
    459                    \Event::instance()->has_events('controller_finished') and \Event::instance()->trigger('controller_finished''''none');
    
  8. DOCROOT/index.php @ line 71
    66            $response Response::forge($response);
    67        }
    68    }
    69    elseif ($e === false)
    70    {
    71        $response Request::forge()->execute()->response();
    72    }
    73    elseif ($route)
    74    {
    75        $response Request::forge($routefalse)->execute(array($e))->response();
    76    }
    
  9. DOCROOT/index.php @ line 92
    87{
    88    // Boot the app...
    89    require APPPATH.'bootstrap.php';
    90
    91    // ... and execute the main request
    92    $response $routerequest();
    93}
    94catch (HttpBadRequestException $e)
    95{
    96    $response $routerequest('_400_'$e);
    97}