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

0 Members and 1 Guest are viewing this topic.

Offline www.katzen.ag

  • Jr. Member
  • **
  • Posts: 75
  • KatzenAG - das grosse Katzenportal im Internet
    • View Profile
    • KatzenAG - das grosse Katzenportal im Internet
Re: [addon] DREAMBOARD V 2.1
« Reply #375 on: December 29, 2007, 11:57:45 AM »
Hi,

I have found a bug. When I delete a posting then the script makes a mistake regarding the statistik.
One deleted posting >>> the script reduce 2 postings and 2 threats in the statistic. Somethimes I have to delete spam postings and due to this error my statistic is comlpleatly wrong.

Has anybody a idea?

Hallo,

ich habe einen bug gefunden. Wenn ich einen Beitrag lösche, dann wird das in der Statistik falsch berechnet.
Einen Beitrag löschen verursacht das 2 Themen und 2 Beiträge in der Statistik reduziert werden. Da ich schon mal Spameinträge löschen muss, addieren sich diese Fehler und di Statistik ist völlig falsch.

Hat Jemad ne Idee? 8O

Hakan
 
KatzenAG - das grosse Katzenportal im Internet

Offline www.katzen.ag

  • Jr. Member
  • **
  • Posts: 75
  • KatzenAG - das grosse Katzenportal im Internet
    • View Profile
    • KatzenAG - das grosse Katzenportal im Internet
Re: [addon] DREAMBOARD V 2.1
« Reply #376 on: January 19, 2008, 07:55:31 PM »
Hello everybody!

It would be very nice if Dreamboard (board.php) shows not only the last post date xx.xx.xxx but also "today xx.xx.xxxx" and "yesterday xx.xx.xxx".
So the visitors can see faster and better which message is new.

Can anybody help?
Kann Jemand herlfen?

Bin mal gespannt :wink:


PS: here is my Board: http://www.katzen.ag/board.php


 
KatzenAG - das grosse Katzenportal im Internet

Offline thunderstrike

  • 4images Guru
  • *******
  • Posts: 2.327
    • View Profile
Re: [addon] DREAMBOARD V 2.1
« Reply #377 on: January 19, 2008, 09:39:10 PM »

It would be very nice if Dreamboard (board.php) shows not only the last post date xx.xx.xxx but also "today xx.xx.xxxx" and "yesterday xx.xx.xxx".

Yes, I create:

http://www.4homepages.de/forum/index.php?topic=20160.0

and is possible for use with Dreamboard. ;)
8 steps need when ask question -

- PHP version (ACP - > phpinfo())
- mySQL version (ACP - > phpinfo())
- 4images version
- Post screenshot / URL
- Post code in BB Code (no need full file for code) or post attach file
- It doesn't work. What is say - what is do for no work
- Install MOD ? If so - please say (troubleshooting)
- Read FAQ ? Install Bug fixes ?

Offline www.katzen.ag

  • Jr. Member
  • **
  • Posts: 75
  • KatzenAG - das grosse Katzenportal im Internet
    • View Profile
    • KatzenAG - das grosse Katzenportal im Internet
Re: [addon] DREAMBOARD V 2.1
« Reply #378 on: January 19, 2008, 11:22:16 PM »
Thanks, I will try it to integrate it into Dreamboard.
Thanks
KatzenAG - das grosse Katzenportal im Internet

Offline www.katzen.ag

  • Jr. Member
  • **
  • Posts: 75
  • KatzenAG - das grosse Katzenportal im Internet
    • View Profile
    • KatzenAG - das grosse Katzenportal im Internet
Re: [addon] DREAMBOARD V 2.1
« Reply #379 on: January 20, 2008, 03:17:57 PM »
Hi thunderstrike!

I installed the MOD and it works.
But I need help to modify the

board.php:
$lastpostdate = format_date($config['date_format']." ".$config['time_format'], $board_lastpost_date);

AND

showboard.php:
$lastpost_date = format_date($config['date_format']." ".$config['time_format'], $thrlastpost_date);


I don't know how to replace it like e.g.:
echo "<td>".get_universal_field_date($comment_row['comment_date'])."</td>\n";


