Gallery Block 1.4.1 keine Blöcke angezeigt
Gallery Block 1.4.1 keine Blöcke angezeigt
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 ?
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.
-
- 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
Hallo,
schau mal im ACP unter Portal ---------> Galerie Block nach----------->acp_demo/de/.
schau mal im ACP unter Portal ---------> Galerie Block nach----------->acp_demo/de/.
V.G. archivar
sorry for my bad english
sorry for my bad english
Re: Gallery Block 1.4.1 keine Blöcke angezeigt
Hab ich ja , siehe ... ( Ausschnitt )
Aber gibts da nirgends so ne Option wie bei anderen Blöcken : aktivieren ja/nein
Bei mir sieht es jetzt so aus :
index.php
additional_block.php
index_body.html
additional_blocks_center.html
additional_blocks_right.html
EDIT :
Habe von GB V1.4.1 auf GB V1.4.2 upgedatet , wird immer noch nichts angezeigt ...
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']);
}
Code: Select all
if (!defined('IN_PHPBB') || !defined('IN_PORTAL'))
{
exit;
}
include($phpbb_root_path . 'portal/block/gallery.'.$phpEx);
Code: Select all
<!-- INCLUDE forumlist_body.html -->
<!-- INCLUDE gallery/recent_body.html -->
Code: Select all
<!-- additional_blocks //-->
<!-- INCLUDE gallery/recent_body.html -->
Code: Select all
<!-- additional_blocks //-->
<!-- INCLUDE portal/block/gallery_body.html -->
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.
-
- 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
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:
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.
Code: Select all
<!-- INCLUDE portal/block/gallery_body.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.
Re: Gallery Block 1.4.1 keine Blöcke angezeigt
Hier mal der Inhalt der additional_blocks_right.html , sind ja nur 3 Zeilen :
weiß nicht was ich noch machen könnte
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 -->
Stimmt ,aber hier muss ja auch was anderes reinMarc wrote:Das gleiche gilt für die additional_blocks_center.html.
Code: Select all
<!-- INCLUDE gallery/recent_body.html -->
Habe in Einstellungen für kleinen sowie mittleren Block und Forenübersicht zufällige Bilder und Name des Albums angewählt ,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.
weiß nicht was ich noch machen könnte
-
- 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
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?
http://feuerwehr-wangerooge.de/styles/p ... right.html
und:
http://feuerwehr-wangerooge.de/styles/p ... enter.html
Fällt dir da was auf?
Re: Gallery Block 1.4.1 keine Blöcke angezeigt
Hier der komplette Inhalt :
additional_blocks_right.html
additional_blocks_center.html
Meinst Du 2009-04-20 , alte Version ?
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 -->
Code: Select all
<!-- version $Id: additional_blocks_center.html 503 2009-04-20 18:34:29Z kevin74 $ //-->
<!-- additional_blocks //-->
<!-- INCLUDE gallery/recent_body.html -->
-
- 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
Probiere mal das hier:------------->viewtopic.php?f=28&t=4153&p=26979#p26979
V.G. archivar
sorry for my bad english
sorry for my bad english
Re: Gallery Block 1.4.1 keine Blöcke angezeigt
Jau , damit gehts , Dankeeeee.....