RE: How to: Install Forum on localhost - burbot - 28.02.2010
Warum braucht man für eine LAN-Party ein Forum?
RE: How to: Install Forum on localhost - Yannici - 28.02.2010
(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
RE: How to: Install Forum on localhost - burbot - 28.02.2010
(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
Ok, manchmal ist es schon nützlich.
RE: How to: Install Forum on localhost - BiiG EASY - 28.02.2010
(28.02.2010, 10:02)Yannici Wrote: Hast du auch wirklich alles in den htdocs Ordner kopiert?
Ja habe ich.
(28.02.2010, 11:52)burbot Wrote: Warum braucht man für eine LAN-Party ein Forum?
Mein Freund wohnt genau neben mir (Doppelhaus).
Frage beantwortet xD
Also geht immer noch nicht=(
RE: How to: Install Forum on localhost - burbot - 28.02.2010
(28.02.2010, 13:44)BiiG EASY Wrote:
(28.02.2010, 11:52)burbot Wrote: Warum braucht man für eine LAN-Party ein Forum?
Mein Freund wohnt genau neben mir (Doppelhaus).
Frage beantwortet xD
Hast du schon einmal Teamspeak probiert?
RE: How to: Install Forum on localhost - BiiG EASY - 28.02.2010
Nö ich will nen Forum
RE: How to: Install Forum on localhost - abbar-2 - 01.03.2010
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
RE: How to: Install Forum on localhost - Marco01_809 - 04.04.2010
(28.02.2010, 13:00)burbot Wrote:
(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
Ok, manchmal ist es schon nützlich.
Ich finde, da ist ein Chat viel nützlicher.... :/
RE: How to: Install Forum on localhost - ON21 - 08.07.2011
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
RE: How to: Install Forum on localhost - snake 9 - 08.07.2011
ich erklärs dir bei skype
RE: How to: Install Forum on localhost - Dsaddicted - 08.07.2011
ich würde dir woltolab burning board lite empfehlen, das ist easy zu installieren
RE: How to: Install Forum on localhost - Jonsn - 08.07.2011
@ON21: Dein Problem geklärt?
Ich weiß woran es liegt.
RE: How to: Install Forum on localhost - ON21 - 08.07.2011
nein,leider nicht. kannst mir in einer pn sagen, wodran es liegt?
und an meinen führer, mal sehen. morgen.
RE: How to: Install Forum on localhost - Dsaddicted - 09.07.2011
es liegt an dieser datei :class_core.php
in Zeile 18, was steht da?
RE: How to: Install Forum on localhost - Molt - 09.07.2011
Kannste ja oben sehen, er hat die ganze Datei gepostet.
Is das da mit public irgendwas.
RE: How to: Install Forum on localhost - Dsaddicted - 09.07.2011
aso hab ich nicht direkt gesehen
kann es sein, dass hier:
class MyBB {
/**
* The friendly version number of MyBB we're running.
*
* @var string
*/
public $version = "1.6.3";
ne klammer geöffnet wurde und nicht geschlossen worden ist?
RE: How to: Install Forum on localhost - ON21 - 09.07.2011
stimmt, eine klammer die geschlossen ist, fehlt, aber wo muss diese hin?
RE: How to: Install Forum on localhost - Molt - 09.07.2011
Bei mir funktioniert die Datei einwandfrei.
Errorcheck:
Quote:No syntax errors detected in /Users/marc/Desktop/test.php
RE: How to: Install Forum on localhost - ON21 - 09.07.2011
(09.07.2011, 10:33)Dsaddicted Wrote: aso hab ich nicht direkt gesehen
kann es sein, dass hier:
class MyBB {
/**
* The friendly version number of MyBB we're running.
*
* @var string
*/
public $version = "1.6.3";
ne klammer geöffnet wurde und nicht geschlossen worden ist?
habe grade nocheinmal nachgesehen, die klmmer wird in Zeile 396 geschlossen.
RE: How to: Install Forum on localhost - lolli1 - 09.07.2011
der fehler soll ja in der zeile
public $version = "1.6.3";
liegen, aber da sehe ich nichts^^
@jonsn und snake:
wie behebt man denn den fehler?