Welcome, Guest. Please Login or Register.
May 07, 2024, 04:34:10 PM
Home Help Search Log in Register
News: SMF is the next generation in forum software, almost completely re-written from the ground up, make sure you don't fall for cheap imitations that suffer from feature bloat!

YaBB SE Community  |  German User Help  |  Hilfe bzw. Diskussionen zu Mods  |  Force Calendar Board - Hilfe « previous next »
Pages: [1] Reply Ignore Print
Author Topic: Force Calendar Board - Hilfe  (Read 6676 times)
CrashOver
Noobie
*
Posts: 20


MUHA

ICQ - 175308405 WWW
Force Calendar Board - Hilfe
« on: June 07, 2003, 08:05:24 AM »
Reply with quote

Habe das Problem das die Einstellungen im AdminCenter bzgl. des  Force Calendar Board nicht übernommen. Es kommt allerdings auch keine Fehlermeldung. Was kann des denn wieder sein.



Wenn des so weiter geht bin ich bald nurnoch
Logged

Alles wurde irgend wann einmal ersetzt durch etwas besseres. Und alle bisherigen CS Clans - durch [-=DDR=-]!
SERVER: [-=DDR=-] RattenTempel
MC600
YaBB God
*****
Posts: 968


Jetzt habe ich Zähne!

ICQ - 168723559 WWW
Re:Force Calendar Board - Hilfe
« Reply #1 on: June 07, 2003, 09:49:47 AM »
Reply with quote

z.B. ein MOD fehlerhaft eingebaut - ModSettings.php - weshalb die Einstellung nicht übernommen wird.

Schau mal in deine DB - Tabelle yabbse_settings - dort sollte ein Feld cal_defaultboard vorhanden sein. Dort kannst du das default Board auch per Hand eintragen...

PS: Hast du irgendein Calender MOD eingebaut? Weil du zu wenig Einstellmöglichkeiten als YaBB SE 1.5.3 Standart hast.

Im ModFile fehlt die php zum ändern der DB!
Logged

Freundliche Grüße aus Hönow - MC600 - Forum Gegen Krebs
Newsletter Service - Info´s über MOD´s von MC600 - Hier eintragen
Daniel D.
Mod Team
YaBB God
*****
Posts: 2935


Re:Force Calendar Board - Hilfe
« Reply #2 on: June 07, 2003, 10:04:48 AM »
Reply with quote

Habe ich da wieder was vergessen ? ::)
Logged

CrashOver
Noobie
*
Posts: 20


MUHA

ICQ - 175308405 WWW
Re:Force Calendar Board - Hilfe
« Reply #3 on: June 07, 2003, 10:10:07 AM »
Reply with quote

Also die cal_defaultboard is net zu finden in der DB  :'(

kann ich die nachtragen ?? oder wie is des
Logged

Alles wurde irgend wann einmal ersetzt durch etwas besseres. Und alle bisherigen CS Clans - durch [-=DDR=-]!
SERVER: [-=DDR=-] RattenTempel
Daniel D.
Mod Team
YaBB God
*****
Posts: 2935


Re:Force Calendar Board - Hilfe
« Reply #4 on: June 07, 2003, 10:11:51 AM »
Reply with quote

Jetzt warte mal ab ! Ich mach' ja schon... ;)

phpMyAdmin:
INSERT INTO {$db_prefix}settings VALUES ('cal_ForceDefaultBoard', '0')und
INSERT INTO {$db_prefix}settings VALUES ('allowCalNoBoard', '1')
« Last Edit: June 07, 2003, 10:22:51 AM by Daniel D. » Logged

MC600
YaBB God
*****
Posts: 968


Jetzt habe ich Zähne!

ICQ - 168723559 WWW
Re:Force Calendar Board - Hilfe
« Reply #5 on: June 07, 2003, 10:19:35 AM »
Reply with quote

<?php
/*****************************************************************************/
/* Force_CalendarBoard_db.php                                                */
/*****************************************************************************/
/* YaBB: Yet another Bulletin Board                                          */
/* Open-Source Project started by Zef Hemel ([email protected])                 */
/* Software Version: YaBB SE                                                 */
/* ========================================================================= */
/* Software Distributed by:    http://www.yabb.info                          */
/* Support, News, Updates at:  http://www.yabb.info/community                */
/*                             http://yabb.xnull.com/community               */
/* ========================================================================= */
/* Copyright (c) 2001-2002 Lewis Media - All Rights Reserved                 */
/* Software by: The YaBB Development Team                                    */
/*****************************************************************************/
/* This program is free software; you can redistribute it and/or modify it   */
/* under the terms of the GNU General Public License as published by the     */
/* Free Software Foundation; either version 2 of the License, or (at your    */
/* option) any later version.                                                */
/*                                                                           */
/* This program is distributed in the hope that it will be useful, but       */
/* WITHOUT ANY WARRANTY; without even the implied warranty of                */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General */
/* Public License for more details.                                          */
/*                                                                           */
/* The GNU GPL can be found in gpl.txt in this directory                     */
/*****************************************************************************/
?>

