[ABD] Download Block 1.0.2

Forum rules
This forum is not for support requests.

Only post Modifications for Board3 Portal 1.0.x in this forum.

Murari
Active Member
Posts: 1
Joined: 23. December 2009 21:13

Re: [REL] Download Block 1.0.2

Post by Murari »

User avatar

Topic author
Christian_N
Former Team Member
Posts: 2266
Joined: 19. January 2008 01:17
phpBB.de User: Christian_N
phpBB.com User: Christian_N
Location: Frankfurt
Contact:

Re: [REL] Download Block 1.0.2

Post by Christian_N »

Sorry leuts aber ich habe momentan überhaupt keine Zeit, totaler Stress und kein nerv für sowas gerade.
Hoffe das im neue Jahr es wieder besser wird, falls bis dorthin kein User-helfen-User oder irgendwer eine hilfestellung geben konnten für eures Problem, dann meldet Euch bitte noch mal - Danke.

Nun alle noch schnell frohe Weihnachten und guten Rutsch ins neue Jahr wünsch.
Meine Projekte: Chantals - Fanpage .::. phpBB Projekt
No support via PM, email or messenger!
User avatar

DDG
Active Member
Posts: 34
Joined: 21. September 2009 05:47
phpBB.de User: DDG
phpBB.com User: DDG
Location: Hannover

Re: [REL] Download Block 1.0.2

Post by DDG »

Habe ich versucht:
öffne portal/block/recent_dl.php (portal/block/recent_download.php gibt es nicht)

Finde:

Code: Select all

/*
* recent downloads - addon for Download MOD 6.x.x
*/
$user->add_lang('mods/info_acp_b3p_recent_dl');
$user->data['dl_enable_desc'] = false;
$user->data['dl_enable_rule'] = false;
include($phpbb_root_path . 'dl_mod/classes/class_dlmod.'.$phpEx);
Ersetze mit:

Code: Select all

/*
* recent downloads - addon for Download MOD 6.x.x
*/
$user->add_lang('mods/info_acp_b3p_recent_dl');
$user->data['dl_enable_desc'] = false;
$user->data['dl_enable_rule'] = false;
include($phpbb_root_path . 'dl_mod/classes/class_dl_cache.' . $phpEx);
include($phpbb_root_path . 'dl_mod/classes/class_dlmod.'.$phpEx);
Cache gelehrt, Template aktualisiert, und DL Block eingeschaltet:

Code: Select all

Fatal error: Call to a member function obtain_dl_config() on a non-object in /srv/www/ls-modfabrik.de/public_html/dl_mod/classes/class_dlmod.php on line 103 
im Forenindex.
Im Portal wird der DL Mod angezeigt, klicke ich aber auf einen DL, kommt auch ein Fehler:

Code: Select all

Fatal error: Cannot redeclare class dlmod_cache in /srv/www/ls-modfabrik.de/public_html/dl_mod/classes/class_dl_cache.php on line 264
Also noch mal an viewtopic.php?f=21&t=1570&start=15#p18736 gedacht, und das ganze mit

Code: Select all

/*
* recent downloads - addon for Download MOD 6.x.x
*/
$user->add_lang('mods/info_acp_b3p_recent_dl');
$user->data['dl_enable_desc'] = false;
$user->data['dl_enable_rule'] = false;
if (!class_exists('dlmod'))
{
	include($phpbb_root_path . 'dl_mod/classes/class_dl_cache.' . $phpEx);
	include($phpbb_root_path . 'dl_mod/classes/class_dlmod.'.$phpEx);
}
ersetzt. der klick auf den DL Link funktioniert wieder. Der Forenindex bringt immer noch den gleichen Fehler

Noch jemand eine Idee?
Gruß Dirk

www.THOMASBAUER.cc
Active Member
Posts: 2
Joined: 30. December 2009 10:51
phpBB.de User: wwwthomasbauerattf
phpBB.com User: wwwthomasbauerattf

Re: [REL] Download Block 1.0.2

Post by www.THOMASBAUER.cc »

Mod: http://phpbb3.oxpus.net/downloads.php?v ... il&df_id=1

Bei der instllation des Download-Blocks 1.0.2 bekomm ich den fehler:

Code: Select all

Allgemeiner Fehler
SQL ERROR [ mysql4 ]

Table 'fm-austria.DL_CONFIG_TABLE' doesn't exist [1146]

SQL

SELECT * FROM DL_CONFIG_TABLE

BACKTRACE


FILE: includes/db/mysql.php
LINE: 174
CALL: dbal->sql_error()

FILE: install2/install_functions.php
LINE: 107
CALL: dbal_mysql->sql_query()

FILE: install2/install_install.php
LINE: 107
CALL: load_dl_config()

FILE: install2/install_install.php
LINE: 72
CALL: install_install->check_server_requirements()

