Author Topic: [REQ]Dreamboard download  (Read 59913 times)

0 Members and 1 Guest are viewing this topic.

Offline mantra

  • Sr. Member
  • ****
  • Posts: 358
    • View Profile
    • DREAM WITH MANTRA
Re: [REQ]Dreamboard download
« Reply #15 on: April 05, 2005, 12:36:11 AM »
Any Progress Mantra with the new version?

not yet but you can download the old v.20  now from my web www.mantradream.com

Offline JensF

  • Addicted member
  • ******
  • Posts: 1.028
    • View Profile
    • http://www.terraristik-galerie.de
Re: [REQ]Dreamboard download
« Reply #16 on: June 26, 2005, 02:18:47 PM »
Is anyone working on this Mod?? I need the notify by Mail function when new replys are wrote....

Mit freundlichem Gruß
Jens Funk



-> Sorry for my bad English <-

Offline live@ct

  • Sr. Member
  • ****
  • Posts: 348
    • View Profile
Re: [REQ]Dreamboard download
« Reply #17 on: July 10, 2005, 11:54:48 PM »
someone that remember how to show the latest comments in dreamboard?!??!
Existen 10 tipos de personas, los que entienden el codigo binario y los que no.

b.o.fan

  • Guest
Re: [REQ]Dreamboard download
« Reply #18 on: July 11, 2005, 08:18:54 AM »
open your index.php

add this code before
Code: [Select]
//-----------------------------------------------------
//--- Print Out ---------------------------------------
//-----------------------------------------------------

Code:
Code: [Select]
//---------------------------
//------DREAMBOARD-------------
//----------------------------
if ($boardconfig['board_disable']){
$board .=format_boardtext($boardconfig['status_desc'], 0, 0, 0, 0, 1);
$iconmsg="<img src=\"".TEMPLATE_PATH."/board_images/danger.gif\"  border=\"0\"> ";

}else {
$board .="</br><table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" ><tr><td class=\"boxline\"><table width=\"100%\" border=\"0\" cellpadding=\"3\" cellspacing=\"2\" ><tr><td class=\"head2\"> ".$lang['recents_thread']."</td></tr></table>";
$boardgories = mysql_query ("SELECT catid,catname FROM ".BOARD_CAT_TABLE ."");
  while ($row = mysql_fetch_array($boardgories)) {
    $catid = $row['catid'];
    $catname = $row['catname'];

    $board .="<table width=\"100%\" border=\"0\" cellpadding=\"3\" cellspacing=\"2\" ><tr><td class=\"head1\"><b>$catname</b></td></tr></table>\n";


    $forums = mysql_query ("SELECT board_id,board_catid,board_name,board_desc,board_posts,board_topics,board_lastpost_id,board_lastpost_user,board_lastpost_date,board_lastpost_page,board_moderator,board_moderator_id FROM ".BOARD_TABLE."  WHERE board_catid='$catid'");
    while ($row = mysql_fetch_array($forums)) {
        $board_id = $row['board_id'];
        $board_catid = $row['board_catid'];
        $board_name = $row['board_name'];
        $board_lastpost_id = $row['board_lastpost_id'];
        $board_lastpost_user = $row['board_lastpost_user'];
        $board_lastpost_date = $row['board_lastpost_date'];
$board_lastpost_page = $row['board_lastpost_page'];
  $threadtitle = mysql_query ("SELECT thrtopic FROM ".BOARD_TCONT_TABLE."  WHERE thrid ='$board_lastpost_id' ");
         while ($rowtopic = mysql_fetch_array($threadtitle )) {
$topic = $rowtopic['thrtopic'];
             }
$sql = "SELECT thrlastpost_id FROM ".BOARD_TINDEX_TABLE."
            WHERE  thrlastpost_user ='$board_lastpost_user'
";
     $luid_row = $site_db->query_firstrow($sql);
     $lastpost = $luid_row['thrlastpost_id'];
 
 
$result = mysql_query ("SELECT user_id,user_lastvisit FROM ".USERS_TABLE."  WHERE user_name ='$board_lastpost_user' ");
         while ($user = mysql_fetch_array($result )) {
$lastvisit = $user['user_lastvisit'];
             }

   if ($lastpost == GUEST) {
         $lastuser = $board_lastpost_user;
             $idlast_post = "";
} else {
             $idlast_post = "<a href=\"".$site_sess->url(ROOT_PATH."member.php?action=showprofile&user_id=".$lastpost)."\">";
$lastuser = $board_lastpost_user ;
                     }
   if ($board_lastpost_date >= $user_info['user_lastvisit']) {
            $newtopic = "<img src=\"".TEMPLATE_PATH."/board_images/folder.gif\" alt=\"".$lang['new_post']."\" >";
$newlastpost ="<img src=\"".TEMPLATE_PATH."/board_images/new_last_post.gif\" border=\"0\" alt=\"".$lang['button_lastpost']."\">";

             } else {
            $newlastpost ="<img src=\"".TEMPLATE_PATH."/board_images/last_post.gif\" border=\"0\" alt=\"".$lang['button_lastpost']."\">";
    $newtopic = "<img src=\"".TEMPLATE_PATH."/board_images/forum_no_new.gif\" alt=\"".$lang['no_newpost']."\">";
                     }
        if ($board_lastpost_date == "0" ) {
        $board .="";
            } else {
    $lastpostdate = format_date($boardconfig['date_format']." ".$boardconfig['time_format'], $board_lastpost_date);
$row_bg_number = ($bgcounter++ % 2 == 0) ? 1 : 2;
        $board .=" <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"3\" class=\"row$row_bg_number\"><tr><td class=backboard nowrap>$newtopic</td><td class=backboard nowrap><b>$topic</b> <span class=\"smalltext\">$lastpostdate</span> &nbsp;".$lang['by']." $idlast_post $lastuser</a> <a href=\"showthread.php?bid=$board_id&threadid=$board_lastpost_id&page=$board_lastpost_page \">$newlastpost</a></td></tr></table>\n";
         }
   }
}
$board .=" </td></tr></table></br>";
}
$site_template->register_vars("board", $board);

