(28.02.2010, 11:52)burbot Wrote: Warum braucht man für eine LAN-Party ein Forum?
Ich weiß auch nicht.
Aber wer eine LAN über mehrere Stockwerke macht, dann kann das schon etwas nützlich sein...
Man will ja nicht immer durchs ganze Haus rennen um was zu sagen
(28.02.2010, 12:30)Yannici Wrote: Ich weiß auch nicht.
Aber wer eine LAN über mehrere Stockwerke macht, dann kann das schon etwas nützlich sein...
Man will ja nicht immer durchs ganze Haus rennen um was zu sagen
(This post was last modified: 01.03.2010, 17:08 by abbar-2.) 01.03.2010, 17:08
Cache mal entleeren
und mach mal Rechtsklick auf ein Bild das nicht dargestellt (und wähle Bild anzeigen) wird und schau mal ob es auch in dem Pfad ist, wo es sein soll
(28.02.2010, 12:30)Yannici Wrote: Ich weiß auch nicht.
Aber wer eine LAN über mehrere Stockwerke macht, dann kann das schon etwas nützlich sein...
Man will ja nicht immer durchs ganze Haus rennen um was zu sagen
(This post was last modified: 09.07.2011, 14:17 by ON21.) 08.07.2011, 20:40
Hallo,
ich weiß, der thread ist wirklich uralt, aber ich habe folgendes problem:
wenn ich es "installieren" will, kommt dieses :
"Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in C:\Dokumente und Einstellungen\Nils\Desktop\dslan_v1.3\htdocs\forum\inc\class_core.php on line 18"
// If we've got register globals on, then kill them too if(@ini_get("register_globals") == 1) { $this->unset_globals($_POST); $this->unset_globals($_GET); $this->unset_globals($_FILES); $this->unset_globals($_COOKIE); } $this->clean_input();
// Fixes conflicts with one board having a prefix and another that doesn't on the same domain // Gives priority to our cookies over others (overwrites them) if($this->cookies[$key]) { unset($this->cookies[$key]); } }
/** * Strips slashes out of a given array. * * @param array The array to strip. */ function strip_slashes_array(&$array) { foreach($array as $key => $val) { if(is_array($array[$key])) { $this->strip_slashes_array($array[$key]); } else { $array[$key] = stripslashes($array[$key]); } } }
/** * Unsets globals from a specific array. * * @param array The array to unset from. */ function unset_globals($array) { if(!is_array($array)) { return; }
foreach(array_keys($array) as $key) { unset($GLOBALS[$key]); unset($GLOBALS[$key]); // Double unset to circumvent the zend_hash_del_key_or_index hole in PHP <4.4.3 and <5.1.4 } }
/** * Cleans predefined input variables. * */ function clean_input() { foreach($this->clean_variables as $type => $variables) { foreach($variables as $var) { // If this variable is in the ignored array, skip and move to next. if(in_array($var, $this->ignore_clean_variables)) { continue; }
/** * Triggers a generic error. * * @param string The error code. */ function trigger_generic_error($code) { global $error_handler;
switch($code) { case "cache_no_write": $message = "The data cache directory (cache/) needs to exist and be writable by the web server. Change its permissions so that it is writable (777 on Unix based servers)."; $error_code = MYBB_CACHE_NO_WRITE; break; case "install_directory": $message = "The install directory (install/) still exists on your server and is not locked. To access MyBB please either remove this directory or create an empty file in it called 'lock'."; $error_code = MYBB_INSTALL_DIR_EXISTS; break; case "board_not_installed": $message = "Your board has not yet been installed and configured. Please do so before attempting to browse it."; $error_code = MYBB_NOT_INSTALLED; break; case "board_not_upgraded": $message = "Your board has not yet been upgraded. Please do so before attempting to browse it."; $error_code = MYBB_NOT_UPGRADED; break; case "sql_load_error": $message = "MyBB was unable to load the SQL extension. Please contact the MyBB Group for support. <a href=\"http://mybb.com\">MyBB Website</a>"; $error_code = MYBB_SQL_LOAD_ERROR; break; case "eaccelerator_load_error": $message = "eAccelerator needs to be configured with PHP to use the eAccelerator cache support."; $error_code = MYBB_CACHEHANDLER_LOAD_ERROR; break; case "memcache_load_error": $message = "Your server does not have memcache support enabled."; $error_code = MYBB_CACHEHANDLER_LOAD_ERROR; break; case "xcache_load_error": $message = "Xcache needs to be configured with PHP to use the Xcache cache support."; $error_code = MYBB_CACHEHANDLER_LOAD_ERROR; break; default: $message = "MyBB has experienced an internal error. Please contact the MyBB Group for support. <a href=\"http://mybb.com\">MyBB Website</a>"; $error_code = MYBB_GENERAL; } $error_handler->trigger($message, $error_code); }
function __destruct() { // Run shutdown function if(function_exists("run_shutdown")) { run_shutdown(); } } }
/** * Do this here because the core is used on every MyBB page */
// These are fields in the usergroups table that are also forum permission specific. $fpermfields = array( 'canview', 'canviewthreads', 'candlattachments', 'canpostthreads', 'canpostreplys', 'canpostattachments', 'canratethreads', 'caneditposts', 'candeleteposts', 'candeletethreads', 'caneditattachments', 'canpostpolls', 'canvotepolls', 'cansearch' );
?>
woran liegts?
viele grüße
Schildkröte: "nichts ist langsamer als ich!"
Schnecke: "ich bin ganz sicher langsamer!" Und dann kam der Internet Explorer...