symon00 képe

Nézz körül mindig a modulok readme.txt-ben, ott leírják mit is kell, még ha nem is tudsz angolul, nagy valószínűséggel megérted.

1. Download and unpack the Colorbox plugin in "sites/all/libraries".
Link: http://colorpowered.com/colorbox/colorbox.zip
Drush users can use the command "drush colorbox-plugin".
2. Download and unpack the Colorbox module directory in your modules folder
(this will usually be "sites/all/modules/").
3. Go to "Administer" -> "Modules" and enable the module.

Kihagytad az 1. lépést:
Letöltöd és kicsomagolod a Colorbox plugint a sites/all/libraries mappába.

1
0
SzeFe képe

hogy "1000" éve telepítettem. Eddig semmi gondom nem volt vele, ezért aztán az időközbeni frissítéseken kívül semmi dolgom nem volt vele. Arra emlékszek, hogy az elején elég sokat elszöszöltem a beállítgatásokkal, de azóta nem foglalkoztam ilyesmivel. Igazából már nem emlékszek arra, hogy akkoriban mit miért csináltam.

Szerintem ezek lehetnek rá hatással:

Content Access 6.x-1.2
Premium 6.x-1.0-alpha1

Image 6.x-1.2 Lehetővé teszi a képek feltöltését, méretezését és megtekintését.
Image Attach (enabled), Image Gallery (enabled), Image Import (enabled) használja
Image Attach 6.x-1.2 Segítségével a tartalmakhoz könnyedén lehet képeket csatolni.
Image (enabled) szükséges a bekapcsolásához
Image Gallery 6.x-1.2 Segítségével a galériák kategóriánként szűrhetővé és rendezhetővé válnak.
Image (enabled), Taxonomy (enabled) szükséges a bekapcsolásához
Image Import 6.x-1.2 Lehetővé teszi, hogy a kiszolgálón lévő könyvtárból egy lépésben lehessen képeket importálni.
Image (enabled) szükséges a bekapcsolásához
ImageMagick Advanced Options

Img 6.x-2.2 Display images in posts
Upload (enabled) szükséges a bekapcsolásához
Img comments 6.x-2.2 Display images in comments
Comment (enabled) szükséges a bekapcsolásához

Signup 6.x-1.0 Allow users to sign up for content (especially events).
Views (enabled) szükséges a bekapcsolásához
Calendar Signup (enabled), Signup confirm e-mail (disabled), Signup Roles (disabled) használja

Views 6.x-2.16 Create customized lists and queries from your database.
Signup (enabled), Views exporter (enabled), Views UI (enabled), Calendar Signup (enabled), Signup confirm e-mail (disabled), Signup Roles (disabled) használja
Views exporter 6.x-2.16 Allows exporting multiple views at once.
Views (enabled) szükséges a bekapcsolásához
Views UI 6.x-2.16 Administrative interface to views. Without this module, you cannot create or edit your views.
Views (enabled) szükséges a bekapcsolásához

Nem tudom, sikerült e előbbre lendítenem a dolgon valamit?

Köszönettel: SzeFe

0
0
pallagi68 képe

, hogy kicsit elhamarkodott volt ez a drupal nekem. Nekem is ajánlották, megnéztem pár videót a neten, minden szép és jó, pillanatok alatt lehet blogot csinálni, stb. De arra nekem kellett rájönnöm már a honlap felállítása során, hogy html és css ismeretek, programozói tudás nélkül igazán komoly, szép lapot nemigen lehet összehozni. Én nem akarok amerikai sminkeket venni 30-40 dollárért, de a tudásom meg nem elég.

letöltöttem pl. a Pro Drupal Development című könyv sminkekre vonatkozó fejezetét. Nagyon szuper, nagyon jó, de amikor a html kódba kellett volna beírni, azonnal elakadtam.

Azt hiszem megfogadom a tanácsot és veszek egy html - css könyvet, hátha okosabb leszek. Egyébként ha már ennyire benne vagyunk a témában, van egy javaslatom drupal alatt fejlesztő web designereknek. Csináljatok drupal alá profi sminkeket és áruljátok a neten. Esküszöm én is vennék, ha elérhető áron adnák. Aki nem programozó és nincs ideje, annak megér ennyit. Egy egyszerű felhasználó inkább a tartalommal foglalkozna.

