kostenloser Webspace werbefrei: lima-city


cyCase... Nur weißer Background?!, und Schrift?!

lima-cityForumDie eigene HomepageHomepage Allgemein

  1. Autor dieses Themas

    onlinegaming

    Kostenloser Webspace von onlinegaming, auf Homepage erstellen warten

    onlinegaming hat kostenlosen Webspace.

    Hallo ihr Lietmanesen,
    ich habe mir cyCase auf meinen Webspace gezogen und installiert.
    Nun siehts aber irgendwie nicht richtig aus (glaub ich:eek:)
    ref="/tag/http">http://onlinegaming.lima-city.de/cyCase/

    Was muss ich machen?
    Würde mich über hilfe freuen.:thumb:

    Gruß
    onlinegaming (checkerle)
  2. Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!

    lima-city: Gratis werbefreier Webspace für deine eigene Homepage

  3. himynameischris

    Kostenloser Webspace von himynameischris, auf Homepage erstellen warten

    himynameischris hat kostenlosen Webspace.

    ich würd mal sagen, du schickst eine nachricht an lucas9991.
    der kennt sich mit dem gut aus ^^

    mfg
    chris
  4. Huhu,

    funktioniert doch?! :-)
    Der Admin CP ist unter http://onlinegaming.lima-city.de/cyCase/admin.php.
    Über das Admin CP kannst du nun alles verwalten. Allerdings gibt es zur Zeit keine wirklichen Module. Also kein Gästebuch, Forum etc., dass müsstest du selber programmieren. Oder auf die neue Version warten. Oder mich so lange nerven, bis ich die Module auf meiner Platte suche. :P

    Im Admin CP kannst du jetzt jedenfalls einzelne Unterseiten erstellen und verwalten.
    Wichtig ist, dass du dein eigenes Layout einfügen musst (unter template/).

    Ansonsten weiß ich gerade nicht mehr was es zu sagen gibt. ^^

  5. Autor dieses Themas

    onlinegaming

    Kostenloser Webspace von onlinegaming, auf Homepage erstellen warten

    onlinegaming hat kostenlosen Webspace.


    lucas9991:
    Oder mich so lange nerven, bis ich die Module auf meiner Platte suche.


    :biggrin: OK danke, dann werde ich dich jetzt so lange nerven bis du die Module etc rausrückst :P:thumb:

    Achja rück auch gleich mal bitte ein Template raus! :lol: Muhahaha :biggrin:


    Gruß onlinegaming (checkerle)


    Beitrag geändert: 29.11.2007 14:06:03 von onlinegaming
  6. Erstelle erst einmal alle Template Dateien:
    template/new_thread.html
    <form method="post" action="?action=new_thread">
            <table class="board">
              <tr>
                <td colspan="2"> <h4>Neuen Eintrag im %cms% Forum erstellen</h4> </td>
              </tr>
              <tr>
                <td> &#220;berschrift : </td>
                <td> <input type="text" name="name_1" size="65" value="" /> </td>
              </tr>
              <tr>
                <td> Name : </td>
                <td> <input type="text" name="name_2" size="65" value="" /> </td>
              </tr>
              <tr>
                <td> Text : </td>
                <td> <textarea cols="49" rows="15" name="text"></textarea> </td>
              </tr>
              <tr>
                <td> Speichern : </td>
                <td> <input type="submit" name="submit" onClick="this.value='Speichere - Bitte warten...';" value="Speichern" /> </td>
              </tr>
            </table>
          </form>


    template/thread.html
    <table class="board">
          %posts%
          </table><br /><br />
          <a href="?action=new_post&amp;id=%id%">Antworten</a>


    template/board.html
    <table class="board">
            <tr>
              <td class="board_header"> #NR </td>
              <td class="board_header"> Titel </td>
              <td class="board_header"> Autor </td>
              <td class="board_header"> Datum </td>
            </tr>
            %topics%
          </table><br /><br />
          <a href="?action=new_thread">Neuen Thread erstellen</a>


    template/post.html
    <tr>
              <td class="board_name">
                <span class="small">
                  #%i% <a name="post_%id%">%time%</a>
                </span><br />
                <span class="b">
                  %name%
                </span><br /><br />
              </td>
              <td class="board">
                %text% 
              </td>
            </tr>


    template/topic.html
    <tr>
              <td class="board"> #%i% </td>
              <td class="board"> <a href="?action=threads&amp;id=%id%">%text%</a> </td>
              <td class="board"> %name% </td>
              <td class="board"> %time% </td>
            </tr>


    template/new_post.html
    <form method="post" action="?action=new_post&amp;id=%id%">
            <table class="board">
              <tr>
                <td colspan="2"> <h4>Neuen Eintrag im %cms% Forum erstellen</h4> </td>
              </tr>
              <tr>
                <td> Name : </td>
                <td> <input type="text" name="name" size="65" value="" /> </td>
              </tr>
              <tr>
                <td> Text : </td>
                <td> <textarea cols="49" rows="15" name="text"></textarea> </td>
              </tr>
              <tr>
                <td> Speichern : </td>
                <td> <input type="submit" name="submit" onClick="this.value='Speichere - Bitte warten...';" value="Speichern" /> </td>
              </tr>
            </table>
          </form>




    Soooo...
    nun musst du noch die Seite erstellen im Admin CP:

    Link: new_thread
    Kat: 2
    Text:
    if ( !isset ( $_POST['submit'] ) ) {
      druck ( $template -> file ( '', 'template/new_thread.html' ) );
    } else {
      $dummy = array ();
      $dummy['id'] = '';
      $dummy['name'] = $_POST['name_2'];
      $dummy['text'] = cyCase_cut ($_POST['name_1'], '180');
      $dummy['time'] = time ();
      $dummy['ip'] = cyCase_ip ();
      $dummy['kat'] = '2';
      $mysql -> insert ( $tables['inserts'], $dummy );
      
      $dummy = array ();
      $dummy['id'] = '';
      $dummy['name'] = $_POST['name_2'];
      $dummy['text'] = $_POST['text'];
      $dummy['time'] = time ();
      $dummy['ip'] = cyCase_ip ();
      $dummy['kat'] = '_'.mysql_insert_id ().'';
      $mysql -> insert ( $tables['inserts'], $dummy );
      druck ( '<meta http-equiv="refresh" content="1; URL=?action=threads&amp;id='.mysql_insert_id ().'" />', 'refresh' );
      druck ( 'Erfolgreich hinzugef&#252;gt!<br />
    Sie werden weitergeleitet - <a href="?action=threads&amp;id='.mysql_insert_id ().'">Weiter</a>' );
    }


    Link: board
    Kat: 2
    Text:
    $i = $mysql -> rows ($tables['inserts'], "WHERE kat = '%s'", '2');
    $result = $mysql -> select ("SELECT * FROM `%s` WHERE kat = '2' ORDER by `time` DESC", $tables['inserts']);
    $board = array ();
    $board['topics'] = '';
    foreach ($result as $res) {
      $res['time'] = datum ($res['time']);
      $res['i'] = $i;
      $res['text'] = cyCase_cut ($res['text'], '180');
      $res = cyCase_de_html ($res);
      $board['topics'] .= $template -> file ($res, 'template/topics.html');
      $i--;
    }
    druck ($template -> file ($board, 'template/board.html'), 'kontent');


    Link: threads
    Kat: 2
    Text:
    $i = $mysql -> rows ( $tables['inserts'], "WHERE kat = '_%s'", $_GET['id'] );
    $dummy = array ();
    $dummy[] = $tables['inserts'];
    $dummy[] = $_GET['id'];
    $result = $mysql -> select ( "SELECT * FROM `%s` WHERE kat = '_%s' ORDER BY `time` DESC", $dummy );
    $thread = array ();
    $thread['posts'] = '';
    $thread['id'] = $_GET['id'];
    foreach ( $result as $res ) {
      $res = cyCase_bbcode_board ( $res );
      $res['time'] = datum ( $res['time'] );
      $res['i'] = $i;
      $thread['posts'] .= $template -> file ( $res, 'template/posts.html' );
      $i--;
    }
    druck ($template -> file ( $thread, 'template/thread.html' ) );


    Link: new_post
    Kat: 2
    Text:
    if ( !isset ( $_POST['submit'] ) ) {
      $dummy = array ();
      $dummy['id'] = $_GET['id'];
      druck ( $template -> file ( $dummy, 'template/new_post.html' ) );
    } else {
      $dummy = array ();
      $dummy['id'] = '';
      $dummy['name'] = $_POST['name'];
      $dummy['text'] = $_POST['text'];
      $dummy['time'] = time ();
      $dummy['ip'] = cyCase_ip ();
      $dummy['kat'] = '_'.$_GET['id'];
      $mysql -> insert ( $tables['inserts'], $dummy );
      druck ( '<meta http-equiv="refresh" content="1; URL=?action=threads&amp;id='.$_GET['id'].'" />', 'refresh' );
      druck ( 'Erfolgreich hinzugef&#252;gt!<br />
    Sie werden weitergeleitet - <a href="?action=threads&amp;id='.$_GET['id'].'">Weiter</a> ' );
    }



    Puh, das d&#252;rfte es gewesen sein. Wenn was nicht klappt, dann habe ich jetzt auch keine Lust mehr. ^^
    Habe vier PHPMyAdmins danach abgesucht...


    Beitrag geändert: 29.11.2007 14:19:20 von lucas9991
  7. Autor dieses Themas

    onlinegaming

    Kostenloser Webspace von onlinegaming, auf Homepage erstellen warten

    onlinegaming hat kostenlosen Webspace.

    LOL, dass du das jetzt wirklich machst h&#228;tte ich nicht gedacht!:biggrin:

    Vieeelen Dank:thumb:
    :biggrin:

  8. Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!

    lima-city: Gratis werbefreier Webspace für deine eigene Homepage

Dir gefällt dieses Thema?

Über lima-city

Login zum Webhosting ohne Werbung!