Author Topic: [addon] DREAMBOARD V 2.1  (Read 479081 times)

0 Members and 1 Guest are viewing this topic.

Offline glitzer

  • Full Member
  • ***
  • Posts: 204
    • View Profile
    • over 7000 E-Cards
Re: [addon] DREAMBOARD V 2.1
« Reply #60 on: November 01, 2005, 08:08:31 PM »
Hi Eagly,

thanks for your tip, but i have the same problem.

i have search in the whole forum for this fault, someone has the same problem i read,but its no solution for this problem.
I think its a error in the datebase, because i have copied all original php files from dreamboard once more in my ftp. but its the same problem.

I write a topic send it..i get the message it will be redirect and after this i got the message..it can find my topic.

I am very sad :((
yesterday i send in my newsletter at all to my members i have a new forum, and now it doesnt work.


Offline Stoleti

  • Hero Member
  • *****
  • Posts: 574
    • View Profile
Re: [addon] DREAMBOARD V 2.1
« Reply #61 on: November 01, 2005, 08:18:41 PM »
@ glitzer: try to change "Posts perpage" in your Board Config in ACP. Maybe it helps...

I´m trying to make a boardsearch.

greez

 :wink: Nice !!

Offline glitzer

  • Full Member
  • ***
  • Posts: 204
    • View Profile
    • over 7000 E-Cards
Re: [addon] DREAMBOARD V 2.1
« Reply #62 on: November 01, 2005, 08:21:42 PM »
Nice? :(

Offline Stoleti

  • Hero Member
  • *****
  • Posts: 574
    • View Profile
Re: [addon] DREAMBOARD V 2.1
« Reply #63 on: November 01, 2005, 11:03:12 PM »
lil mistake ....

i've said nice for Egly , about trying make a search form.........

Offline Buster

  • Jr. Member
  • **
  • Posts: 60
    • View Profile
Re: [addon] DREAMBOARD V 2.1
« Reply #64 on: November 02, 2005, 07:52:57 AM »

@ others: sorry, maybe Mantra has a solution..

I think my problem ist PhP5 - dreamboard is not willing to run errorless with it.
Regards,
Reiner

Offline mantra

  • Sr. Member
  • ****
  • Posts: 358
    • View Profile
    • DREAM WITH MANTRA
Re: [addon] DREAMBOARD V 2.1
« Reply #65 on: November 03, 2005, 02:25:58 AM »
dreamboard not fully tested on php 5, and somebody send me PM about there problem in dreamboard with there site,  I did mention in my website how you can get full of suport if you not sharing [ they remove my link and also my logo ],

I'M SICK SICK, DO YOU THING THE DREAMBOARD FALL FROM THE SKY. :evil: :evil: :evil: :evil: :evil: :evil: :evil:

http://www.e-cardss.com/pics/board.php

sorry if i'm to hard i just don't have the time right now.

Offline Buster

  • Jr. Member
  • **
  • Posts: 60
    • View Profile
Re: [addon] DREAMBOARD V 2.1
« Reply #66 on: November 03, 2005, 07:13:26 AM »
dreamboard not fully tested on php 5, and somebody send me PM about there problem in dreamboard with there site,  I did mention in my website how you can get full of suport if you not sharing [ they remove my link and also my logo ],

I'M SICK SICK, DO YOU THING THE DREAMBOARD FALL FROM THE SKY. :evil: :evil: :evil: :evil: :evil: :evil: :evil:

http://www.e-cardss.com/pics/board.php

sorry if i'm to hard i just don't have the time right now.

Sorry Mantra, but I didn't remove your link - nevertheless dreamboard didn't run under PhP5. :)
Regards,
Reiner

Offline JensF

  • Addicted member
  • ******
  • Posts: 1.028
    • View Profile
    • http://www.terraristik-galerie.de
Re: [addon] DREAMBOARD V 2.1
« Reply #67 on: November 12, 2005, 05:07:24 PM »
Has this Version the function: email sent when new reply ????

And another. Now i use the Version 1.0 but they don´t work with my style.css. All at the board is grey (see: http://www.terraristik-galerie.de/board.php) but all other site works with my style.css (see: http://www.terraristik-galerie.de/categories.php?cat_id=10)

Can anyone help??
Mit freundlichem Gruß
Jens Funk



-> Sorry for my bad English <-

Offline Egly

  • Jr. Member
  • **
  • Posts: 71
    • View Profile
Re: [addon] DREAMBOARD V 2.1
« Reply #68 on: November 13, 2005, 08:35:13 AM »
Hi Jens,

no, it hasnt a mail function, but if you want it anyway do as follows:

open boardreply.php and find:

Code: [Select]
$sql = "SELECT board_name, board_moderator, board_moderator_email, board_mod_emailpost FROM ".BOARD_TABLE."  WHERE board_id = '$bid'";
        $result = $site_db->query($sql);
        $num_rows = $site_db->get_numrows($result);
        $row = array();
        while ($row = $site_db->fetch_array($result)) {
$board_id = $row['board_id'];
        $board_name = $row['board_name'];
    $board_moderator = $row['board_moderator'];
$board_moderator_email = $row['board_moderator_email'];
$board_mod_emailpost  = $row['board_mod_emailpost'];
        }
   $site_db->free_result($result);

insert below:

Code: [Select]
//////////////////////////////////////////
 ////////////Eglys Email@reply/////////////
 //////////////////////////////////////////
$sql = "SELECT user_email FROM ".BOARD_TREP_TABLE.", ".USERS_TABLE." WHERE "
.USERS_TABLE.".user_id = ".BOARD_TREP_TABLE.".repuser_id AND
repthrid = '$threadid' group by user_email";

        $result = $site_db->query($sql);
        $row = array();
        while ($row = $site_db->fetch_array($result)) {
$repuser = $row['repuser_id'];
$repmailto = $row['user_email'];
  $from = "xyz@xyz.com";            //insert your email adress here
  $post_url=$script_url."/showthread.php?bid=$bid&threadid=$threadid&page=$getlastpage";
        include_once(ROOT_PATH.'includes/email.php');
        $site_email = new Email();
        $site_email->set_from($from);
        $site_email->set_to($repmailto);
        $site_email->set_subject($subject_form);
        $site_email->register_vars(array(
          "recipient_name" => $board_moderator,
          "forum_name" => $board_name,
          "sender_name" => $username_form,
  "topics_url" => $post_url,
  "topics_content" => $message_form,
  "about" => $lang['new_reply'],
  "board_name" => $boardconfig['board_name']
 
        ));
                $site_email->set_body("board_mailtopics", $config['language_dir']);
                $site_email->send_email();
}
   
$sql= "SELECT user_email FROM ".BOARD_TCONT_TABLE.", ".USERS_TABLE." WHERE "
.USERS_TABLE.".user_id = ".BOARD_TCONT_TABLE.".thrstarter_id AND
thrid = '$threadid' ";

        $result = $site_db->query($sql);
        $row = array();
        while ($row = $site_db->fetch_array($result)) {
$repuser = $row['repuser_id'];
$repmailto = $row['user_email'];
$thrstarter2 =$row['thrstarter_id'];
  if ($thrstarter2 <> $repuser) {

$from = "xyz@xyz.com";            // insert your email adress here
  $post_url=$script_url."/showthread.php?bid=$bid&threadid=$threadid&page=$getlastpage";
        include_once(ROOT_PATH.'includes/email.php');
        $site_email = new Email();
        $site_email->set_from($from);
        $site_email->set_to($repmailto);
        $site_email->set_subject($subject_form);
        $site_email->register_vars(array(
          "recipient_name" => $board_moderator,
          "forum_name" => $board_name,
          "sender_name" => $username_form,
  "topics_url" => $post_url,
  "topics_content" => $message_form,
  "about" => $lang['new_reply'],
  "board_name" => $boardconfig['board_name']
 
        ));
                $site_email->set_body("board_mailtopics", $config['language_dir']);
                $site_email->send_email();
}else {}}

 //////////////////////////////////////////
 //////////End Eglys Email@reply///////////
 ////////////////////////////////////////// 

I commented two lines, where you have to insert your email Adress.
It should work, im using it for a while now.

2. Question:  The board uses another .css file
this file is in: /templates/<your template>/board_images/board_style.css


Greez Egly

Offline JensF

  • Addicted member
  • ******
  • Posts: 1.028
    • View Profile
    • http://www.terraristik-galerie.de
Re: [addon] DREAMBOARD V 2.1
« Reply #69 on: November 13, 2005, 09:07:00 AM »
Hi,

hhmm, think this is not what i mean. I mean a function where a user can activate a checkbox by a thread they called "Send Mail by new reply".

Its a function where you have in this Forum, too! Now i write this reply and you becomes a mail from the that anyone have write a reply...

 
Mit freundlichem Gruß
Jens Funk



-> Sorry for my bad English <-

Offline Stoleti

  • Hero Member
  • *****
  • Posts: 574
    • View Profile
Re: [addon] DREAMBOARD V 2.1
« Reply #70 on: November 13, 2005, 05:52:50 PM »
and its possible create a POLL (option) or a search form for forum ? searching in forum (db) .. ?

 :?:

Offline Stoleti

  • Hero Member
  • *****
  • Posts: 574
    • View Profile
Re: [addon] DREAMBOARD V 2.1
« Reply #71 on: November 20, 2005, 01:55:45 AM »
Another question :

why when i use glow or shadow function this show on post 1 words for each line  8O ???

How make Nª of Posts Show on Member Profile ???

Offline Nasser

  • Full Member
  • ***
  • Posts: 105
    • View Profile
Re: [addon] DREAMBOARD V 2.1
« Reply #72 on: November 20, 2005, 02:45:49 AM »
hey guys I need to add this wonderful add on to my 4images script ..
from where can I download it please ?

Offline Acidgod

  • 4images Moderator
  • 4images Guru
  • *****
  • Posts: 2.421
  • It's me?
    • View Profile
    • Flash-Webdesign
Re: [addon] DREAMBOARD V 2.1
« Reply #73 on: November 20, 2005, 10:38:46 AM »
please read the first post... (o:

Offline Nasser

  • Full Member
  • ***
  • Posts: 105
    • View Profile
Re: [addon] DREAMBOARD V 2.1
« Reply #74 on: November 20, 2005, 05:01:04 PM »
please read the first post... (o:

thank you very much .. I read it the first time .. and followed the link , but didn't notice the download icon .. so I thought that I didn't understand

but now I installed the add on WOW .. it's really great and the exactly what I need !!

thank you very much
thanks to the programmer ..

really a very wonderful addon to 4images

wish you the best always