Table 'd045345d.sys_files' doesn't exist
Error Nr.: 1146
Query: SELECT `copyright` FROM `sys_files` WHERE `copyright` IS NOT NULL OR `copyright` != '' in sys/class/mysql.php on line 114
sys/library.php
getArray('SELECT `copyright` FROM files WHERE `copyright` IS NOT NULL OR `copyright` != ''', null, 'copyright')
658  * @version 1.0.0
659  */
660 function getFilesCopyrights() {
661     $copyrights = array();
662     $query = "SELECT `copyright` FROM files WHERE `copyright` IS NOT NULL OR `copyright` != ''";
663     $copyrights = Mysql::inst()->getArray($query, null, 'copyright');
664     if($copyrights)
665         $copyrights = array_unique($copyrights);
666     return $copyrights;
667 }
668 
template/sys/credits.php
getFilesCopyrights()
38 if(function_exists('getWebsiteSiteImageCopyright'))
39     $websitePageImageCopyright = getWebsiteSiteImageCopyright();
40 if(function_exists('getWebsiteImagesCopyright'))
41     $websiteImagesCopyright = getWebsiteImagesCopyright();
42 
43 $filesCopyright = getFilesCopyrights();
44 
45 $copyrights = array_merge($filesCopyright, $pageImageCopyrights, $websitePageImageCopyright, $websiteImagesCopyright);
46 if($copyrights)
47     $copyrights = array_unique($copyrights);
48 
sys/template.php
include('/www/htdocs/w01a2832/projekte/kunden/bodenverbesserungskonsortium.it/template/sys/credits.php')
08 
09 // Die Seite wird geladen und in Variable gespeichert
10 $debug->timeStart('template page');
11 if(SYS_AMP && file_exists_cache($ampfile = str_replace('.php', '.amp.php', $include)))
12     $include = $ampfile;
13 include($include);
14 $debug->timeEnd('template page');
15 $page = trim(ob_get_clean());
16 
17 // Neuer Ausgabe Buffer wird gestartet
18 ob_start('ob_gzhandler');
sys/library.php
include('/www/htdocs/w01a2832/projekte/kunden/bodenverbesserungskonsortium.it/sys/template.php')
2225  */
2226 function sys_template($include) {
2227     extract($GLOBALS, EXTR_SKIP);
2228     if(!file_exists_cache($include))
2229         $include = 'template/sys/404.php';
2230     include('sys/template.php');
2231 }
2232 
2233 /**
2234  * @version 1.0.2
2235  */
router.php
sys_template('template/sys/credits.php')
24 
25     header('Content-Language: '.SYS_LANG);
26 
27     // URL Rewrite
28     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'))) {
29         sys_template(sys_var('navigation/active/file'));
30     // Sprachordner
31     } elseif($sys_url['lang'] == SYS_LANG && !$sys_url['site']) {
32         if($_SERVER['QUERY_STRING']) $_SERVER['QUERY_STRING'] = '?'.$_SERVER['QUERY_STRING'];
33         header_location(sys_var('menu/?/'.sys_var('navigation/default').'/url'));
34     // Shortlinks
index.php
include('/www/htdocs/w01a2832/projekte/kunden/bodenverbesserungskonsortium.it/router.php')
23 @session_start();
24 
25 $driver = new mysqli_driver();
26 $driver->report_mode = MYSQLI_REPORT_OFF;
27 
28 include('router.php');
29 
30 $debug->end($_GET['sys']);

Root Pfad: /www/htdocs/w01a2832/projekte/kunden/bodenverbesserungskonsortium.it/
Request URL: /de/impressum
Referer URL:
Post Variablen: Array ( )