Gallery Block 1.4.1 keine Blöcke angezeigt

Post Reply
User avatar

Topic author
derkubi
Portal Enthusiast
Posts: 159
Joined: 12. March 2008 18:52
Contact:

Gallery Block 1.4.1 keine Blöcke angezeigt

Post by derkubi »

Deine Portal Version: 1.0.6
Typ Deines phpBB Forums: Standard phpBB3
MODs installiert: Ja
Dein Wissensstand: Fortgeschritten
Link zu Deinem Forum: http://feuerwehr-wangerooge.de

Was hast Du gemacht, bevor das Problem aufgetreten ist?
Gallerie Block 1.2.1 installiert

Was hast Du bereits versucht um das Problem zu lösen?
Cache -> Board - Themes - Templates - Grafiksammlung und Browsercache refreshed
Installations Anweisungen und entspr. Dateien nochmals kontrolliert
Im ACP Option zum aktivieren der Blöcke gesucht


Fehlerbeschreibung und Nachricht
Moin

Habe Gallerie V1.0.5.1 und Gallerie Block V1.4.1 installiert , finde aber keine Option
die Blöcke zu aktivieren .

Irgend ein Tip ?
Last edited by derkubi on 21. March 2011 23:57, edited 1 time in total.
User avatar

archivar
Portal Professional
Posts: 1959
Joined: 19. April 2009 21:34
phpBB.de User: archivar
phpBB.com User: archivar
Location: Deutschland

Re: Gallery Block 1.4.1 keine Blöcke angezeigt

Post by archivar »

Hallo,
schau mal im ACP unter Portal ---------> Galerie Block nach----------->acp_demo/de/. ;)
V.G. archivar
sorry for my bad english
User avatar

Topic author
derkubi
Portal Enthusiast
Posts: 159
Joined: 12. March 2008 18:52
Contact:

Re: Gallery Block 1.4.1 keine Blöcke angezeigt

Post by derkubi »

Hab ich ja , siehe ... ( Ausschnitt )
Image

Aber gibts da nirgends so ne Option wie bei anderen Blöcken : aktivieren ja/nein

Bei mir sieht es jetzt so aus :

index.php

Code: Select all

$user->setup('viewforum');
/**
* Recent images & comments and random images
*
* borrowed from phpBB Gallery
* @author: nickvergessen
* @function: recent_gallery_images
*/

$gallery_root_path = GALLERY_ROOT_PATH;

if (!function_exists('obtain_portal_config'))
{
    include($phpbb_root_path . 'portal/includes/functions.' . $phpEx);
    $portal_config = obtain_portal_config();
}
if (!function_exists('load_gallery_config'))
{
    $recent_image_addon = true;
    include($phpbb_root_path . $gallery_root_path . 'includes/common.' . $phpEx);
    include($phpbb_root_path . $gallery_root_path . 'includes/permissions.' . $phpEx);
}

include($phpbb_root_path . $gallery_root_path . 'includes/functions_recent.' . $phpEx);
$ints = array(
    'rows'        => $portal_config['portal_pg_index_rows'],
    'columns'    => $portal_config['portal_pg_index_columns'],
    'comments'    => $portal_config['portal_pg_index_crows'],
    'contests'    => $portal_config['portal_pg_index_contests'],
);
/**
* int        array    including all relevent numbers for rows, columns and stuff like that,
* display    int        sum of the options which should be displayed, see gallery/includes/constants.php "// Display-options for RRC-Feature" for values
* modes        int        sum of the modes which should be displayed, see gallery/includes/constants.php "// Mode-options for RRC-Feature" for values
* collapse    bool    collapse comments
* include_pgalleries    bool    include personal albums
* mode_id    string    'user' or 'album' to only display images of a certain user or album
* id        int        user_id for user profile or album_id for view of recent and random images
*/
if ($portal_config['portal_pg_index_mode'] != '!all')
{
    recent_gallery_images($ints, $portal_config['portal_pg_index_display'], $portal_config['portal_pg_index_mode'], $portal_config['portal_pg_index_comments'], $portal_config['portal_pg_index_pgalleries']);
} 
additional_block.php

Code: Select all

if (!defined('IN_PHPBB') || !defined('IN_PORTAL'))
{
   exit;
}
include($phpbb_root_path . 'portal/block/gallery.'.$phpEx); 
index_body.html

Code: Select all

<!-- INCLUDE forumlist_body.html -->
<!-- INCLUDE gallery/recent_body.html --> 
additional_blocks_center.html

Code: Select all

