getimagesize(upload/prices/offer/19_129.jpg): failed to open stream: No such file or directory in sys/library.php on line 737
sys/library.php
getimagesize('upload/prices/offer/19_129.jpg')
732 
733 /**
734  * @version 1.2.0
735  */
736 function image_resize_calculate($image, $pixel) {
737     if(!is_array($image)) $image = getimagesize($image);
738     $pixel = explode('x', $pixel);
739     if(sizeof($pixel) == 1) { // Nur lngste Seite ist vorgegeben
740         if($image[0] >= $image[1]) $pixel[1] = round($image[1] / ($image[0] / $pixel[0]));
741         if($image[0] < $image[1]) {
742             $pixel[1] = $pixel[0];
sys/library.php
image_resize_calculate('upload/prices/offer/19_129.jpg', '2000x')
722     return $return;
723 }
724 
725 function image_resize_url($image, $pixel, $seo = null) {
726     if(!is_array($pixel))
727         $pixel = image_resize_calculate($image, $pixel);
728     if($seo)
729         $seo = '-'.text_cleanstring($seo).'--';
730     return '/grafik/resize/'.$pixel[0].'x'.$pixel[1].'_'.str_replace('/', '-', dirname($image).'/'.$seo.basename($image));
731 }
732 
sys/library.php
image_resize_url('upload/prices/offer/19_129.jpg', '2000x')
616         $css .= $cssselector.$n.' { background-image: url(/'.$img.'); }'."\n";
617     }
618     foreach($mediaqueries as $maxwidth => $mediaquery) {
619         $css .= '@media screen and (max-width: '.$maxwidth.'px) {'."\n";
620         foreach($images as $n => $img) {
621             $onex = image_resize_url($img, $mediaquery[0]);
622             $twox = image_resize_url($img, $mediaquery[1]);
623             $threex = image_resize_url($img, $mediaquery[2]);
624             $css .= "\t".$cssselector.$n.' {'."\n";
625             $css .= "\t\t".'background-image: url('.$onex.');'."\n";
626             $css .= "\t\t".'background-image: image-set(url('.$onex.') 1x, url('.$twox.') 2x);'."\n";
template/default.php
image_background_mediaquery(Array
    (
        [0] => upload/prices/offer/19_129.jpg
    )
, Array
    (
        [3000] => Array
            (
                [0] => 2000x
                [1] => 2000x
                [2] => 2000x
            )
    
        [1500] => Array
            (
                [0] => 1500x
                [1] => 2000x
                [2] => 2000x
            )
    
        [1000] => Array
            (
                [0] => 1000x
                [1] => 2000x
                [2] => 2000x
            )
    
        [500] => Array
            (
                [0] => 500x
                [1] => 1000x
                [2] => 1500x
            )
    
    )
, '.maximage .img.n')
36     3000 => array('2000x', '2000x', '2000x'),
37     1500 => array('1500x', '2000x', '2000x'),
38     1000 => array('1000x', '2000x', '2000x'),
39     500 => array('500x', '1000x', '1500x'),
40 );
41 echo image_background_mediaquery(array_values(array_column($images, 'img')), $mediaqueries, '.maximage .img.n');
42 ?>
43     </style>
44 <?
45 }
46 ?>
sys/template.php
include('/www/htdocs/w01a2832/projekte/kunden/vettererhof.com/template/default.php')
35     $template = 'default';
36     // Individuelles Template
37     if($sys_tpl_cfg['template'])
38         $template = $sys_tpl_cfg['template'];
39     // Template wird geladen
40     include('template/'.$template.'.php');
41 
42     // Inject Code
43     if($sys_cfg['inject']) {
44         $page = ob_get_clean();
45         foreach($sys_cfg['inject'] as $array)
sys/library.php
include('/www/htdocs/w01a2832/projekte/kunden/vettererhof.com/sys/template.php')
1649  */
1650 function sys_template($include) {
1651     extract($GLOBALS, EXTR_SKIP);
1652     if(!file_exists_cache($include))
1653         $include = 'template/sys/404.php';
1654     include('sys/template.php');
1655 }
1656 
1657 /**
1658  * @version 1.0.2
1659  */
router.php
sys_template('page/preise/angebote_detail.php')
89         sys_template('page/'.$syssite[0]);
90     
91     // Physische Dateien werden geladen
92     } elseif(($navid = navigation_urlnav(SYS_URL)) && file_exists_cache($include = sys_var('menu/?/'.$navid.'/file'))) {
93         if(count(sys_var('menu/?/'.SYS_NAV.'/get') ? : array())) $_GET = array_merge($_GET, sys_var('menu/?/'.SYS_NAV.'/get'));
94         sys_template($include);
95 
96     // Content aus Datenbank wird gesucht oder die Fehlerseite angezeigt
97     } else {
98         if($content_html) {
99             if(status_check($content_html['struktur_id'], true, false))
index.php
include('/www/htdocs/w01a2832/projekte/kunden/vettererhof.com/router.php')
20 ob_start();
21 
22 session_name(str_replace(array('www.', '.'), '', $_SERVER['HTTP_HOST']));
23 @session_start();
24 
25 include('router.php');
26 
27 $debug->end($_GET['sys']);

Root Pfad: /www/htdocs/w01a2832/projekte/kunden/vettererhof.com/
Request URL: /it/prezzi/offerte/magia-invernale-a-merano-19
Referer URL:
Post Variablen: Array ( )