Ami a fórumra vonatkozik. Most kicsit keresgéltem és szinte minden fórumon panaszkodnak a drupalra. Tudom, hogy ti elfogultak vagytok, de rugalmasnak kell lenni. Mindenhonnan a legjobbat kellene összehozni. A drupal nagyon jó, király, de mint minden másnak, ennek is vannak gyenge pontjai, ezt el kell fogadni.

Amúgy köszi az értelmes hozzászólásokat.

0
0
Paal képe

Istennő vagy!!! De 5.x alatt nem megy sajnos. Gondolom változtattak pár dolgot. Esetleg át tudnád írni?


Nagyon köszi!

Üdv, Pali


Ps.:

Maga a li tag megkapja az "aktiv" class-t, csak éppen a link kiíratása nem jó.


<ul id="primary">
<li class="aktiv" >
    Array</li>
<li>
    Array</li>
</ul>	


Ez van a tömbben:
Array ( [title] => Kezdőlap [href] =>  [attributes] => Array ( ) )
Array ( [title] => Könyv nyitólap [href] => node/4 [attributes] => Array ( ) )
0
0

--
Palócz Paal Pál, a drupal.hu admin csoportjának tagja
Ajánlott olvasmány: Eric Steven Raymond - Hogyan kérdezzünk okosan

aboros képe

bár leginkább magunknak :)
az argumentum kezelő php kód:

if (arg(0) == 'node' && is_numeric(arg(1))) {
  $node = node_load(arg(1));
  if ($node->type == 'event') {
    $translations = translation_node_get_translations($node->tnid);
    $args = array();
    foreach ($translations as $key => $value) {
      $args[] = $value->nid;
    }
    return implode(",", $args);
  }
}
0
0

-
clear: both;

eMeLA képe

Az kevés.
A menü előállítására egy globális változót használ $_menu. Követhetetlen mit mikor pakol bele és vesz el. Ráadásul még a cache-ben is tárolja.

Feladtam, íme a direkt megoldás (menu.inc - 4.7.2):

function menu_tree($pid = 1) {
  $menu = menu_get_menu();
 
  if (isset($menu['visible'][$pid]) && $menu['visible'][$pid]['children']) {
    foreach ($menu['visible'][$pid]['children'] as $mid) {
 
      $type = isset($menu['visible'][$mid]['type']) ? $menu['visible'][$mid]['type'] : NULL;
      $children = isset($menu['visible'][$mid]['children']) ? $menu['visible'][$mid]['children'] : NULL;
      $output .= theme('menu_item', $mid, menu_in_active_trail($mid) || ($type & MENU_EXPANDED) ? theme('menu_tree', $mid) : '', count($children) == 0);
 
//------------------------------------------
// ide kerülhet tetszőleges menü 
// a -53 a Saját adatok menüpont ID-je 
//------------------------------------------
if ($mid == -53) $output .= '<li class="leaf"><a href="xy" title="xy">xy</a></li>';
//------------------------------------------
    }
  }
 
 
  return $output;
}

Nem túl elegáns, de működik :)
Az érdekessége, hogy csak akkor jelenik meg amikor a felhasználó bejelentkezik.

0
0

...mit tudok: http://web.termuves.hu

44 képe

íme az aggregator-item.tpl.php:

<?php
// $Id: aggregator-item.tpl.php,v 1.1 2008/03/11 19:25:59 lioz Exp $
 
//Marinelli template for feed aggregator
?>
 
 
<div class="feedcontainer">
<div class="feedimage">
 
 
</div>
 
<div class="feedcontent">
 
  <h2>
    <a href="<?php print $feed_url; ?>"><?php print $feed_title; ?></a>
  </h2>
 
  <?php if ($source_url) : ?>
    <p class="feedinfo"><span class="sorgente"><a href="<?php print $source_url; ?>" class="feed-item-source"><?php print $source_title; ?></a></span> -
  <?php endif; ?>
<?php print $source_date; ?></p>
 
 
<?php if ($content) : ?>
    <p><?php print $content; ?></p>