FILE: install2/index.php
LINE: 199
CALL: install_install->main()

FILE: install2/index.php
LINE: 51
CALL: module->load()
Hab die Installationsanweisungen befolgt und dann install.php aufgerufen und beim Starten vom 1. Schritt kommt dann der Fehler...
User avatar

DDG
Active Member
Posts: 34
Joined: 21. September 2009 05:47
phpBB.de User: DDG
phpBB.com User: DDG
Location: Hannover

Re: [REL] Download Block 1.0.2

Post by DDG »

Hallo
Der Download Mod ist installiert und funktioniert?

Gruß Dirk

Zookeeper
Active Member
Posts: 4
Joined: 23. November 2009 12:37

Re: [REL] Download Block 1.0.2

Post by Zookeeper »

I have a simular error whem running the Install file.

Code: Select all

Algemene fout
SQL ERROR [ mysql4 ]

Table 'wlbqfedr_www.DL_CONFIG_TABLE' doesn't exist [1146]

SQL

SELECT * FROM DL_CONFIG_TABLE

BACKTRACE

FILE: includes/db/mysql.php
LINE: 174
CALL: dbal->sql_error()

FILE: install/install_functions.php
LINE: 107
CALL: dbal_mysql->sql_query()

FILE: install/install_install.php
LINE: 107
CALL: load_dl_config()

FILE: install/install_install.php
LINE: 72
CALL: install_install->check_server_requirements()

FILE: install/index.php
LINE: 199
CALL: install_install->main()

FILE: install/index.php
LINE: 51
CALL: module->load()
De download mod is up and running fine.

phpbb3 v 3.0.6
download mod v 6.3.4
board3 portal v 1.0.4
portal addon download block v 1.0.2

www.THOMASBAUER.cc
Active Member
Posts: 2
Joined: 30. December 2009 10:51
phpBB.de User: wwwthomasbauerattf
phpBB.com User: wwwthomasbauerattf

Re: [REL] Download Block 1.0.2

Post by www.THOMASBAUER.cc »

Stimmt doch gar nicht. ich habe überall die aktuelle version und bei der install kommmt immer der fehler

Zookeeper
Active Member
Posts: 4
Joined: 23. November 2009 12:37

Re: [REL] Download Block 1.0.2

Post by Zookeeper »

I still have the error message.

I have tried to do the code change described at the beginning of this topic, in the install file.
http://board3.de/viewtopic.php?p=17055#p17055
After the code change it will install the download block. but when you go to the portal then i get another error mesage.

Code: Select all

Fatal error: Call to a member function obtain_dl_config() on a non-object in /home/wlbqfedr/domains/zootycoon.nl/public_html/forum/dl_mod/classes/class_dlmod.php on line 103
So i uninstalled the downloadblock mod again.

The problem is still there, Is there someone who can help me with this?

p.s. we also have a testforum so we can test all kinds of stuff before we put it on our live forum , On our testfroum there where no problems at all with this expansion for the portal. That is why we decided to put it on our live forum, but with no results.

Zookeeper
Active Member
Posts: 4
Joined: 23. November 2009 12:37

Re: [REL] Download Block 1.0.2

Post by Zookeeper »

Bump. The problem with de config seems to be with the fact that from DL Mod v-6.3.4 there are no separate config tables in use. That is what Oxpus wrote on the DL-Mod site. The support can only be given here.
Is there someone who can help me with these Table problems?

Zookeeper
Active Member
Posts: 4
Joined: 23. November 2009 12:37

Re: [REL] Download Block 1.0.2

Post by Zookeeper »

Bump, is there still any support for this MOD? It seems that Christian_N has not been on the forum for a long time?

Can someone else help me with my problem as descibed in my previous post?
User avatar

Topic author
Christian_N
Former Team Member
Posts: 2266
Joined: 19. January 2008 01:17
phpBB.de User: Christian_N
phpBB.com User: Christian_N
Location: Frankfurt
Contact:

Re: [ABD] Download Block 1.0.2

Post by Christian_N »

Aus Private Gründen ist diese Erweiterung von mir eingestellt, wie man schon merkte kam ich kaum zum Supporten.
Es gibt also keine Weiterentwicklung/Support derzeit mehr von mir, bis bei mir alles wieder im Lot ist.

Sollte jemand interessen haben diese Erweiterung weiterzuentwickel kann die Person es gernen tun, wäre schön wenn man mir vorher aber eine PN schickt, damit ich die weiterentwicklung nicht irgendwann wenn ich wieder mehr Zeit habe aufnehme brauche. :)

Thema aus dem oben genannten Grund somit vorerst geschlossen...
Meine Projekte: Chantals - Fanpage .::. phpBB Projekt
No support via PM, email or messenger!
Locked

Return to “board3 Portal v1.0.x - Modifications”