Issues with Download 6.3.3

Support zu den Modifikationen (MODs) von Entwickler OXPUS für das phpBB 3.0.x
bog_tom
Beiträge: 66
Registriert: Fr 5. Jun 2009, 15:36

Re: Issues with Download 6.3.3

Beitrag von bog_tom »

oxpus hat geschrieben:Again:
The file styles/proSilver/template/user_welcome_inactive.txt ist NOT part of the download mod and will also not be used by it.
So you've an error with your phpBB and not with the download mod.
I understand and that's why I cleaned manually cached data so I should be fine there. My issue is not with template file but with the Download section.

Do you think that it could be an issue because of my template?
Benutzeravatar
oxpus
Chief handy-man
Beiträge: 2719
Registriert: Do 13. Dez 2007, 23:06
Wohnort: Irgendwo im I-Net
Kontaktdaten:

Re: Issues with Download 6.3.3

Beitrag von oxpus »

Maybe, but I don't know, which style you uses.
Karsten Ude
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
bog_tom
Beiträge: 66
Registriert: Fr 5. Jun 2009, 15:36

Re: Issues with Download 6.3.3

Beitrag von bog_tom »

It looks that it's a known bug in phpBB: http://www.phpbb.com/bugs/phpbb3/54505
Benutzeravatar
DDG
Beiträge: 16
Registriert: Mo 10. Aug 2009, 02:20

Re: Issues with Download 6.3.3

Beitrag von DDG »

Hallo

open includes/functions_messenger.php

find:

Code: Alles auswählen

      // Parse message through template
      $this->msg = trim($this->tpl_obj->assign_display('body'));
before, add:

Code: Alles auswählen

      // Quite dirty, but that will stop flooding the database stored styles with our email-templates!
      $orig_template_storedb = $user->theme['template_storedb'];
      $user->theme['template_storedb'] = false;
after, add:

Code: Alles auswählen

      // Put the value back to default
      $user->theme['template_storedb'] = $orig_template_storedb;

SQL:

Code: Alles auswählen

DELETE FROM `phpbb_styles_template_data` WHERE `template_filename` LIKE '%.txt'
(found at http://www.phpbb.de/community/viewtopic ... 3#p1146443)

Gruß Dirk
bog_tom
Beiträge: 66
Registriert: Fr 5. Jun 2009, 15:36

Re: Issues with Download 6.3.3

Beitrag von bog_tom »

That's cool.

Hopefully phpbb.com will use the same fix....
Benutzeravatar
oxpus
Chief handy-man
Beiträge: 2719
Registriert: Do 13. Dez 2007, 23:06
Wohnort: Irgendwo im I-Net
Kontaktdaten:

Re: Issues with Download 6.3.3

Beitrag von oxpus »

Thanks for this hint, but please do not post similar like this in the future here on phpbb3.oxpus.net, because this forum supports only the MODs and NOT the phpBB itself!!
Karsten Ude
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
bog_tom
Beiträge: 66
Registriert: Fr 5. Jun 2009, 15:36

Re: Issues with Download 6.3.3

Beitrag von bog_tom »

No problem. I just wanted to point out that it's indeed a phpBB issue and not a Download MOD issue
Antworten