PHP Problem mit Nuke, dem Forum und der Anzeige der linken Blöcke....

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • PHP Problem mit Nuke, dem Forum und der Anzeige der linken Blöcke....

    Hallo Leute!

    So langsam bin ich echt am verzweifeln......

    ich versuche folgendes hinzubekommen....ich möchte wenn ich auf den Link für das Forum klicke, das sich dieses so öffnet das die linken Blöcke, mit der Navigation. bestehen bleiben. So wie es eigentlich auch normal ist!

    Wenn ich nun auf den Link klicke, öffnet sich das Forum über die ganze Breite und die Blöcke links sind nicht vorhanden.

    Ich denke das es an der theme.php liegt, nur kenne ich mich nicht so gut mit der Materie aus, und bin echt auf eure Hilfe angewiesen.

    Ihr könnt euch das hier mal anschauen: www.lost-soldiers.de

    Ich nutze PHPNuke 6.9

    hier einmal der Quellcode meiner theme.php:

    <?php
    $bgcolor1 = "#000000";
    $bgcolor2 = "#000000";
    $bgcolor3 = "#000000";
    $bgcolor4 = "#000000";
    $textcolor1 = "#ffffff";
    $textcolor2 = "#ffffff";

    function OpenTable() {
    global $bgcolor1, $bgcolor2;
    echo "<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"0\" bgcolor=\"$bgcolor2\"><tr><td>\n";
    echo "<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"8\" bgcolor=\"$bgcolor1\"><tr><td>\n";
    }

    function CloseTable() {
    echo "</td></tr></table></td></tr></table>\n ";
    }

    function OpenTable2() {
    global $bgcolor1, $bgcolor2;
    echo "<table border=\"0\" cellspacing=\"1\" cellpadding=\"0\" bgcolor=\"$bgcolor2\" align=\"center\"><tr><td>\n";
    echo "<table border=\"0\" cellspacing=\"1\" cellpadding=\"8\" bgcolor=\"$bgcolor1\"><tr><td>\n";
    }

    function CloseTable2() {
    echo "</td></tr></table></td></tr></table>\n ";
    }

    function FormatStory($thetext, $notes, $aid, $informant) {
    global $anonymous;
    if ($notes != "") {
    $notes = "<b>"._NOTE."</b> <i>$notes</i>\n";
    } else {
    $notes = "";
    }
    if ("$aid" == "$informant") {
    echo "<font class=\"content\">$thetext$notes</font>\n";
    } else {
    if($informant != "") {
    $boxstuff = "<a href=\"user.php?op=userinfo&uname=$informant\"><b>$informant</a > ";
    } else {
    $boxstuff = "<b>Un anonimo ";
    }
    $boxstuff .= "segnala:</b> \"$thetext\"$notes\n";
    echo "<font class=\"content\">$boxstuff</font>\n";
    }
    }

    /************************************************************/
    /* Function themeheader() */
    /************************************************************/

    function themeheader() {
    global $banners, $name;
    echo "<body bgcolor=\"#000000\" text=\"#ffffff\" link=\"0000ff\" leftmargin=0 rightmargin=0 topmargin=0>\n";
    if ($banners) {
    include("banners.php");
    echo "";
    }

    echo "<table border=\"0\" cellpadding=\"0\" cellspacing=\"1\" width=\"80\" align=\"center\">\n"

    ."<tr><td width=\"100%\" height=\"11\" valign=\"bottom\">\n"
    ."<map name=\"FPMap0\">"
    ."</map>"
    ."<img border=\"0\" src=\"themes/stal_clanspy/images/1.jpg\" usemap=\"#FPMap0\" width=\"995\" height=\"100\">"


    ."<tr><td width=\"100%\">\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"995\">\n"
    ."<tr><td width=\"100%\"><table width='100%' cellspacing='0' cellpadding='0' border='0'><tr><td bgcolor='#000000'>\n"
    ."<tr><td bgcolor=\"#000000\"><img src=\"themes/stal_clanspy/images/pixel.gif\" width=\"100%\" height=\"3\"></td></tr>\n";
    echo "</td></tr></table><table width=\"995\" cellpadding=\"0\" bgcolor=\"#000000\" cellspacing=\"0\" border=\"0\">\n"
    ."<tr valign=\"top\">\n"
    ."<td><img src=\"themes/stal_clanspy/images/pixel.gif\" width=\"4\" height=\"1\" border=\"0\" alt=\"\"></td>\n"
    ."<td width=\"130\" bgcolor=\"#000000\" valign=\"top\">\n";
    if ($name=='Forums') {}
    else if ($name=='Members_List') {}
    else if ($name=='Private_Messages') {}
    else {
    blocks(left);
    }
    echo "</td><td><img src=\"themes/stal_clanspy/images/pixel.gif\" width=\"4\" height=\"1\" border=\"0\" alt=\"\"></td><td width=\"100%\">\n";
    }

    /************************************************************/
    /* Function themefooter() */
    /* */
    /* Control the footer for your site. You don't need to */
    /* close BODY and HTML tags at the end. In some part call */
    /* the function for right blocks with: blocks(right); */
    /* Also, $index variable need to be global and is used to */
    /* determine if the page your're viewing is the Homepage or */
    /* and internal one. */
    /************************************************************/

    function themefooter() {
    global $index;
    echo "";
    if ($index == 1) {
    echo "</td><td><img src=\"themes/stal_clanspy/images/pixel.gif\" width=\"4\" height=\"1\" border=\"0\" alt=\"\"></td><td valign=\"top\" width=\"150\" bgcolor=\"#000000\">\n";
    blocks(right);
    echo "<td><img src=\"themes/stal_clanspy/images/pixel.gif\" width=\"4\" height=\"1\" border=\"0\" alt=\"\">";
    }
    else {
    echo "</td><td colspan=\"2\"><img src=\"themes/stal_clanspy/images/pixel.gif\" width=\"4\" height=\"1\" border=\"0\" alt=\"\">";
    }
    echo "</td></tr></table>\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\"
    style=\"border-collapse: collapse\" bordercolor=\"#000000\" width=\"100%\"
    bgcolor=\"#000000\"><tr><td width=\"100%\">"
    ."<center>";
    footmsg();
    echo "";
    // DO NOT REMOVE THE FOLLOWING COPYRIGHT LINE. YOU'RE NOT ALLOWED TO REMOVE NOR EDIT THIS.
    echo "<a href=\"http://www.thethemes.net\" target=\"_blank\"><img src=\"themes/stal_clanspy/images/bar.gif\" align=\"right\" width=\"980\" height=\"17\" border=\"0\"></a>";
    echo "</center></table></table></table>";
    }


    function themeindex ($aid, $informant, $time, $title, $counter, $topic, $thetext, $notes, $morelink, $topicname, $topicimage, $topictext) {
    global $anonymous, $tipath;
    echo "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr><td>\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"1\" width=\"100%\"><tr><td bgcolor=\"#000000\">\n"
    ."<table border=\"0\" cellpadding=\"2\" cellspacing=\"0\" width=\"100%\"><tr>\n"
    ."<td background=\"themes/stal_clanspy/images/header_news.gif\" width=\"100%\" height=\"23\"><font class=\"option\"><b> $title</b></font></td> </tr>\n"
    ."<tr><td background=\"themes/stal_clanspy/images/back1.gif\" colspan=\"2\" bgcolor=\"#000000\">\n"
    ."<table border=\"0\" width=\"100%\" align=\"center\"><tr><td>\n"
    ."<a href=\"modules.php?name=News&new_topic=$topic\"><img src=\"$tipath$topicimage\" alt=\"$topictext\" border=\"0\" align=\"right\"></a>";
    FormatStory($thetext, $notes, $aid, $informant);
    echo "</td></tr></table>\n"
    ."</td></tr></table>\n"
    ."</td></tr><tr><td bgcolor=\"#000000\" align=\"left\">\n"
    ." "
    ."<b><font class=\"tiny\">"._POSTEDBY." ";
    formatAidHeader($aid);
    echo " - $time $timezone </font>\n"
    ."<font class=\"content\">$morelink</font></center>\n"
    ."<img src=\"themes/stal_clanspy/images/pixel.gif\" border=\"0\" height=\"1\">"
    ."</td></tr></table>\n"
    ."</td></tr><tr><td background=\"themes/stal_clanspy/images/header_news_down.gif\" width=\"100%\" height=\"15\"></tr>"
    ."<tr><td bgcolor=\"#000000\"><img src=\"themes/stal_clanspy/images/pixel.gif\" width=\"100%\" height=\"4\"></td></tr></table>\n";
    }

    function themearticle ($aid, $informant, $datetime, $title, $thetext, $topic, $topicname, $topicimage, $topictext) {
    global $admin, $sid, $tipath;
    echo "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr><td>\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr><td bgcolor=\"#000000\">\n"
    ."<table border=\"0\" cellpadding=\"4\" cellspacing=\"0\" width=\"100%\">"
    ."<tr><td background=\"themes/stal_clanspy/images/header_news_article.gif\" width=\"100%\" height=\"23\"><font class=\"option\"><b> $title</b></font></td> </tr>\n"
    ."<tr><td colspan=\"2\" background=\"themes/stal_clanspy/images/back1.gif\">\n"
    ."<table border=\"0\" width=\"98%\" align=\"center\"><tr><td>\n"
    ."<a href=\"modules.php?name=News&new_topic=$topic\"><img src=\"$tipath$topicimage\" alt=\"$topictext\" border=\"0\" align=\"right\"></a>";
    FormatStory($thetext, $notes="", $aid, $informant);
    echo "</td></tr></table>\n"
    ."</td></tr></table>\n"
    ."</td></tr>\n"
    ."</table></td></tr>\n"
    ."<tr><td background=\"themes/stal_clanspy/images/header_news_down_article.gif\" width=\"100%\" height=\"15\"></tr>"
    ."<tr><td><div align=\"center\"><a href=\"http://www.thethemes.net\" target=\"_blank\"><img src=\"http://www.thethemes.net/banner.jpg\" alt=\"ClanSpy.net advertising\" width=\"468\" height=\"60\" border=\"0\"></a></div></td></tr>\n"
    ."<tr><td bgcolor=\"#000000\"><img src=\"themes/stal_clanspy/images/pixel.gif\" width=\"100%\" height=\"4\"></td></tr></table>\n";
    }

    function themesidebox($title, $content) {
    echo "<table border=\"0\" align=\"center\" width=\"150\" cellpadding=\"0\" cellspacing=\"0\">"
    ."<tr><td background=\"themes/stal_clanspy/images/header.gif\" width=\"130\" height=\"16\">"
    ." <font color=\"#cccccc\"><b>$title</b></font>"
    ."</td></tr><tr><td><img src=\"themes/stal_clanspy/images/pixel.gif\" width=\"100%\" height=\"1\"></td></tr></table>\n"
    ."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"130\">\n"
    ."<tr><td width=\"130\" bgcolor=\"#000000\">\n"
    ."<table border=\"0\" cellpadding=\"3\" cellspacing=\"1\" width=\"150\">\n"
    ."<tr><td background=\"themes/stal_clanspy/images/back1.gif\" width=\"130\" bgcolor=\"#000000\">\n"
    ."$content"
    ."</td></tr></table></td></tr><td background=\"themes/stal_clanspy/images/header_down.gif\" width=\"130\" height=\"16\"></td><tr><td><img src=\"themes/stal_clanspy/images/pixel.gif\" width=\"130\" height=\"4\"></td></tr></table>";
    }

    ?>

  • #2
    Bitte PHP code auch in entsprechenden [PHP]-Tags posten. nicht in [QUOTE].

    Allgemein sieht dein Posting eher nach ner Projekthilfe aus, als nach nem PHP Problem.

    Kommentar


    • #3
      bei der länge bietet sich auch ein dateianhang an. der ist wohl hierbei wesentlich sinnvoller.
      INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


      Kommentar

      Lädt...
      X