<?php endif; ?>
 
 
<?php if ($categories) : ?>
   <p> <?php print t('Categories'); ?>: <?php print implode(', ', $categories); ?></p>
<?php endif ;?>
 
</div>
 
</div>
0
0
csp képe

Köszi szépen. Íme az export:

$view = new view;
$view->name = '6line';
$view->description = '6Line menüben megjelenő tartalom';
$view->tag = '';
$view->view_php = '';
$view->base_table = 'node';
$view->is_cacheable = FALSE;
$view->api_version = 2;
$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */
$handler = $view->new_display('default', 'Defaults', 'default');
$handler->override_option('fields', array(
  'changed' => array(
    'label' => '',
    'alter' => array(
      'alter_text' => 0,
      'text' => '',
      'make_link' => 0,
      'path' => '',
      'link_class' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'help' => '',
      'trim' => 0,
      'max_length' => '',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'strip_tags' => 0,
      'html' => 0,
    ),
    'date_format' => 'custom',
    'custom_date_format' => 'Y-m-d H:i:s',
    'exclude' => 0,
    'id' => 'changed',
    'table' => 'node',
    'field' => 'changed',
    'override' => array(
      'button' => 'Override',
    ),
    'relationship' => 'none',
  ),
  'type' => array(
    'label' => '',
    'alter' => array(
      'alter_text' => 0,
      'text' => '',
      'make_link' => 0,
      'path' => '',
      'link_class' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'help' => '',
      'trim' => 0,
      'max_length' => '',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'strip_tags' => 0,
      'html' => 0,
    ),
    'link_to_node' => 0,
    'exclude' => 0,
    'id' => 'type',
    'table' => 'node',
    'field' => 'type',
    'override' => array(
      'button' => 'Override',
    ),
    'relationship' => 'none',
  ),
  'name' => array(
    'label' => '',
    'alter' => array(
      'alter_text' => 0,
      'text' => '',
      'make_link' => 0,
      'path' => '',
      'link_class' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'help' => '',
      'trim' => 0,
      'max_length' => '',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'strip_tags' => 0,
      'html' => 0,
    ),
    'link_to_user' => 1,
    'overwrite_anonymous' => 0,
    'anonymous_text' => '',
    'exclude' => 0,
    'id' => 'name',
    'table' => 'users',
    'field' => 'name',
    'override' => array(
      'button' => 'Override',
    ),
    'relationship' => 'none',
  ),
  'title' => array(
    'label' => '',
    'alter' => array(
      'alter_text' => 0,
      'text' => '',
      'make_link' => 0,
      'path' => '',
      'link_class' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'help' => '',
      'trim' => 0,
      'max_length' => '',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'strip_tags' => 0,
      'html' => 0,
    ),
    'link_to_node' => 0,
    'exclude' => 0,
    'id' => 'title',
    'table' => 'node',
    'field' => 'title',
    'override' => array(
      'button' => 'Override',
    ),
    'relationship' => 'none',
  ),
  'field_kep_fid' => array(
    'label' => '',
    'alter' => array(
      'alter_text' => 0,
      'text' => '',
      'make_link' => 0,
      'path' => '',
      'link_class' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'help' => '',
      'trim' => 0,
      'max_length' => '',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'strip_tags' => 0,
      'html' => 0,
    ),
    'link_to_node' => 0,
    'label_type' => 'none',
    'format' => 'image_plain',
    'multiple' => array(
      'group' => TRUE,
      'multiple_number' => '',
      'multiple_from' => '',
      'multiple_reversed' => FALSE,
    ),
    'exclude' => 0,
    'id' => 'field_kep_fid',
    'table' => 'node_data_field_kep',
    'field' => 'field_kep_fid',
    'relationship' => 'none',
  ),
  'teaser' => array(
    'label' => '',
    'alter' => array(
      'alter_text' => 0,
      'text' => '',
      'make_link' => 0,
      'path' => '',
      'link_class' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'help' => '',
      'trim' => 0,
      'max_length' => '',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'strip_tags' => 0,
      'html' => 0,
    ),
    'exclude' => 0,
    'id' => 'teaser',
    'table' => 'node_revisions',
    'field' => 'teaser',
    'override' => array(
      'button' => 'Override',
    ),
    'relationship' => 'none',
  ),
  'view_node' => array(
    'label' => '',
    'alter' => array(
      'alter_text' => 0,
      'text' => '',
      'make_link' => 0,
      'path' => '',
      'link_class' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'help' => '',
      'trim' => 0,
      'max_length' => '',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'strip_tags' => 0,
      'html' => 0,
    ),
    'text' => 'tovább >>',
    'exclude' => 0,
    'id' => 'view_node',
    'table' => 'node',
    'field' => 'view_node',
    'override' => array(
      'button' => 'Override',
    ),
    'relationship' => 'none',
  ),
  'tid' => array(
    'label' => 'cimkék',
    'alter' => array(
      'alter_text' => 1,
      'text' => '<br />[tid]',
      'make_link' => 0,
      'path' => '',
      'link_class' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'help' => '',
      'trim' => 0,
      'max_length' => '',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'strip_tags' => 0,
      'html' => 0,
    ),
    'type' => 'separator',
    'separator' => ' ',
    'empty' => '',
    'link_to_taxonomy' => 1,
    'limit' => 0,
    'vids' => array(
      '1' => 0,
      '2' => 0,
    ),
    'exclude' => 0,
    'id' => 'tid',
    'table' => 'term_node',
    'field' => 'tid',
    'override' => array(
      'button' => 'Override',
    ),
    'relationship' => 'none',
  ),
  'timestamp' => array(
    'label' => 'Utolsó hozzászólás',
    'alter' => array(
      'alter_text' => 1,
      'text' => '<br />[changed]',
      'make_link' => 0,
      'path' => '',
      'link_class' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'help' => '',
      'trim' => 0,
      'max_length' => '',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'strip_tags' => 0,
      'html' => 0,
    ),
    'date_format' => 'small',
    'custom_date_format' => '',
    'exclude' => 0,
    'id' => 'timestamp',
    'table' => 'comments',
    'field' => 'timestamp',
    'override' => array(
      'button' => 'Override',
    ),
    'relationship' => 'none',
  ),
  'name_1' => array(
    'label' => '',
    'alter' => array(
      'alter_text' => 0,
      'text' => '',
      'make_link' => 0,
      'path' => '',
      'link_class' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'help' => '',
      'trim' => 0,
      'max_length' => '',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'strip_tags' => 0,
      'html' => 0,
    ),
    'link_to_user' => 0,
    'exclude' => 0,
    'id' => 'name_1',
    'table' => 'comments',
    'field' => 'name',
    'override' => array(
      'button' => 'Override',
    ),
    'relationship' => 'none',
  ),
  'comment' => array(
    'label' => '',
    'alter' => array(
      'alter_text' => 0,
      'text' => '',
      'make_link' => 0,
      'path' => '',
      'link_class' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'help' => '',
      'trim' => 1,
      'max_length' => '500',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'strip_tags' => 1,
      'html' => 0,
    ),
    'exclude' => 0,
    'id' => 'comment',
    'table' => 'comments',
    'field' => 'comment',
    'override' => array(
      'button' => 'Override',
    ),
    'relationship' => 'none',
  ),
  'comment_count' => array(
    'label' => 'Összes hozzászólás',
    'alter' => array(
      'alter_text' => 0,
      'text' => '',
      'make_link' => 0,
      'path' => '',
      'link_class' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'help' => '',
      'trim' => 0,
      'max_length' => '',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'strip_tags' => 0,
      'html' => 0,
    ),
    'set_precision' => FALSE,
    'precision' => 0,
    'decimal' => '.',
    'separator' => ',',
    'prefix' => '',
    'suffix' => '',
    'exclude' => 0,
    'id' => 'comment_count',
    'table' => 'node_comment_statistics',
    'field' => 'comment_count',
    'relationship' => 'none',
  ),
));
$handler->override_option('sorts', array(
  'changed' => array(
    'order' => 'DESC',
    'granularity' => 'second',
    'id' => 'changed',
    'table' => 'node',
    'field' => 'changed',
    'relationship' => 'none',
  ),
));
$handler->override_option('filters', array(
  'type' => array(
    'operator' => 'in',
    'value' => array(
      'sixline' => 'sixline',
    ),
    'group' => '0',
    'exposed' => FALSE,
    'expose' => array(
      'operator' => FALSE,
      'label' => '',
    ),
    'id' => 'type',
    'table' => 'node',
    'field' => 'type',
    'override' => array(
      'button' => 'Override',
    ),
    'relationship' => 'none',
  ),
  'status' => array(
    'operator' => '=',
    'value' => '1',
    'group' => '0',
    'exposed' => FALSE,
    'expose' => array(
      'operator' => FALSE,
      'label' => '',
    ),
    'id' => 'status',
    'table' => 'node',
    'field' => 'status',
    'relationship' => 'none',
  ),
));
$handler->override_option('access', array(
  'type' => 'none',
));
$handler->override_option('cache', array(
  'type' => 'none',
));
$handler->override_option('header', '<img alt="" src="../sites/all/themes/rnr666/images/head_6line.jpg" />');
$handler->override_option('header_format', '2');
$handler->override_option('header_empty', 1);
$handler->override_option('empty', 'Ez a tartalom egyelőre üres.');
$handler->override_option('empty_format', '1');
$handler->override_option('items_per_page', 6);
$handler->override_option('use_pager', '1');
$handler->override_option('distinct', 1);
$handler->override_option('style_options', array(
  'grouping' => '',
));
$handler->override_option('row_options', array(
  'inline' => array(
    'changed' => 'changed',
    'type' => 'type',
    'name' => 'name',
    'title' => 'title',
    'teaser' => 'teaser',
    'view_node' => 'view_node',
    'tid' => 'tid',
    'timestamp' => 'timestamp',
    'name_1' => 'name_1',
    'comment' => 'comment',
    'comment_count' => 'comment_count',
  ),
  'separator' => '',
));
$handler = $view->new_display('page', 'Page', 'page_1');
$handler->override_option('path', '6line');
$handler->override_option('menu', array(
  'type' => 'none',
  'title' => '',
  'description' => '',
  'weight' => 0,
  'name' => 'navigation',
));
$handler->override_option('tab_options', array(
  'type' => 'none',
  'title' => '',
  'description' => '',
  'weight' => 0,
));
0
0
bb.virgo képe