Any Idea??!? Thanks
KatzenAG - das grosse Katzenportal im Internet

Offline thunderstrike

  • 4images Guru
  • *******
  • Posts: 2.327
    • View Profile
Re: [addon] DREAMBOARD V 2.1
« Reply #380 on: January 20, 2008, 03:29:17 PM »
Hi thunderstrike!

I installed the MOD and it works.
But I need help to modify the

board.php:
$lastpostdate = format_date($config['date_format']." ".$config['time_format'], $board_lastpost_date);

AND

showboard.php:
$lastpost_date = format_date($config['date_format']." ".$config['time_format'], $thrlastpost_date);


I don't know how to replace it like e.g.:
echo "<td>".get_universal_field_date($comment_row['comment_date'])."</td>\n";


Any Idea??!? Thanks


Code: [Select]
$lastpostdate = format_date($config['date_format']." ".$config['time_format'], $board_lastpost_date);

for:

Code: [Select]
$lastpostdate = get_universal_field_date($board_lastpost_date);

and

Code: [Select]
$lastpost_date = format_date($config['date_format']." ".$config['time_format'], $thrlastpost_date);

for:

Code: [Select]
$lastpost_date = get_universal_field_date($thrlastpost_date);
8 steps need when ask question -

- PHP version (ACP - > phpinfo())
- mySQL version (ACP - > phpinfo())
- 4images version
- Post screenshot / URL
- Post code in BB Code (no need full file for code) or post attach file
- It doesn't work. What is say - what is do for no work
- Install MOD ? If so - please say (troubleshooting)
- Read FAQ ? Install Bug fixes ?

Offline www.katzen.ag

  • Jr. Member
  • **
  • Posts: 75
  • KatzenAG - das grosse Katzenportal im Internet
    • View Profile
    • KatzenAG - das grosse Katzenportal im Internet
Re: [addon] DREAMBOARD V 2.1
« Reply #381 on: January 20, 2008, 03:39:14 PM »
I*T W*O*R*K*S

Thanks a lot! Have nice Sunday, you made my day fine...
KatzenAG - das grosse Katzenportal im Internet

Offline thunderstrike

  • 4images Guru
  • *******
  • Posts: 2.327
    • View Profile
Re: [addon] DREAMBOARD V 2.1
« Reply #382 on: January 20, 2008, 03:47:45 PM »
Very good. Thank for posting. ;)
8 steps need when ask question -

- PHP version (ACP - > phpinfo())
- mySQL version (ACP - > phpinfo())
- 4images version
- Post screenshot / URL
- Post code in BB Code (no need full file for code) or post attach file
- It doesn't work. What is say - what is do for no work
- Install MOD ? If so - please say (troubleshooting)
- Read FAQ ? Install Bug fixes ?

rinaldos

  • Guest
Re: [addon] DREAMBOARD V 2.1
« Reply #383 on: January 21, 2008, 12:18:42 PM »
Hallo zusammen,
ist es möglich im Dreamboard einige Topics nur für Benutzer einer bestimmten Nutzergruppe freizugeben. Also nicht nur für Member sondern nur für Member einer Gruppe (als Beispiel: Diesunddas)
-----
Hello at all
Is it possible in some Dream Board Topics only for users of a particular user group to release. So, not only for member but only for members of a group (for example: Diesunddas)


Gruß
Ingo

Offline GeO3x

  • Newbie
  • *
  • Posts: 15
    • View Profile
    • Photopedia
Re: [addon] DREAMBOARD V 2.1
« Reply #384 on: February 22, 2008, 08:17:26 PM »
Hi, I've downloaded the zip filled attached to the first post and installed it as it sais in the readme file! (of course it didn't work - some major bugs)! lucky me - I have backed up all.
I've seen there have been some updates - it shows - writed on red - in the readme file..
My version is 1.7.6 - So what changes should I do?!
It sais to read the entire topic to track the changes.. but OMG - there are endless messages..

Offline Chicco

  • Full Member
  • ***
  • Posts: 211
    • View Profile
    • The Picture World
Re: [addon] DREAMBOARD V 2.1
« Reply #385 on: February 29, 2008, 09:34:03 PM »
HI.

