1. Liebe Forumsgemeinde,

    aufgrund der Bestimmungen, die sich aus der DSGVO ergeben, müssten umfangreiche Anpassungen am Forum vorgenommen werden, die sich für uns nicht wirtschaftlich abbilden lassen. Daher haben wir uns entschlossen, das Forum in seiner aktuellen Form zu archivieren und online bereit zu stellen, jedoch keine Neuanmeldungen oder neuen Kommentare mehr zuzulassen. So ist sichergestellt, dass das gesammelte Wissen nicht verloren geht, und wir die Seite dennoch DSGVO-konform zur Verfügung stellen können.
    Dies wird in den nächsten Tagen umgesetzt.

    Ich danke allen, die sich in den letzten Jahren für Hilfesuchende und auch für das Forum selbst engagiert haben. Ich bin weiterhin für euch erreichbar unter tti(bei)pcwelt.de.
    Dismiss Notice

PC-WELT Forum Archiv

Discussion in 'Ihre Meinung zum Internetauftritt der PC-WELT' started by deoroller, Jan 25, 2014.

Thread Status:
Not open for further replies.
  1. deoroller

    deoroller Wandelndes Forum

    Wenn ich das http://www.pcwelt.de/forum/archive/index.php/ mit SeaMonkey öffnen will, kommt das:

    [​IMG]


    Beim Opera 12.16 (mit Seiten spezifischer Einstellung "als Firefox ausgeben") will er auch wissen, was zu tun ist.

    Der IE11 zeigt den Code an.
    Code:
    <?php
    /*======================================================================*\
    || #################################################################### ||
    || # vBulletin 4.2.0 Patch Level 3 - Licence Number VBC10C95CC
    || # ---------------------------------------------------------------- # ||
    || # Copyright ©2000-2013 vBulletin Solutions Inc. All Rights Reserved. ||
    || # This file may not be redistributed in whole or significant part. # ||
    || # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
    || # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
    || #################################################################### ||
    \*======================================================================*/
    
    // ####################### SET PHP ENVIRONMENT ###########################
    error_reporting(E_ALL & ~E_NOTICE);
    
    // #################### DEFINE IMPORTANT CONSTANTS #######################
    define('SESSION_BYPASS', 1);
    define('THIS_SCRIPT', 'archive');
    
    // ################### PRE-CACHE TEMPLATES AND DATA ######################
    $phrasegroups = array('forum');
    $specialtemplates = array();
    
    // ######################### REQUIRE BACK-END ############################
    require_once('./global.php');
    require_once(DIR . '/includes/functions_bigthree.php');
    
    // #######################################################################
    // ######################## START MAIN SCRIPT ############################
    // #######################################################################
    
    if (SLASH_METHOD AND strpos($archive_info , '/archive/index.php') === false)
    {
    	exec_header_redirect($vbulletin->options['bburl'] . '/archive/index.php' . $vbulletin->session->vars['sessionurl_q']);
    }
    
    // parse query string
    $f = 0;
    $p = 0;
    $t = 0;
    $output = '';
    
    
    $endbit = $vbulletin->input->strip_sessionhash($archive_info);
    $endbit = str_replace(array('pda=1', 'login=1', '.html'), '', $endbit);
    $endbit = rtrim($endbit, '&?');
    
    if (SLASH_METHOD)
    {
    	$endbit = substr(strrchr($endbit, '/') , 1);
    }
    else if (strpos($endbit, '&') !== false)
    {
    	$endbit = substr(strrchr($endbit, '&') , 1);
    }
    
    if ($endbit != '' AND $endbit != 'index.php')
    {
    	$queryparts = explode('-', $endbit);
    	foreach ($queryparts AS $querypart)
    	{
    		if ($lastpart != '')
    		{
    			// can be:
    			// f: forumid
    			// p: pagenumber
    			// t: threadid
    			$$lastpart = $querypart;
    			$lastpart = '';
    		}
    		else
    		{
    			switch ($querypart)
    			{
    				case 'f':
    				case 'p':
    				case 't':
    					$lastpart = $querypart;
    					break;
    				default:
    					$lastpart = '';
    			}
    		}
    	}
    }
    else
    {
    	$do = 'index';
    }
    
    $vbulletin->input->clean_array_gpc('r', array(
    	'pda'     => TYPE_BOOL,
    	'login'   => TYPE_BOOL,
    	'message' => TYPE_BOOL
    ));
    
    $vbulletin->input->clean_array_gpc('c', array(
    	COOKIE_PREFIX . 'pda' => TYPE_UINT
    ));
    
    $vbulletin->input->clean_array_gpc('p', array(
    	'username' => TYPE_STR,
    	'password' => TYPE_STR,
    ));
    
    // check to see if the person is using a PDA if so we'll sort in ASC
    // force a redirect afterwards so we dont get problems with search engines
    if ($t)
    {
    	$t = intval($t);
    	$querystring = 't-' . $t . iif($p, '-p-' . intval($p)) . '.html';
    }
    else if ($f)
    {
    	$f = intval($f);
    	$querystring = 'f-' . $f . iif($p, '-p-' . intval($p)) . '.html';
    }
    
    if ($vbulletin->GPC['pda'])
    {
    	vbsetcookie('pda', '1', 1);
    
    	$redirect_url = $vbulletin->options['bburl'] . '/archive/index.php';
    	if ($querystring)
    	{
    		$redirect_url .= (SLASH_METHOD ? '/' : '?') . $querystring . ARCHIVE_SESSION_URL;
    	}
    	else
    	{
    		$redirect_url .= $vbulletin->session->vars['sessionurl_q'];
    	}
    	exec_header_redirect($redirect_url);
    }
    else if ($vbulletin->GPC[COOKIE_PREFIX . 'pda'])
    {
    	$pda = true;
    }
    
    $title = $vbulletin->options['bbtitle'];
    
    if ($vbulletin->userinfo['userid'] == 0 AND $vbulletin->GPC['login'])
    {
    	if (!empty($vbulletin->GPC['username']) AND !empty($vbulletin->GPC['password']))
    	{
    		require_once(DIR . '/includes/functions_login.php');
    		$strikes = verify_strike_status($vbulletin->GPC['username'], true);
    		if ($strikes === false)
    		{ // user has got too many wrong passwords
    			$error_message = fetch_error('strikes', $vbulletin->options['bburl'], $vbulletin->session->vars['sessionurl']);
    			$do = 'error';
    		}
    		else if (verify_authentication($vbulletin->GPC['username'], $vbulletin->GPC['password'], '', '', false, true))
    		{
    			exec_unstrike_user($vbulletin->GPC['username']);
    
    			$db->query_write("DELETE FROM " . TABLE_PREFIX . "session WHERE sessionhash = '" . $db->escape_string($vbulletin->session->vars['dbsessionhash']) . "'");
    
    			$vbulletin->session->vars = $vbulletin->session->fetch_session($vbulletin->userinfo['userid']);
    
    			/*insert query*/
    			$db->query_write("
    				INSERT INTO " . TABLE_PREFIX . "session
    					(sessionhash, userid, host, idhash, lastactivity, styleid, loggedin, bypass, useragent)
    				VALUES
    					('" . $db->escape_string($vbulletin->session->vars['sessionhash']) . "', " . $vbulletin->session->vars['userid'] . ", '" . $db->escape_string($vbulletin->session->vars['host']) . "', '" . $db->escape_string($vbulletin->session->vars['idhash']) . "', " . TIMENOW . ", " . $vbulletin->session->vars['styleid'] . ", 1, " . iif ($logintype === 'cplogin', 1, 0) . ", '" . $db->escape_string($vbulletin->session->vars['useragent']) . "')
    			");
    
    			$redirect_url = $vbulletin->options['bburl'] . '/archive/index.php';
    			if ($querystring)
    			{
    				$redirect_url .= (SLASH_METHOD ? '/' : '?') . $querystring . ARCHIVE_SESSION_URL;
    			}
    			else
    			{
    				$redirect_url .= $vbulletin->session->vars['sessionurl_q'];
    			}
    			exec_header_redirect($redirect_url);
    		}
    		else
    		{ // wrong username / password
    			exec_strike_user($vbulletin->userinfo['username']);
    			$error_message = fetch_error('badlogin', $vbulletin->options['bburl'], $vbulletin->session->vars['sessionurl'], $strikes);
    			$do = 'error';
    		}
    	}
    }
    
    if ($do == 'error')
    {
    }
    else if ($t)
    {
    	$do = 'thread';
    
    	$threadinfo = fetch_threadinfo($t);
    	$foruminfo = fetch_foruminfo($threadinfo['forumid']);
    
    	$threadinfo['meta_description'] = strip_bbcode(strip_quotes($threadinfo['description']), false, true);
    	$threadinfo['meta_description'] = htmlspecialchars_uni(fetch_censored_text(fetch_trimmed_title($threadinfo['meta_description'], 500, false)));
    
    	$forumperms = $vbulletin->userinfo['forumpermissions'][$foruminfo['forumid']];
    	if (!($forumperms & $vbulletin->bf_ugp_forumpermissions['canview']) OR !($forumperms & $vbulletin->bf_ugp_forumpermissions['canviewthreads']) OR !($forumperms & $vbulletin->bf_ugp_forumpermissions['canviewothers']) OR in_coventry($threadinfo['postuserid']) OR $threadinfo['isdeleted'] OR (!$threadinfo['visible'] AND !can_moderate($threadinfo['forumid'], 'canmoderateposts')))
    	{
    		exit;
    	}
    
    	verify_forum_password($foruminfo['forumid'], $foruminfo['password']);
    
    	if (trim($foruminfo['link']) != '')
    	{
    		exec_header_redirect($foruminfo['link'], true);
    	}
    
    	$title = "$threadinfo[prefix_plain_html] $threadinfo[title] [$vbphrase[archive]] " . ($p > 1 ? ' - ' . construct_phrase($vbphrase['page_x'], $p) : '') . " - $title";
    
    	$p = intval($p);
    	$metatags = "<meta name=\"keywords\" content=\"$threadinfo[keywords]\" />
    	<meta name=\"description\" content=\"$threadinfo[meta_description]\" />
    	";
    
    }
    else if ($f)
    {
    	$do = 'forum';
    
    	$forumperms = $vbulletin->userinfo['forumpermissions'][$f];
    	if (!($forumperms & $vbulletin->bf_ugp_forumpermissions['canview']) OR !($forumperms & $vbulletin->bf_ugp_forumpermissions['canviewothers']))
    	{
    		exit;
    	}
    
    	$foruminfo = fetch_foruminfo($f, false);
    
    	if (trim($foruminfo['link']) != '')
    	{
    		// add session hash to local links if necessary
    		if (preg_match('#^([a-z0-9_]+\.php)(\?.*$)?#i', $foruminfo['link'], $match))
    		{
    			if ($match[2])
    			{
    				// we have a ?xyz part, put session url at beginning if necessary
    				$query_string = preg_replace('/([^a-z0-9])(s|sessionhash)=[a-z0-9]{32}(&amp;|&)?/', '\\1', $match[2]);
    				$foruminfo['link'] = $match[1] . '?' . $vbulletin->session->vars['sessionurl_js'] . substr($query_string, 1);
    			}
    			else
    			{
    				$foruminfo['link'] .= $vbulletin->session->vars['sessionurl_q'];
    			}
    		}
    		exec_header_redirect($foruminfo['link'], true);
    	}
    
    	verify_forum_password($foruminfo['forumid'], $foruminfo['password']);
    
    	$title = "$foruminfo[title_clean] [$vbphrase[archive]]" . ($p > 1 ? ' - ' . construct_phrase($vbphrase['page_x'], $p) : '') . " - $title";
    
    	$p = intval($p);
    	$metatags = "<meta name=\"keywords\" content=\"$foruminfo[title_clean], " . $vbulletin->options['keywords'] . "\" />
    	<meta name=\"description\" content=\"[$vbphrase[archive]] " . ($p > 1 ? construct_phrase($vbphrase['page_x'], $p) . " " : "") . $foruminfo['description_clean'] . "\" />
    	";
    
    }
    else
    {
    	$do = 'index';
    	$metatags = "<meta name=\"keywords\" content=\"" . $vbulletin->options['keywords'] . "\" />
    	<meta name=\"description\" content=\"" . $vbulletin->options['description'] . "\" />";
    }
    
    ($hook = vBulletinHook::fetch_hook('archive_process_start')) ? eval($hook) : false;
    
    if ($pda AND $vbulletin->userinfo['userid'] == 0 AND $vbulletin->GPC['login'] AND $do != 'error')
    {
    	$do = 'login';
    }
    if ($pda AND $vbulletin->userinfo['userid'] > 0 AND $vbulletin->GPC['message'] AND false)
    {
    	$do = 'message';
    }
    
    // ad locations
    $ad_templates = fetch_ad_templates(array('ad_archive_above_content1', 'ad_archive_above_content2', 'ad_archive_below_content'));
    
    $output .= "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">
    <html xmlns=\"http://www.w3.org/1999/xhtml\" dir=\"" . vB_Template_Runtime::fetchStyleVar('textdirection') . "\" lang=\"" . vB_Template_Runtime::fetchStyleVar('languagecode') . "\">
    <head>
    	<meta http-equiv=\"Content-Type\" content=\"text/html; charset=" . vB_Template_Runtime::fetchStyleVar('charset') . "\" />
    	$metatags
    	<title>$title</title>
    	<link rel=\"stylesheet\" type=\"text/css\" href=\"" . $vbulletin->options['bburl'] . "/archive/archive.css\" />
    </head>
    <body>
    <div class=\"pagebody\">
    ";
    
    ($hook = vBulletinHook::fetch_hook('archive_postheader')) ? eval($hook) : false;
    
    // ********************************************************************************************
    // display board
    
    if ($do == 'index')
    {
    
    	$output .= print_archive_navigation(array());
    
    	$output .= "<p class=\"largefont\">$vbphrase[view_full_version]: <a href=\"" . 
    		fetch_seo_url('forumhome|bburl', array()) 
    		. '">' . $vbulletin->options['bbtitle'] . "</a></p>\n";
    	$output .= "<div class=\"floatcontainer\">";
    	$output .= $ad_templates['ad_archive_above_content1'];
    	$output .= $ad_templates['ad_archive_above_content2'];
    	$output .= "</div><br />";
    	$output .= "<div id=\"content\">\n";
    	$output .= print_archive_forum_list();
    	$output .= "</div>\n";
    
    }
    
    if ($Coventry = fetch_coventry('string'))
    {
    	$globalignore = "AND " . iif($do == 'forum', 'thread.post', 'post.') . "userid NOT IN ($Coventry) ";
    }
    else
    {
    	$globalignore = '';
    }
    
    // ********************************************************************************************
    // display forum
    
    if ($do == 'forum')
    {
    	// list threads
    
    	$output .= print_archive_navigation($foruminfo);
    
    	$output .= "<p class=\"largefont\">$vbphrase[view_full_version] : <a href=\"" .
    		fetch_seo_url('forum|bburl', $foruminfo) .
    		"\">$foruminfo[title_clean]</a></p>\n<hr />\n";
    
    	$output .= "<div class=\"floatcontainer\">";
    	$output .= $ad_templates['ad_archive_above_content1'];
    	$output .= $ad_templates['ad_archive_above_content2'];
    	$output .= "</div><br />";
    
    	if ($foruminfo['cancontainthreads'])
    	{
    
    		if (!$p)
    		{
    			$p = 1;
    		}
    
    		$output .= print_archive_page_navigation($foruminfo['threadcount'], $vbulletin->options['archive_threadsperpage'], "f-$foruminfo[forumid]");
    
    		$threads = $db->query_read_slave("
    			SELECT threadid, title, prefixid, lastpost, replycount
    			FROM " . TABLE_PREFIX . "thread AS thread
    			WHERE forumid = $foruminfo[forumid]
    				AND visible = 1
    				AND open <> 10
    				$globalignore
    			ORDER BY dateline " . iif($pda, 'DESC', 'ASC') . "
    			LIMIT " . ($p - 1) * $vbulletin->options['archive_threadsperpage'] . ',' . $vbulletin->options['archive_threadsperpage']
    		);
    
    		$start = ($p - 1) * $vbulletin->options['archive_threadsperpage'] + 1;
    		if ($pda AND false)
    		{
    			$output .= "<span id=\"posting\"><a href=\"?message=1\" rel=\"nofollow\">New Thread</a></span>";
    		}
    		$output .= "<div id=\"content\">\n<ol start=\"$start\">\n";
    		while ($thread = $db->fetch_array($threads))
    		{
    			if ($vbulletin->options['wordwrap'] != 0)
    			{
    				$thread['title'] = fetch_word_wrapped_string($thread['title']);
    			}
    
    			$thread['title'] = fetch_censored_text($thread['title']);
    			$thread['prefix_plain_html'] = ($thread['prefixid'] ? htmlspecialchars($vbphrase["prefix_$thread[prefixid]_title_plain"]) : '');
    
    			($hook = vBulletinHook::fetch_hook('archive_forum_thread')) ? eval($hook) : false;
    
    			if (!($forumperms & $vbulletin->bf_ugp_forumpermissions['canviewthreads']))
    			{
    				$output .= "\t<li>$thread[prefix_plain_html] $thread[title]" . iif($pda, " <i>(" . construct_phrase($vbphrase['x_replies'], $thread['replycount']) . ")</i>") . "</li>\n";
    			}
    			else if ($vbulletin->options['archive_threadtype'] OR $pda)
    			{
    				$output .= "\t<li>$thread[prefix_plain_html] <a href=\"" . $vbulletin->options['bburl'] .
    					'/archive/index.php' . (SLASH_METHOD ? '/' : '?') . "t-$thread[threadid].html" . ARCHIVE_SESSION_URL . "\">$thread[title]</a>" . iif($pda, " <i>(" . construct_phrase($vbphrase['x_replies'], $thread['replycount']) . ")</i>") . "</li>\n";
    			}
    			else
    			{
    				$output .= "\t<li>$thread[prefix_plain_html] <a href=\"" . fetch_seo_url('thread|bburl', $thread) . 
    					"\">$thread[title]</a></li>\n";
    			}
    		}
    		$output .= "</ol>\n</div>\n";
    
    	}
    	else
    	{
    		$output .= "<div id=\"content\">\n";
    		$output .= print_archive_forum_list($f);
    		$output .= "</div>\n";
    	}
    }
    
    // ********************************************************************************************
    // display thread
    
    if ($do == 'thread')
    {
    	if (!$vbulletin->options['archive_threadtype'])
    	{
    		// if we are not using the archive threadtype, invisibly redirect to the full thread view
    		exec_header_redirect(fetch_seo_url('thread|js|bburl', $threadinfo));
    	}
    
    	if ($vbulletin->options['wordwrap'] != 0)
    	{
    		$threadinfo['title'] = fetch_word_wrapped_string($threadinfo['title']);
    	}
    
    	$threadinfo['title'] = fetch_censored_text($threadinfo['title']);
    
    	$output .= print_archive_navigation($foruminfo, $threadinfo);
    
    	$output .= "<p class=\"largefont\">$vbphrase[view_full_version] : "
    		. ($threadinfo['prefix_plain_html'] ? "$threadinfo[prefix_plain_html] " : '' )
    		. "<a href=\"" . fetch_seo_url('thread|bburl', $threadinfo)
    		. "\">$threadinfo[title]</a></p>\n<hr />\n";
    
    	if ($p == 0)
    	{
    		$p = 1;
    	}
    
    	$output .= "<div class=\"floatcontainer\">";
    	$output .= $ad_templates['ad_archive_above_content1'];
    	$output .= $ad_templates['ad_archive_above_content2'];
    	$output .= "</div><br />";
    
    	$output .= print_archive_page_navigation($threadinfo['replycount'] + 1, $vbulletin->options['archive_postsperpage'], "t-$threadinfo[threadid]");
    
    	$posts = $db->query_read_slave("
    		SELECT post.postid, post.pagetext, IFNULL( user.username , post.username ) AS username, dateline
    		FROM " . TABLE_PREFIX . "post AS post
    		LEFT JOIN " . TABLE_PREFIX . "user AS user ON (user.userid = post.userid)
    		WHERE threadid = $threadinfo[threadid]
    			AND visible = 1
    			$globalignore
    		ORDER BY dateline ASC
    		LIMIT " . (($p - 1) * $vbulletin->options['archive_postsperpage']) . ',' . $vbulletin->options[archive_postsperpage]
    	);
    	if ($pda AND false)
    	{
    		$output .= "<span id=\"posting\"><a href=\"?message=1\" rel=\"nofollow\">New Reply</a></span>";
    	}
    	$i = 0;
    	while ($post = $db->fetch_array($posts))
    	{
    		$i++;
    		$post['pagetext_simp'] = strip_bbcode($post['pagetext']);
    		$post['postdate'] = vbdate($vbulletin->options['dateformat'], $post['dateline']);
    		$post['posttime'] = vbdate($vbulletin->options['timeformat'], $post['dateline']);
    
    		if ($vbulletin->options['wordwrap'] != 0)
    		{
    			$post['pagetext_simp'] = fetch_word_wrapped_string($post['pagetext_simp']);
    		}
    
    		$post['pagetext_simp'] = fetch_censored_text($post['pagetext_simp']);
    
    		($hook = vBulletinHook::fetch_hook('archive_thread_post')) ? eval($hook) : false;
    
    		$output .= "\n<div class=\"post\"><div class=\"posttop\"><div class=\"username\">$post[username]</div><div class=\"date\">$post[postdate], $post[posttime]</div></div>";
    		$output .= "<div class=\"posttext\">" . nl2br(htmlspecialchars_uni($post['pagetext_simp'])) . "</div></div><hr />\n\n";
    	}
    
    	// Record thread as viewed.
    	if ($vbulletin->options['who_read'])
    	{
    		mark_content_read('vBForum_Thread', $thread['threadid'], 'view');
    	}
    }
    
    // ********************************************************************************************
    // display login
    if ($do == 'login')
    {
    	$output .= print_archive_navigation(array());
    	$output .= "<p class=\"largefont\">$vbphrase[view_full_version]: <a href=\"" . 
    		fetch_seo_url('forumhome|bburl', array()) .
    		'">' . $vbulletin->options['bbtitle'] . "</a></p>\n";
    
    	$output .= "<div class=\"floatcontainer\">";
    	$output .= $ad_templates['ad_archive_above_content1'];
    	$output .= $ad_templates['ad_archive_above_content2'];
    	$output .= "</div><br />";
    
    	if (SLASH_METHOD)
    	{
    		$loginlink = 'index.php' . (!empty($querystring) ? "/$querystring" : '') . '?' . $vbulletin->session->vars['sessionurl'] . 'login=1';
    	}
    	else
    	{
    		$loginlink = 'index.php?' . (!empty($querystring) ? "$querystring&amp;" : '') . $vbulletin->session->vars['sessionurl'] . 'login=1';
    	}
    
    	$output .= "<div id=\"content\">\n";
    	$output .= "<strong>$vbphrase[log_in]</strong>\n";
    	$output .= "<form action=\"" . $vbulletin->options['bburl'] . "/archive/$loginlink\" method=\"post\">\n";
    	$output .= "$vbphrase[username]: <input type=\"text\" name=\"username\" size=\"15\" />\n";
    	$output .= "$vbphrase[password]: <input type=\"password\" name=\"password\" size=\"15\" />\n";
    	$output .= "<input type=\"submit\" name=\"sbutton\" value=\"$vbphrase[log_in]\" />\n";
    	$output .= "</form>\n";
    	$output .= "</div>\n";
    }
    
    // ********************************************************************************************
    // display error
    if ($do == 'error')
    {
    	$output .= print_archive_navigation(array());
    
    	$output .= "<p class=\"largefont\">$vbphrase[view_full_version]: <a href=\"" . 
    		fetch_seo_url('forumhome|bburl', array()) .
    		'">' . $vbulletin->options['bbtitle'] . "</a></p>\n";
    
    	$output .= "<div class=\"floatcontainer\">";
    	$output .= $ad_templates['ad_archive_above_content1'];
    	$output .= $ad_templates['ad_archive_above_content2'];
    	$output .= "</div><br />";
    
    	$output .= "<div id=\"content\">\n";
    	$output .= $error_message;
    	$output .= "</div>\n";
    }
    
    // ad locations
    
    ($hook = vBulletinHook::fetch_hook('archive_complete')) ? eval($hook) : false;
    
    $output .= $ad_templates['ad_archive_below_content'];
    $output .= "
    <div id=\"copyright\">$vbphrase[vbulletin_copyright]</div>
    </div>
    </body>
    </html>";
    
    $vbulletin->shutdown->shutdown();
    if (defined('NOSHUTDOWNFUNC'))
    {
    	exec_shut_down();
    }
    
    echo $output;
    
    ($hook = vBulletinHook::fetch_hook('archive_complete_postoutput')) ? eval($hook) : false;
    
    /*======================================================================*\
    || ####################################################################
    || # Downloaded: 06:12, Thu Jan 31st 2013
    || # CVS: $RCSfile$ - $Revision: 62289 $
    || ####################################################################
    \*======================================================================*/
    ?>
    
    
    Gehört das alles zu einem Plan? Geplantes Chaos sozusagen. :volldoll:


    .
     

    Attached Files:

  2. root

    root Megabyte

    Ich kann den Fehler hier bestätigen. Auch Epiphany 3.8.2 und Surf 0.6 laden die Datei herunter.
     
  3. deoroller

    deoroller Wandelndes Forum

    Vielleicht findet jemand einen Fehler bei dem Code.

    Ganz unten steht:
    Code:
    Downloaded: 06:12, Thu Jan 31st 2013
     
  4. kalweit

    kalweit Hüter der Glaskugel

    Der Code hat keinen Fehler. Der PHP-Interpreter auf dem Server arbeitet nicht wie soll. Wenn ich orakeln sollte, hat wohl jemand die Tage ein Update der Serversoftware gemacht und dabei die ursprüngliche Konfiguration zerlegt. Das würde auch das Opera Problem erklären. tti hätte letzte Woche nicht fragen sollen, ob es Probleme gibt.... :totlach:
     
  5. Mariofan13

    Mariofan13 Kbyte

    Ich kann den Fehler bestätigen, mein Seamonkey möchte auch diese Datei downloaden.

    Ein Update der Forensoftware wurde aber nicht vorgenommen, laut Copyright läuft hier immer noch das veraltete VB4.2.0.
     
  6. kalweit

    kalweit Hüter der Glaskugel

    Davon hat auch niemand gesprochen.
     
  7. Kiton

    Kiton Halbes Gigabyte

    Gleicher Fehler auch bei mir.
     
  8. deoroller

    deoroller Wandelndes Forum

    Bis Montag wird sich nichts tun oder geschieht ein Wunder. :heilig:
     
  9. Hascheff

    Hascheff Moderator

    Da bin ich ja beruhigt. Ich dachte schon, es ist was ernstes.
     
  10. tti

    tti Hausmeisterin

  11. root

    root Megabyte

  12. tti

    tti Hausmeisterin

    nur, dass man bei den Gamern über die Links kein Forum erreicht. hmmmhmmmmhmmm.
     
  13. deoroller

    deoroller Wandelndes Forum

    Attached Files:

  14. tti

    tti Hausmeisterin

    Ist das erst seit dem 25.1. so oder hast du das da zufällig mal aufgerufen?
     
  15. deoroller

    deoroller Wandelndes Forum

    Letztes Jahr hatte der Link noch funktioniert. Es ist aber schon Monate her, dass ich ihn das letzte mal benutzt habe. Am 25.01. wollte ich eigentlich nur mal ins Impressum gucken, habe dann aber auf den Link zum Forum Archiv geklickt und dann hatte ich den Salat. :eek:
     
  16. tti

    tti Hausmeisterin

    Aha, und weil den Link offenbar keiner braucht, kommt er jetzt weg :-) Danke für den Hinweis
     
  17. deoroller

    deoroller Wandelndes Forum

    Da gibt es auch Linkchecker.
    Der ist nicht mehr ganz aktuell. ;)
     
Thread Status:
Not open for further replies.

Share This Page