<!-- additional_blocks //-->
<!-- INCLUDE gallery/recent_body.html -->
 
additional_blocks_right.html

Code: Select all

<!-- additional_blocks //-->
<!-- INCLUDE portal/block/gallery_body.html -->
 
EDIT :

Habe von GB V1.4.1 auf GB V1.4.2 upgedatet , wird immer noch nichts angezeigt ...
Last edited by derkubi on 22. March 2011 00:04, edited 2 times in total.
User avatar

Marc
Dev
Posts: 2504
Joined: 17. July 2008 21:08
phpBB.de User: marc1706
phpBB.com User: Marc
Location: Clausthal-Zellerfeld / München
Contact:

Re: Gallery Block 1.4.1 keine Blöcke angezeigt

Post by Marc »

Also, ich habe mir gerade den o.g. Link angeschaut und mir ist dabei z.B. in der additional_blocks_right.html aufgefallen, dass das hier fehlt:

Code: Select all

<!-- INCLUDE portal/block/gallery_body.html -->
Das gleiche gilt für die additional_blocks_center.html.

Damit die Blöcke aktiviert werden, musst du bloß einen Modus auswählen. Wählst du keinen Modus aus, wird der Block auch nicht angezeigt.
User avatar

Topic author
derkubi
Portal Enthusiast
Posts: 159
Joined: 12. March 2008 18:52
Contact:

Re: Gallery Block 1.4.1 keine Blöcke angezeigt

Post by derkubi »

Hier mal der Inhalt der additional_blocks_right.html , sind ja nur 3 Zeilen :

Code: Select all

<!-- version $Id: additional_blocks_right.html 503 2009-04-20 18:34:29Z kevin74 $ //-->
<!-- additional_blocks //-->
<!-- INCLUDE portal/block/gallery_body.html -->
Marc wrote:Das gleiche gilt für die additional_blocks_center.html.
Stimmt ,aber hier muss ja auch was anderes rein

Code: Select all

<!-- INCLUDE gallery/recent_body.html -->
Marc wrote:Damit die Blöcke aktiviert werden, musst du bloß einen Modus auswählen. Wählst du keinen Modus aus, wird der Block auch nicht angezeigt.
Habe in Einstellungen für kleinen sowie mittleren Block und Forenübersicht zufällige Bilder und Name des Albums angewählt ,
weiß nicht was ich noch machen könnte
User avatar

Marc
Dev
Posts: 2504
Joined: 17. July 2008 21:08
phpBB.de User: marc1706
phpBB.com User: Marc
Location: Clausthal-Zellerfeld / München
Contact:

Re: Gallery Block 1.4.1 keine Blöcke angezeigt

Post by Marc »

Schau dir mal den Quelltext von dieser Datei an:
http://feuerwehr-wangerooge.de/styles/p ... right.html

und:
http://feuerwehr-wangerooge.de/styles/p ... enter.html

Fällt dir da was auf? ;)
User avatar

Topic author
derkubi
Portal Enthusiast
Posts: 159
Joined: 12. March 2008 18:52
Contact:

Re: Gallery Block 1.4.1 keine Blöcke angezeigt

Post by derkubi »

Hier der komplette Inhalt :

additional_blocks_right.html

Code: Select all

<!-- version $Id: additional_blocks_right.html 503 2009-04-20 18:34:29Z kevin74 $ //-->
<!-- additional_blocks //-->
<!-- INCLUDE portal/block/gallery_body.html -->
additional_blocks_center.html

Code: Select all

<!-- version $Id: additional_blocks_center.html 503 2009-04-20 18:34:29Z kevin74 $ //-->
<!-- additional_blocks //-->
<!-- INCLUDE gallery/recent_body.html -->
Meinst Du 2009-04-20 , alte Version ?
User avatar

archivar
Portal Professional
Posts: 1959
Joined: 19. April 2009 21:34
phpBB.de User: archivar
phpBB.com User: archivar
Location: Deutschland

Re: Gallery Block 1.4.1 keine Blöcke angezeigt

Post by archivar »

Probiere mal das hier:------------->viewtopic.php?f=28&t=4153&p=26979#p26979
V.G. archivar
sorry for my bad english
User avatar

Topic author
derkubi
Portal Enthusiast
Posts: 159
Joined: 12. March 2008 18:52
Contact:

Re: Gallery Block 1.4.1 keine Blöcke angezeigt

Post by derkubi »

Jau , damit gehts , Dankeeeee.....
Post Reply

Return to “Modifications Support”