getimagesize(upload/news/134_981.jpg): failed to open stream: No such file or directory in sys/library.php on line 799
sys/library.php
getimagesize('upload/news/134_981.jpg')
794 /**
795  * @version 1.2.1
796  */
797 function image_resize_calculate($image, $pixel) {
798     if(!is_array($image))
799         $image = getimagesize($image);
800     $pixel = explode('x', $pixel);
801     if(sizeof($pixel) == 1) { // Nur längste Seite ist vorgegeben
802         if($image[0] >= $image[1])
803             $pixel[1] = round($image[1] / ($image[0] / $pixel[0]));
804         if($image[0] < $image[1]) {
sys/library.php
image_resize_calculate('upload/news/134_981.jpg', '2500x')
783 /**
784  * @version 1.0.0
785  */
786 function image_resize_url($image, $pixel, $seo = null) {
787     if(!is_array($pixel))
788         $pixel = image_resize_calculate($image, $pixel);
789     if($seo)
790         $seo = '-'.text_cleanstring($seo).'--';
791     return '/grafik/resize/'.$pixel[0].'x'.$pixel[1].'_'.str_replace('/', '-', dirname($image).'/'.$seo.basename($image));
792 }
793 
sys/library.php
image_resize_url('upload/news/134_981.jpg', '2500x', 'Vinschgau Cup 2025 a Laces')
650         $css .= $cssselector.$n.' { background-image: url(/'.$image['img'].'); }'."\n";
651     foreach($mediaqueries as $maxwidth => $mediaquery) {
652         $css .= '@media screen and (max-width: '.$maxwidth.'px) {'."\n";
653         foreach($images as $n => $image) {
654             extract($image);
655             $onex = image_resize_url($img, $mediaquery[0], $alt);
656             $onexw = image_size_resizeurl($onex, 0);
657             $twox = image_resize_url($img, $mediaquery[1], $alt);
658             $twoxw = image_size_resizeurl($twox, 0);
659             $threex = image_resize_url($img, $mediaquery[2], $alt);
660             $threexw = image_size_resizeurl($threex, 0);
template/default.php
image_background_mediaquery(Array
    (
        [0] => Array
            (
                [img] => upload/news/134_981.jpg
                [alt] => Vinschgau Cup 2025 a Laces
            )
    
    )
, Array
    (
        [2500] => Array
            (
                [0] => 2500x
                [1] => 2500x
                [2] => 2500x
            )
    
        [2000] => Array
            (
                [0] => 2000x
                [1] => 2500x
                [2] => 2500x
            )
    
        [1500] => Array
            (
                [0] => 1500x
                [1] => 2500x
                [2] => 2500x
            )
    
        [1000] => Array
            (
                [0] => 1000x
                [1] => 2000x
                [2] => 2500x
            )
    
        [500] => Array
            (
                [0] => 500x
                [1] => 1000x
                [2] => 1500x
            )
    
    )
, '#panorama > div.n')
41         2000 => array('2000x', '2500x', '2500x'),
42         1500 => array('1500x', '2500x', '2500x'),
43         1000 => array('1000x', '2000x', '2500x'),
44         500 => array('500x', '1000x', '1500x'),
45     );
46     echo image_background_mediaquery($sys_tpl_cfg['panorama']['image'], $mediaqueries, '#panorama > div.n');
47 }
48 
49 include 'template/includes/tablecolors.php';
50 ?>
51     </style>
sys/template.php
include('/www/htdocs/w01a2832/projekte/kunden/vivalatsch.it/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/vivalatsch.it/sys/template.php')
1763  */
1764 function sys_template($include) {
1765     extract($GLOBALS, EXTR_SKIP);
1766     if(!file_exists_cache($include))
1767         $include = 'template/sys/404.php';
1768     include('sys/template.php');
1769 }
1770 
1771 /**
1772  * @version 1.0.2
1773  */
router.php
sys_template('page/news.php')
15 
16     header('Content-Language: '.SYS_LANG);
17 
18     // URL Rewrite
19     if((SYS_URL == '/'.SYS_LANG.'/'.sys_var('navigation/urlrewrite/'.SYS_NAV.'/'.$sys_url['lang']) || strpos(SYS_NAV, '?')) && file_exists_cache(sys_var('navigation/active/file'))) {
20         sys_template(sys_var('navigation/active/file'));
21     // Sprachordner
22     } elseif($sys_url['lang'] == SYS_LANG && !$sys_url['site']) {
23         if($_SERVER['QUERY_STRING']) $_SERVER['QUERY_STRING'] = '?'.$_SERVER['QUERY_STRING'];
24         header_location(sys_var('menu/?/'.sys_var('navigation/default').'/url'));
25     // Shortlinks
index.php
include('/www/htdocs/w01a2832/projekte/kunden/vivalatsch.it/router.php')
19 ob_start();
20 
21 session_name(str_replace(array('www.', '.'), '', $_SERVER['HTTP_HOST']));
22 @session_start();
23 
24 include('router.php');
25 
26 $debug->end($_GET['sys']);

Root Pfad: /www/htdocs/w01a2832/projekte/kunden/vivalatsch.it/
Request URL: /it/134/145/vinschgau-cup-2025-a-laces-134
Referer URL:
Post Variablen: Array ( )