Welcome, Guest. Please Login or Register.
April 30, 2025, 02:40:13 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  |  [MOD Update 1.5.1]Singular Board Index v1.5 « previous next »
Pages: 1 [2] Reply Ignore Print
Author Topic: [MOD Update 1.5.1]Singular Board Index v1.5  (Read 10529 times)
multikon
Sr. Member
****
Posts: 401


ICQ - 116573999
Re:[mod 1.5.1 Final]Singular Board Index
« Reply #15 on: April 18, 2003, 05:27:45 PM »
Reply with quote

will dich ja nich ärgern, aber ...

---------------------------------------------------------------------

--------------------------------------------------------------------------------

now installing: Singular Board-Index 1.2 (Singular Board Index.mod)

--------------------------------------------------------------------------------



Step 1 ... failed - ERR(1): Search string could not be found

Step 2 ... failed - ERR(1): Search string could not be found

Step 3 ... ok

Step 4 ... ok



> modifications failed! 2 errors occured. No files will be modified. Please see readme for help on the
error messages.
Logged

MULTIMEDIA-KONSOLEN
BEI FRAGEN ODER PROBLEMEN MIT KONSOLEN, COMPUTERN & MOBILFUNK
Ironman
Guest
Re:[mod 1.5.1 Final]Singular Board Index
« Reply #16 on: April 18, 2003, 05:33:54 PM »
Reply with quote

Okay dann wird's daran liegen, daß irgendein anderer Mod die BoardIndex.php schon geändert hat und BoardMod sucht natürlich nach dem YSE-Original String.
Logged
multikon
Sr. Member
****
Posts: 401


ICQ - 116573999
Re:[mod 1.5.1 Final]Singular Board Index
« Reply #17 on: April 18, 2003, 05:39:37 PM »
Reply with quote

Jo, denk ich auch ...

Werde den entsprechenden Text aus der Bordindex später mal hier posten, mal sehn was da anders ist.

Bevor du aber auf 1.2 upgedatet hattest gab es nur Error bei Step 2 !..


cya
Logged

MULTIMEDIA-KONSOLEN
BEI FRAGEN ODER PROBLEMEN MIT KONSOLEN, COMPUTERN & MOBILFUNK
multikon
Sr. Member
****
Posts: 401


ICQ - 116573999
Re:[mod 1.5.1 Final]Singular Board Index
« Reply #18 on: April 18, 2003, 05:43:25 PM »
Reply with quote

Hier nun mein nicht zu findener Code aus der Bordindex.php

---------------------------------------------------------------------

   echo '
                  <tr>
                     <td class="catbg" colspan="2"><b>' . $txt[158] . '</b></td>
                  </tr><tr>
                     <td class="windowbg" width="20" valign="middle" align="center">
                        <img src="' . $imagesdir . '/online.gif" border="0" alt="" />
                     </td>
                     <td class="windowbg2" width="100%">
                        ' . $guests . ' ' . $txt[141] . ',  ' . $numusersonline . ' ' . $txt[142] . ' ' . $color_info . '<br />
                        ' . $users . ' ' . $stats . '
                     </td>
                  </tr>';
Logged

MULTIMEDIA-KONSOLEN
BEI FRAGEN ODER PROBLEMEN MIT KONSOLEN, COMPUTERN & MOBILFUNK
Ironman
Guest
Re:[mod 1.5.1 Final]Singular Board Index
« Reply #19 on: April 18, 2003, 05:53:19 PM »
Reply with quote

Quote from: multikon on April 18, 2003, 05:43:25 PM
Hier nun mein nicht zu findener Code aus der Bordindex.php

---------------------------------------------------------------------

   echo '
                  <tr>
                     <td class="catbg" colspan="2"><b>' . $txt[158] . '</b></td>
                  </tr><tr>
                     <td class="windowbg" width="20" valign="middle" align="center">
                        <img src="' . $imagesdir . '/online.gif" border="0" alt="" />
                     </td>
                     <td class="windowbg2" width="100%">
                        ' . $guests . ' ' . $txt[141] . ',  ' . $numusersonline . ' ' . $txt[142] . ' ' . $color_info . '<br />
                        ' . $users . ' ' . $stats . '
                     </td>
                  </tr>';