Pedig erre nagyon más megoldás nincs, css-ben kell megadnod, hogy mi kerüljön egymás mellé és mi egymás alá. float és clear tulajdonságokkal lehet ezt megvalósítani.

0
0
vassjozsef képe

Nekem már a telepítés elején ezt mondja:

"Access denied

* warning: array_keys() [function.array-keys]: The first argument should be an array in /data/apache_htdocs/tiktvf/html/modules/user/user.module on line 368.
* warning: implode() [function.implode]: Bad arguments. in /data/apache_htdocs/tiktvf/html/modules/user/user.module on line 368.
* user warning: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1 query: SELECT DISTINCT(p.perm) FROM role r INNER JOIN permission p ON p.rid = r.rid WHERE r.rid IN () in /data/apache_htdocs/tiktvf/html/includes/database.mysql.inc on line 172.
* warning: array_keys() [function.array-keys]: The first argument should be an array in /data/apache_htdocs/tiktvf/html/modules/block/block.module on line 644.
* warning: implode() [function.implode]: Bad arguments. in /data/apache_htdocs/tiktvf/html/modules/block/block.module on line 644.
* user warning: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') OR r.rid IS NULL) ORDER BY b.region, b.weight, b.module' at line 1 query: SELECT DISTINCT b.* FROM blocks b LEFT JOIN blocks_roles r ON b.module = r.module AND b.delta = r.delta WHERE b.theme = 'garland' AND b.status = 1 AND (r.rid IN () OR r.rid IS NULL) ORDER BY b.region, b.weight, b.module in /data/apache_htdocs/tiktvf/html/includes/database.mysql.inc on line 172.

You are not authorized to access this page."

A tárhely adatai:

Apache szerver van, PHP-5.2.1, MySQL 5.0.27

szerintetek hol van a kutya elesve?

Ja, és a legújabb verziót tettem fel a drupalból.
(a megoldónak Tibi csoki jár)

0
0