<html>
<head>
   <title>YaBB SE DataBase Editor</title>
<style>
<!--
body {
   font-family : Verdana;
   font-size : 10pt;
}
td {
   font-size : 10pt;
}
-->
</style>
</head>
<body bgcolor="#FFFFFF">
<center><table border=0 cellspacing=1 cellpadding=4 bgcolor="#000000" width=90%>
<tr>
   <th bgcolor="#34699E"><font color="#FFFFFF">YaBB SE DB Editor</font></th>
</tr>
<tr>
<td bgcolor="#FFFFFF">
<?

include_once ("Settings.php");
$error=0;
$dbcon = mysql_connect($db_server, $db_user, $db_passwd);
mysql_select_db($db_name);

/* ### DB QUERIES START ### */

$result1 = mysql_query("INSERT INTO {$db_prefix}settings (variable, value) VALUES ('cal_ForceDefaultBoard', '0')");
if(!$result1){
   echo "<font color=red>Error updating the DB. SQL Error: ".mysql_error()."</font><BR>";
   $error++;}
else
echo "<font color=green>Data inserted!</font><BR>";

$result2 = mysql_query("INSERT INTO {$db_prefix}settings (variable, value) VALUES ('allowCalNoBoard', '1')");
if(!$result2){
   echo "<font color=red>Error updating the DB. SQL Error: ".mysql_error()."</font><BR>";
   $error++;}
else
echo "<font color=green>Data inserted!</font><BR>";

/* ### DB QUERIES END ### */

echo "</td></tr></table>";
if($error==0)
echo "<P>Upgrade of SQL was successfull.";
elseif ($error==1)
echo "<P>There was <B>1</B> error when upgrading your SQL.";
elseif ($error>1)
echo "<P>There were <B>$error</B> errors when upgrading your SQL.";
?>
Logged

Freundliche Grüße aus Hönow - MC600 - Forum Gegen Krebs
Newsletter Service - Info´s über MOD´s von MC600 - Hier eintragen
CrashOver
Noobie
*
Posts: 20


MUHA

ICQ - 175308405 WWW
Re:Force Calendar Board - Hilfe
« Reply #6 on: June 07, 2003, 10:33:16 AM »
Reply with quote

Man Man Man   so langsam komm ich mir vor wie der Oberdoofy *g*

Hab die Force_CalendarBoard_db.php gestartet un des funzte glei THX
Logged

Alles wurde irgend wann einmal ersetzt durch etwas besseres. Und alle bisherigen CS Clans - durch [-=DDR=-]!
SERVER: [-=DDR=-] RattenTempel
Daniel D.
Mod Team
YaBB God
*****
Posts: 2935


Re:Force Calendar Board - Hilfe
« Reply #7 on: June 07, 2003, 10:36:26 AM »
Reply with quote

Du bist nicht der Oberdoofi, nur der Oberungeduldi !! ;D
Frag' nur weiter, dazu ist das Forum da...
Logged

CrashOver
Noobie
*
Posts: 20


MUHA

ICQ - 175308405 WWW
Re:Force Calendar Board - Hilfe
« Reply #8 on: June 07, 2003, 10:48:29 AM »
Reply with quote

Ja ich weiss

bin immer bei sowas erst und wenn ich denn nich weiter komm seh ich entwerder oder aus

*g* weisst bescheid?
Logged

Alles wurde irgend wann einmal ersetzt durch etwas besseres. Und alle bisherigen CS Clans - durch [-=DDR=-]!
SERVER: [-=DDR=-] RattenTempel
jonson
Jr. Member
**
Posts: 56


Ich kann nix!

WWW
Re:Force Calendar Board - Hilfe
« Reply #9 on: August 24, 2003, 07:08:03 PM »
Reply with quote

Hi Leute
Ich habe das selbe Problem auch, hab jetzt ja hier aber die erklährung gefunden, aber ihr solltet die datei um die tabelle zu machen mal zu dem MOD dazu packe, sonst haben alle das Problem.
Logged
Pages: [1] Reply Ignore Print 
YaBB SE Community  |  German User Help  |  Hilfe bzw. Diskussionen zu Mods  |  Force Calendar Board - Hilfe « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.035 seconds with 19 queries.