Ah ja, ersetze diesen Code mal damit:
<tr>
                     <td class="catbg" colspan="2"><b>' . $txt[158] . '</b></td>
                  </tr><tr>
                     <td class="windowbg" width="20" valign="middle" align="center">
                        <img src="' . $imagesdir . '/online.gif" border="0" alt="" />
                     </td>
                     <td class="windowbg2" width="100%">
                                       if ($guests == 1) echo "$guests ". $txt['singular1'] .", ";
                                       else
                                       echo "$guests ". $txt[141] .", ";
                                      if ($numusersonline == 1) echo "$numusersonline ". $txt['singular2'] . " $color_info<br />";
                                          else
                                         echo "$numusersonline ". $txt[142] . " $color_info<br />";
                                      echo "$users $stats
                     </td>
                  </tr>";
« Last Edit: April 18, 2003, 05:55:36 PM by Mario472 » Logged
multikon
Sr. Member
****
Posts: 401


ICQ - 116573999
Re:[mod 1.5.1 Final]Singular Board Index
« Reply #20 on: April 18, 2003, 05:53:32 PM »
Reply with quote

Ah, der "Membercolor" MOD ... der hat doch meines Wissens auch schon anderen Probs gemacht.


cya
Logged

MULTIMEDIA-KONSOLEN
BEI FRAGEN ODER PROBLEMEN MIT KONSOLEN, COMPUTERN & MOBILFUNK
multikon
Sr. Member
****
Posts: 401


ICQ - 116573999
Re:[mod 1.5.1 Final]Singular Board Index
« Reply #21 on: April 18, 2003, 06:00:26 PM »
Reply with quote

Quote from: Mario472 on April 18, 2003, 05:53:19 PM
Quote from: multikon on April 18, 2003, 05:43:25 PM
Hier nun mein nicht zu findener Code aus der Bordindex.php

---------------------------------------------------------------------

   echo '
                  <tr>
                     <td class="catbg" colspan="2"><b>' . $txt[158] . '</b></td>
                  </tr><tr>
                     <td class="windowbg" width="20" valign="middle" align="center">
                        <img src="' . $imagesdir . '/online.gif" border="0" alt="" />
                     </td>
                     <td class="windowbg2" width="100%">
                        ' . $guests . ' ' . $txt[141] . ',  ' . $numusersonline . ' ' . $txt[142] . ' ' . $color_info . '<br />
                        ' . $users . ' ' . $stats . '
                     </td>
                  </tr>';

Ah ja, ersetze diesen Code mal damit:
<tr>
                     <td class="catbg" colspan="2"><b>' . $txt[158] . '</b></td>
                  </tr><tr>
                     <td class="windowbg" width="20" valign="middle" align="center">
                        <img src="' . $imagesdir . '/online.gif" border="0" alt="" />
                     </td>
                     <td class="windowbg2" width="100%">
                                       if ($guests == 1) echo "$guests ". $txt['singular1'] .", ";
                                       else
                                       echo "$guests ". $txt[141] .", ";
                                      if ($numusersonline == 1) echo "$numusersonline ". $txt['singular2'] . " $color_info<br />";
                                          else
                                         echo "$numusersonline ". $txt[142] . " $color_info<br />";
                                      echo "$users $stats
                     </td>
                  </tr>";



Ok ... hier STEP 2 des ERRORs :

--------------------------------------------------------------------

SSI.php


   echo
      $guests . ' ' . $txt[141] . ', ' . $numusersonline . ' ' . $txt[142] . ' ' . $color_info . '<br />
      ' . $users;
« Last Edit: April 18, 2003, 06:02:50 PM by multikon » Logged

MULTIMEDIA-KONSOLEN
BEI FRAGEN ODER PROBLEMEN MIT KONSOLEN, COMPUTERN & MOBILFUNK
Ironman
Guest
Re:[mod 1.5.1 Final]Singular Board Index
« Reply #22 on: April 18, 2003, 06:14:01 PM »
Reply with quote

