Прошу прощения, если что-то тут делаю не правильно - новичок.
У меня есть один вопрос по-поводу логотипа. У меня с начала всё было ок до тех пор, пока новостная лента (статья) не перешла в архив (снизу появляются цифры страниц). Дело в том, что когда я открываю любую новостную страницу отличную от 1 - пишет "Forbidden. You don't have permission to access /node/ on this server. Apache/2.2.15 (CentOS) Server at xxxxxxxxxx.ru Port 80". Если же я переименовываю node на node1 - открывается всё нормально. Но появляется другая проблема. Когда я добавляю в содержимое страницу, то на ней не отображается логотип, который как раз и лежит в папке node. Если меняю папку обратно - всё отлично работает, кроме архива новостей... как переделать, чтоб все ново-созданные страницы обращались не в node а в корень, где тоже лежит логотип.
Комментарии
права на папку стоят 777. и от хостинга тоже не зависит, т.к. на другом пишет "403 - запрещено. Доступ запрещен. Предоставленные учетные данные не дают права на просмотр этого каталога или страницы."
Вот вам 2 примера в первом папка node не переименованная http://217.23.68.34:7788/college/
во втором папка переименована, но на других стр не отображается логотип http://ppk.sstu.ru/
Мне залили сайт уже с такой папкой...
на моём сайте нет реклам... вроде или вирусняк...
в корень сайта кидать или корень папки темы? В моей теме такой код:
<?php if($logo): ?>
<?php endif; ?>
Не работает... А Вы смотрели примеры, которые я показывал? там логотип ссылается на http://ppk.sstu.ru/node/logo.png почему то...
Сейчас покажу ftp может там что-то не правильно делаю... Тот файл меняю или нет?
// we define a global tag to use in diferent templates
define('OUTTAG', ( theme_get_setting('outside_tags') ? 'p' : 'h2' ) );
include_once('theme/theme.inc');
include_once('logics/layout.inc');
include_once('logics/banners.inc');
/**
* Additional page variables
*/
function marinelli_preprocess_page(&$vars) {
// Useful for devel default banners, remove before commit
// variable_del('theme_marinelli_first_install');
// Chcek if is first setup of marinelli and install banners.
if (variable_get('theme_marinelli_first_install', TRUE)) {
include_once('theme-settings.php');
_marinelli_install();
}
// stores single sidebar presence into a variable
$vars['exception'] = "";
if($vars['page']['sidebar_second']) {
$vars['exception'] = 2;
}
else if($vars['page']['sidebar_first']){
$vars['exception'] = 1;
}
// theme vars
$vars['usebanner'] = (theme_get_setting('banner_usage') != 0) ? TRUE : FALSE;
// Set $page['advertise'] to hide advertise space (if not used).
$vars['page']['advertise'] = $vars['usebanner'] ? FALSE : $vars['page']['advertise'];
$vars['border'] = TRUE;
$vars['layout_width'] = marinelli_page_width(theme_get_setting('layout_width'));
$vars['layoutType'] = theme_get_setting('layout_type');
// special var that checks if we have the top region
$vars['topRegion'] = TRUE;
if (!$vars['logo'] && !$vars['site_name'] && !$vars['site_slogan'] && !$vars['page']['utility_top'] && !$vars['page']['search']) {
$vars['topRegion'] = FALSE;
}
// topbar Link
$vars['topbarlink'] = l('↓ ' . t(check_plain(theme_get_setting('bartext'))), current_path(),
array(
'attributes' => array(
'title' => 'Open this region',
'class' => array('openregion marinelli-hide-no-js'),
),
'html' => TRUE
)
);
// pass the text variables to javascript
drupal_add_js(
array(
'marinelli' => array(
'bartext' => theme_get_setting('bartext'),
'bartext2' => theme_get_setting('bartext2'),
)
),
array('type' => 'setting')
);
// LOGO SECTION ==============================================================
// site logo
$vars['imagelogo'] = theme('image', array(
'path' => $vars['logo'],
'alt' => $vars['site_name'],
'getsize' => FALSE,
'attributes' => array('id' => 'logo'),
));
$vars['imagelogo'] = l(
$vars['imagelogo'],
'',
array(
'html' => TRUE,
'attributes' => array(
'title' => t('Back to homepage'),
)
)
);
// HEADER SECTION ============================================================
// site title and slogan: use h1 and h2 for front page, otherwise use
$title_tag = $vars['is_front'] && theme_get_setting('title_tags')== 0 ? 'h1' : 'p';
$slogan_tag = $vars['is_front'] && theme_get_setting('title_tags')== 0 ? 'h2' : 'p';
//$vars['sitename'] = '<' . $title_tag . ' id="site-title">';
//$vars['sitename'] .= l($vars['site_name'], '', array('attributes' => array('title' => t('Back to homepage')),'html' => TRUE));
//$vars['sitename'] .= '';
$vars['sitename'] = '';
$vars['siteslogan'] = '<' . $slogan_tag . ' id="site-slogan">';
$vars['siteslogan'] .= l($vars['site_slogan'], '', array('attributes' => array('title' => t('Back to homepage')),'html' => TRUE));
$vars['siteslogan'] .= '';
// MENU SECTION ==============================================================
// secondary links with
$links = $vars['secondary_menu'];
foreach ($links as $key => $link) {
$links[$key]['html'] = TRUE;
$links[$key]['title'] = '' . $link['title'] . '';
}
$vars['secondary_menu'] = $links;
// primary links markup
if (theme_get_setting('menu_type') == 2) { // use mega menu
$vars['mainmenu'] = theme('mega_menu', array('menu' => menu_tree_all_data(theme_get_setting('menu_element'))));
}
elseif (theme_get_setting('menu_type') == 1) {
if (theme_get_setting('menu_headings') == 1) { // use classic
}
elseif (theme_get_setting('menu_headings') == 2){ // use
(custom_links in theme/theme.inc)
$vars['mainmenu'] = theme('custom_links', array('links' => $vars['main_menu'], 'attributes' => array('id' => 'primary', 'class' => array('links', 'clearfix', 'main-menu'))));
}
}
// BANNER SECTION ============================================================
// Banner to display
$banners = marinelli_show_banners();
// Banners section
$vars['banner_image'] = marinelli_banners_markup($banners);
$vars['banner_text'] = '';
$vars['banner_nav'] = '';
// Display text only if there are some banner visibile and visivility settings is true
if ($banners && theme_get_setting('banner_showtext')) {
// Banner text markup
$vars['banner_text'] = theme('mbanner_text');
}
// Display nav only if there more then one banner visibile and visivility settings is true
if ($banners && (count($banners) > 1) && theme_get_setting('banner_shownavigation')) {
// Banner navigation markup
$vars['banner_nav'] = theme('mbanner_nav', array(
'prev' => t('Previous Ad'),
'next' => t('Next Ad'),
));
}
// OTHER SETTINGS ============================================================
if (!$vars['page']['advertise'] && !$vars['banner_image']) {
$vars['noborder'] = 'class="noborder"';
} else {
$vars['noborder'] = '';
}
}
/**
* Additional node variables
*/
function marinelli_preprocess_node(&$vars){
$vars['sticky_text'] = theme_get_setting('sticky_text');
$type = $vars['type'];
if ($vars['teaser']) { // custom teaser templates
$vars['theme_hook_suggestions'][] = 'node__teaser';
}
if ($vars['teaser'] && $vars['type']) {
$vars['theme_hook_suggestions'][] = 'node__' . $type . '__teaser';
}
}
/**
* Additional block variables
*/
function marinelli_preprocess_block(&$vars){ // title visibility
$vars['blockhide'] = "";
if (($vars['block']->region != "sidebar_first" && $vars['block']->region != "sidebar_second" && $vars['block']->region != "content" && theme_get_setting('blocks') == 1) || ($vars['block']->region == "utility_top" || $vars['block']->region == "utility_bottom")) {
$vars['blockhide'] = "blockhide ";
}
// block title tag depends on theme settings and region
$vars['blocktag'] = "h2";
if ($vars['block']->region == "topbar" || $vars['block']->region == "utility_top" || $vars['block']->region == "search" || $vars['block']->region == "advertise" || $vars['block']->region == "overcontent" || $vars['block']->region == "overnode") {
$vars['blocktag'] = OUTTAG;
}
}
/**
* Additional comment variables
*/
function marinelli_preprocess_comment(&$vars) {
$vars['classes_array'][] = $vars['zebra'];
$user_image = array('width' => 0);
if (isset($vars['user']->picture)) {
// No.. I don't use style
if(!variable_get('user_picture_style')){
$size = variable_get('user_picture_dimensions');
$size = explode('x',$size);
$user_image['width'] = $size[0];
}
else{
//Yes... I use style
if ($picture = file_load($vars['comment']->picture->fid)) {
$user_image = image_get_info(image_style_path(variable_get('user_picture_style'), $picture->uri));
}
}
}
$vars['image_width'] = $user_image['width'] + 25;
}
function marinelli_preprocess_html(&$vars){
// we set to path to the active theme (valid also for subtheme)
global $theme_key;
$path_to_theme = drupal_get_path('theme', $theme_key);
$reset = $path_to_theme . '/css/reset/reset.css';
$options = array(
'group' => CSS_SYSTEM -1,
'weight' => -100
);
drupal_add_css($reset, $options);
// CSS3 effects: load modernizer and the stylesheets
$css_typo = theme_get_setting('css_typo');
if (theme_get_setting('css') == 1) {
drupal_add_js(path_to_theme() . '/js/modernizer/modernizr.js');
drupal_add_css($path_to_theme . '/css/css3/css3.css', array('group' => CSS_THEME + 1,'every_page' =>TRUE));
drupal_add_css($path_to_theme . '/css/css3/css3_graphics.css', array('group' => CSS_THEME + 2,'every_page' =>TRUE));
if ($css_typo == 2) {
drupal_add_css($path_to_theme . '/css/css3/css3_fonts.css', array('group' => CSS_THEME + 3,'every_page' =>TRUE));
}
}
// Send a js variable to tell topregion js not to hide the region
if (arg(2)=="block" && arg(3)=="demo") {
drupal_add_js(
array(
'marinelli' => array(
'blockdemo' => TRUE
)
),
array('type' => 'setting')
);
}
}
/**
* Breadcrumb.
*/
function marinelli_breadcrumb($variables) {
$breadcrumb = $variables['breadcrumb'];
if (!empty($breadcrumb)) {
$output = '<'.OUTTAG.' class="element-invisible">' . t('You are here') . '';
if (theme_get_setting('breadcrumb_title') == 1) { // show the title setting
$breadcrumb[] = truncate_utf8(drupal_get_title(), theme_get_setting('breadcrumb_title_length'), $wordsafe = TRUE, $dots = TRUE);
}
$output .= '
';
return $output;
}
}
/**
* Get banner settings.
*
* @param $all
* Return all banners or only active.
*
* @return
* Settings information
*/
function marinelli_get_banners($all = TRUE) {
// Get all banners
$banners = variable_get('theme_marinelli_banner_settings', array());
// Create list of banner to return
$banners_value = array();
foreach ($banners as $banner) {
if ($all || $banner['image_published']) {
// Add weight param to use `drupal_sort_weight`
$banner['weight'] = $banner['image_weight'];
$banners_value[] = $banner;
}
}
// Sort image by weight
usort($banners_value, 'drupal_sort_weight');
return $banners_value;
}
/**
* Set banner settings.
*
* @param $value
* Settings to save
*/
function marinelli_set_banners($value) {
variable_set('theme_marinelli_banner_settings', $value);
}
А что надо для этого сделать? Если в ручную...
Изменил... Оказывается это не лого...пропали картинка гагарина...
скорей всего что-то связанное с HEADER SECTION
Что-то не получается выложить код, прикрепил картинку...
<?php$vars['sitename'] =
Такого нет
а это ';?> вместо чего вставить? или между чем?
Всё сделал!!! СПАСИБИЩЕ ОГРОМЕННОЕ!!! Реально сам бы не разобрался и не нашёл где это менять...
А как теперь сделать эту тему решёной?
Правильно сделал?