Habe ein riesen Problem. nachdem ich bemerkt habe, das jemand mein Board als SPAM mißbraucht, habe ich nochmal die Berechtigungen geprüft und festgestellt, das alles auf GUEST steht. Sprich, nicht nur Gäste können nun die Beiträge lesen, sondern auch welche erstellen und beantworten etc. Ich bin mir sicher, das dies zuvpr aber nciht der fall war. Auch wenn ich nun das ganze ändere, behält er die einstellungen aber nciht bei. Sprich, es steht wieder guest danach drin.

Was ist los und wo kann ich es ändern, das z.b. nur members sich beiträge erstellen können sowie auf einen antworten können?

ist es etwa ein  Bug?


Wissen ist MACHT! Nix zu wissen macht aber auch nix! ;-)

Gruß
Ch¿cco

Offline FotoRalle

  • Jr. Member
  • **
  • Posts: 57
  • 4images als bestes Community-Script
    • View Profile
    • rs webregie | webdesign & webmaster
Re: [addon] DREAMBOARD V 2.1
« Reply #386 on: March 01, 2008, 02:04:49 PM »
HI.

Habe ein riesen Problem. nachdem ich bemerkt habe, das jemand mein Board als SPAM mißbraucht, habe ich nochmal die Berechtigungen geprüft und festgestellt, das alles auf GUEST steht. Sprich, nicht nur Gäste können nun die Beiträge lesen, sondern auch welche erstellen und beantworten etc. Ich bin mir sicher, das dies zuvpr aber nciht der fall war. Auch wenn ich nun das ganze ändere, behält er die einstellungen aber nciht bei. Sprich, es steht wieder guest danach drin.

Was ist los und wo kann ich es ändern, das z.b. nur members sich beiträge erstellen können sowie auf einen antworten können?

ist es etwa ein  Bug?

I have the same Problem with Spam by GUEST. Can't change to MEMBER.
Does anybody know the Problem?

Offline desperate_housewif

  • Full Member
  • ***
  • Posts: 105
    • View Profile
Re: [addon] DREAMBOARD V 2.1
« Reply #387 on: March 08, 2008, 04:53:34 PM »
Ich habe alle Dateien installiert. Wenn ich die board21_install.php aufrufe kommt folgende Fehlermeldung. In Linie 39 steht aber nur ein Erklärungstext. Was tun?

I have a problem, when I open board21_intall.php, I became this warning:

Code: [Select]
Warning: mysql_connect() [function.mysql-connect]: Can't connect to MySQL server on 'localhost' (10061) in L:\Web\XAMPP\xampp\htdocs\4images\includes\db_mysql.php on line 39

DB Error: Could not connect to the database server (localhost, root).

Offline wulfseidel

  • Pre-Newbie
  • Posts: 5
    • View Profile
Re: [addon] DREAMBOARD V 2.1
« Reply #388 on: April 20, 2008, 01:49:50 PM »
Hi,

funktioniert dieses Board mit 4images 1.7.6, wenn ich die Installations so durchführe wie hier angegeben?

die Integragtion von phpbb3 habe ich inzwischen aufgegeben  :?

Offline wulfseidel

  • Pre-Newbie
  • Posts: 5
    • View Profile
Re: [addon] DREAMBOARD V 2.1
« Reply #389 on: April 20, 2008, 03:55:13 PM »
Quote
Is there anyway to figure out what problems

-When i try to save changes made to the configuration fo the board, its says "Your request got error on prosses"
but it doesnt give me any indication of what that problem is.

- When i try to add a new catogory, it says "Category fields required"

- When i try to add a new board is says:
 "Board name fields required
You don't have any category yet
Board description fields required"

And Im sure that i installed this correctly, This is my second install attempt. and I just rechecked the changed files for the 3rd time.


Ich habe genau das gleiche Problem, kann niemand helfen?
I have the exact same problem, can anybody help?

Danke

(Anbei habe ich ein Bild hochgeladen, auf dem zu sehen ist, was passiert, wenn ich auf den Test-Eintrag klicke!)
(das zweite bild zeigt, was passiert, wenn ich im Adminbereich versuche, etwas zu ändern)
Well now i tried this an got same Problem as Muckelein
i run 4 images 1.7.6