open your home.html on template folder

put this code {board}


b.o.fan

Offline mawenzi

  • Moderator
  • 4images Guru
  • *****
  • Posts: 4.500
    • View Profile
Re: [REQ]Dreamboard download
« Reply #19 on: July 11, 2005, 03:03:42 PM »
hi b.o.fan,

thanks for posting Latest comments in dreamboard
that's what I'm searching for some time ...  :D

mawenzi
Your first three "must do" before you ask a question ! ( © by V@no )
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

You are on search for top 4images MOD's ?
- then please search here ... Mawenzi's Top 100+ MOD List (unsorted sorted) ...

Offline Gulper

  • Newbie
  • *
  • Posts: 22
    • View Profile
Re: [REQ]Dreamboard download
« Reply #20 on: August 03, 2005, 04:10:01 PM »
hmmm.... works great.. but the backlink to the poster does not work.. it always says user has ID 0... like when I post as admin.. then check the new module where I get my post listed... I can not click on posted by "admin" as the user ID is 0.... and posting as another user also gives a backlink with the user ID 0.... check image for better understanding (sorry for my bad english)

TheOracle

  • Guest
Re: [REQ]Dreamboard download
« Reply #21 on: August 03, 2005, 06:29:04 PM »
replace :

Quote

&user_id=".$lastpost


for :

Code: [Select]

&user_id=".$user['user_id']


Will this work ?

Offline Gulper

  • Newbie
  • *
  • Posts: 22
    • View Profile
Re: [REQ]Dreamboard download
« Reply #22 on: August 03, 2005, 09:10:15 PM »
No, does not work.... now it looks like this:   

Quote
member.php?action=showprofile&user_id=&sessionid=343q4trt345vc42342qc23423