Das ist der Schritt der sich auf die SSI.php bezieht. Wenn Du die Funktionen der SSI.php nicht nutzt dann sollte es auch ohne Step 2 gehen. Falls Du sie doch nutzen möchtest suche nach:

echo
      $guests . ' ' . $txt[141] . ', ' . $numusersonline . ' ' . $txt[142] . ' ' . $color_info. '<br />
      ' . $users;


und ersetze es durch:

if ($guests == 1)
      echo "$guests ". $txt['singular1'] .", ";
   else
      echo "$guests ". $txt[141] .", ";
   if ($numusersonline == 1)
      echo "$numusersonline ". $txt['singular2'] . " $color_info<br />";
   else
      echo "$numusersonline ". $txt[142] . " $color_info<br />";
   echo $users;
Logged
multikon
Sr. Member
****
Posts: 401


ICQ - 116573999
Re:[mod 1.5.1 Final]Singular Board Index
« Reply #23 on: April 18, 2003, 06:20:48 PM »
Reply with quote

Naja, geht auch nicht ...

Wenn ich die Dateien hochlade, bekomme ich beim Aufrufen des Forums:

----------------------------------------------------------------------

Parse error: parse error, expecting `','' or `';'' in /homepages/32/dxxxxxxxx/htdocs/MK-SE/Sources/BoardIndex.php on line 458

Fatal error: Call to undefined function: boardindex() in /homepages/32/dxxxxxxxx/htdocs/MK-SE/index.php on line 316
Logged

MULTIMEDIA-KONSOLEN
BEI FRAGEN ODER PROBLEMEN MIT KONSOLEN, COMPUTERN & MOBILFUNK
Ironman
Guest
Re:[mod 1.5.1 Final]Singular Board Index
« Reply #24 on: April 18, 2003, 06:24:09 PM »
Reply with quote

Also langsam weiß ich auch nicht mehr weiter, anscheinend 'beißen' sich diese beiden Mods doch sehr...

HIER findest Du einen Screenshot mit einem Auszug des Codes der momentan im WEB-K Forum laufenden 'BoardIndex.php'.
« Last Edit: April 18, 2003, 06:29:05 PM by Mario472 » Logged
Ironman
Guest
Re:[update Mod 1.5.1]Singular Board Index V1.3
« Reply #25 on: April 19, 2003, 11:06:29 AM »
Reply with quote

Ich und mein Lieblings-Mod :P:

Mal wieder ein Update, jetzt Version 1.3, Download im ersten Posting dieses Threads.

Version 1.3 habe ich nun auf einem unmodifzierten Board (extra dafür aufgesetzt...) mit BoardMod 2.5.3 getestet und es funktioniert dort!
Logged
Daniel D.
Mod Team
YaBB God
*****
Posts: 2935


Re:[update Mod 1.5.1]Singular Board Index V1.3
« Reply #26 on: April 22, 2003, 03:54:10 PM »
Reply with quote

Leider noch ein kleiner Fehler mit den Tabellen !!
Hier ist die finale Version !!
Logged

Ironman
Guest
Re:[update Mod 1.5.1]Singular Board Index V1.3
« Reply #27 on: April 22, 2003, 04:24:44 PM »
Reply with quote

Nochmal Danke Daniel, hab's übernommen, Download der (endgültigen ??) Version1.4 im ersten Posting...
Logged
Daniel D.
Mod Team
YaBB God
*****
Posts: 2935


Re:[update Mod 1.5.1]Singular Board Index V1.4
« Reply #28 on: April 27, 2003, 01:33:46 AM »
Reply with quote

Habe den Mod noch einmal geändert. Jetzt ist der Code komfortabler und kann mit der neuen Version von "Membergroup Color" benutzt werden ! Bitte ladet beide Mods neu aus der Übersicht runter. :)
Logged

Pages: 1 [2] Reply Ignore Print 
YaBB SE Community  |  German User Help  |  Hilfe bzw. Diskussionen zu Mods  |  [MOD Update 1.5.1]Singular Board Index v1.5 « 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.030 seconds with 16 queries.