TheOracle

  • Guest
Re: [REQ]Dreamboard download
« Reply #23 on: August 03, 2005, 10:30:44 PM »
Sorry, it should be :

Code: [Select]

&user_id=".$user_info['user_id']


Offline Gulper

  • Newbie
  • *
  • Posts: 22
    • View Profile
Re: [REQ]Dreamboard download
« Reply #24 on: August 03, 2005, 11:16:52 PM »
Yepp, worked! :)
Thanx!! :D

TheOracle

  • Guest
Re: [REQ]Dreamboard download
« Reply #25 on: August 03, 2005, 11:57:42 PM »
That's what I thought. ;)

Offline bibabobu

  • Sr. Member
  • ****
  • Posts: 311
  • Technische und künstlerische Gravuren
    • View Profile
    • Technische und künstlerische Gravuren für die gesamte Metall-, Kunststoff- und Papierindustrie
Re: [REQ]Dreamboard download
« Reply #26 on: August 25, 2005, 10:02:36 PM »
Hello!

i just installed the dreamboard  on my 1.7.1 4images version.
the database tables all were installed sucessfully!!!

i have two links in my ACP for controlling the board.
i could edit, make and delete forum categories, but no postings.
And i think i can not activate the forum.

if i activate the forum in "config board" and i click on "update config board" it says "request sucessfully proceed".

But in the gallery i only get a white page in my board.html which is a formerly home.html within the {board} tag.

Would be very kind to receive some help for this problem.
 :roll:

Offline mawenzi

  • Moderator
  • 4images Guru
  • *****
  • Posts: 4.500
    • View Profile
Re: [REQ]Dreamboard download
« Reply #27 on: August 25, 2005, 10:15:29 PM »
hi bibabobu,

also ... wenn ich direkt deine board.php aufrufe, dann lande ich in deinem neuen Forum, das sieht soweit ganz ok aus ...
... aber über dein Menü sollte nicht ...index.php?template=board sondern direkt ...board.php aufgerufen werden !

mawenzi
Your first three "must do" before you ask a question ! ( © by V@no )
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

You are on search for top 4images MOD's ?
- then please search here ... Mawenzi's Top 100+ MOD List (unsorted sorted) ...

Offline bibabobu

  • Sr. Member
  • ****
  • Posts: 311
  • Technische und künstlerische Gravuren
    • View Profile
    • Technische und künstlerische Gravuren für die gesamte Metall-, Kunststoff- und Papierindustrie
Re: [REQ]Dreamboard download
« Reply #28 on: August 25, 2005, 10:21:55 PM »
was sieht da denn ok aus?

das ist doch nur dieses INFO Fenster. Wo ist da das Board?

kannst Du mir mal genau die URL sagen welche Du meinst?

habe www.industrie-gravuren.de/galerie/board.php  versucht

EDIT:
ok wenn ich abgemeldet bin, dann erscheint ein Login Fenster, wie in 4images.
Melde ich mich dann an, passiert nichts weiter, als das nur dieses Info Fenster mit meinem Text aus dem ACP.
 :cry:

Offline mawenzi

  • Moderator
  • 4images Guru
  • *****
  • Posts: 4.500
    • View Profile
Re: [REQ]Dreamboard download
« Reply #29 on: August 25, 2005, 10:46:25 PM »
also ...

1. das ist ein Link : board.php (wie oben auch) !
2. hast du im ACP schon Kategorien angelegt ... sonst können auch keine angezeigt werden ?
3. wie hast du die Kategorien freigegeben ... nur für member ?
4. hast du das Board in der Konfiguration aktiviert ? ... Nein  :!:
5. das zusätzliche Login-Fenster würde ich löschen ... denn einmal anmelden in der Galerie reicht !

mawenzi
Your first three "must do" before you ask a question ! ( © by V@no )
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

You are on search for top 4images MOD's ?
- then please search here ... Mawenzi's Top 100+ MOD List (unsorted sorted) ...