0 Пользователей и 1 Гость просматривают эту тему.
  • 13 Ответов
  • 2837 Просмотров
*

MishaFazylov

  • Осваиваюсь на форуме
  • 19
  • 0 / 0
Всем привет!
Нужна ваша помощь!
Проблема при выводе материалов в формате блога,, при переходе на 2 или другую страницу, невозможно вернуться на первую страницу. Ссылка на первую страницу формируется "?start=20".
Вот сайт с этим разделом http://an-famian.ru/novosti.html
Уже неделю пытаюсь разобраться и не могу. Поставил даже parinator 3000 думал что поможет, но проблема осталась.
*

MishaFazylov

  • Осваиваюсь на форуме
  • 19
  • 0 / 0
Загрузил pagination.php  с последней сборки Joomla 1.5.25. Проблема не решилась. Материалы отображаются Категория / Блог по 20шт.
Пожалуйста, очень нужна помощь.
Может кто подскажет какой файл отвечает за пагинацию.
*

b2z

  • Глобальный модератор
  • 7290
  • 778 / 0
  • Разраблю понемногу
Не знаю что там у Вас постраничной навигацией, но Вам бы не помешало для начало обновиться до Joomla 1.5.26! А дальше будем разибраться.
*

MishaFazylov

  • Осваиваюсь на форуме
  • 19
  • 0 / 0
Думал об этом, но очень много исправлений внесено, не хотелось бы их потерять. Может подскажите в каком файле формируются ссылки на пагинацию.
*

b2z

  • Глобальный модератор
  • 7290
  • 778 / 0
  • Разраблю понемногу
Это не вина движка. Скорее всего в папке HTML шаблона есть файлик pagination.php который влияет на стандартную постр.нав.
*

MishaFazylov

  • Осваиваюсь на форуме
  • 19
  • 0 / 0
Изначально папки и файла в шаблоне не было, пробовал на стандартном шаблоне, с этим файлом и папкой, тоже самое. Меняется вид навигации, но не меняется сам код. Возврат на первую страницу не возможен. И обратил внимание  на то, что после перехода по страницам, ссылка на первую страницу всегда формируется такая же как текущая страница.
*

MishaFazylov

  • Осваиваюсь на форуме
  • 19
  • 0 / 0
Спасибо всем огромное за помощь! очень отличный форум. Прошла неделя и не одного дельного совета. Либо никто не использует навигацию, либо у все настроена правильно. Занкомый проверял на своем сайте, включил ограничение кол-ва материалов и проблема оказалась такая же как у меня.
*

b2z

  • Глобальный модератор
  • 7290
  • 778 / 0
  • Разраблю понемногу
Спасибо всем огромное за помощь! очень отличный форум. Прошла неделя и не одного дельного совета. Либо никто не использует навигацию, либо у все настроена правильно. Занкомый проверял на своем сайте, включил ограничение кол-ва материалов и проблема оказалась такая же как у меня.
А откуда его взять, если проблема только у Вас. Значит это специфично для Вашего сайта. На стандартном шаблоне тоже проблемы?
*

MishaFazylov

  • Осваиваюсь на форуме
  • 19
  • 0 / 0
Да, на стандартном шаблоне такая же проблема. Менял все файлы связанные с пагинацией, ничего не помогло. У меня 4 сайта и на все эта проблема. А какой конкретно файл отвечает за пагинацию, если предположить что в шаблоне такой файл отсутствует? Может проблема в SEF?
*

b2z

  • Глобальный модератор
  • 7290
  • 778 / 0
  • Разраблю понемногу
Если стандартный SEF, то не должно быть проблем. А сам файл:
/libraries/joomla/html/pagination.php.
*

MishaFazylov

  • Осваиваюсь на форуме
  • 19
  • 0 / 0
Вот код этого файла, я так понимаю что где-то не стоит limitstart 0, точка начала отсчета. Но не пойму где именно.
Код
<?php
/**
 * @version $Id: pagination.php 10707 2008-08-21 09:52:47Z eddieajau $
 * @package Joomla.Framework
 * @subpackage HTML
 * @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
 * @license GNU/GPL, see LICENSE.php
 * Joomla! is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * See COPYRIGHT.php for copyright notices and details.
 */

// Check to ensure this file is within the rest of the framework
defined('JPATH_BASE') or die();

/**
 * Pagination Class.  Provides a common interface for content pagination for the
 * Joomla! Framework
 *
 * @package Joomla.Framework
 * @subpackage HTML
 * @since 1.5
 */
class JPagination extends JObject
{
/**
* The record number to start dislpaying from
*
* @access public
* @var int
*/
var $limitstart = null;

/**
* Number of rows to display per page
*
* @access public
* @var int
*/
var $limit = null;

/**
* Total number of rows
*
* @access public
* @var int
*/
var $total = null;

/**
* View all flag
*
* @access protected
* @var boolean
*/
var $_viewall = false;

/**
* Constructor
*
* @param int The total number of items
* @param int The offset of the item to start at
* @param int The number of items to display per page
*/
function __construct($total, $limitstart, $limit)
{
// Value/Type checking
$this->total = (int) $total;
$this->limitstart = (int) max($limitstart, 0);
$this->limit = (int) max($limit, 0);

if ($this->limit > $this->total) {
$this->limitstart = 0;
}

if (!$this->limit)
{
$this->limit = $total;
$this->limitstart = 0;
}

if ($this->limitstart > $this->total) {
$this->limitstart -= $this->limitstart % $this->limit;
}

// Set the total pages and current page values
if($this->limit > 0)
{
$this->set( 'pages.total', ceil($this->total / $this->limit));
$this->set( 'pages.current', ceil(($this->limitstart + 1) / $this->limit));
}

// Set the pagination iteration loop values
$total          =  $total < 1 ? 1 : $total;
                $displayedPages =  $total;
$this->set( 'pages.start', (floor(($this->get('pages.current') -1) / $displayedPages)) * $displayedPages +1);
if ($this->get('pages.start') + $displayedPages -1 < $this->get('pages.total')) {
$this->set( 'pages.stop', $this->get('pages.start') + $displayedPages -1);
} else {
$this->set( 'pages.stop', $this->get('pages.total'));
}

// If we are viewing all records set the view all flag to true
if ($this->limit == $total) {
$this->_viewall = true;
}
}

/**
* Return the rationalised offset for a row with a given index.
*
* @access public
* @param int $index The row index
* @return int Rationalised offset for a row with a given index
* @since 1.5
*/
function getRowOffset($index)
{
return $index +1 + $this->limitstart;
}

/**
* Return the pagination data object, only creating it if it doesn't already exist
*
* @access public
* @return object Pagination data object
* @since 1.5
*/
function getData()
{
static $data;
if (!is_object($data)) {
$data = $this->_buildDataObject();
}
return $data;
}

/**
* Create and return the pagination pages counter string, ie. Page 2 of 4
*
* @access public
* @return string Pagination pages counter string
* @since 1.5
*/
function getPagesCounter()
{
// Initialize variables
$html = null;
if ($this->get('pages.total') > 1) {
$html .= JText::_('Page')." ".$this->get('pages.current')." ".JText::_('of')." ".$this->get('pages.total');
}
return $html;
}

/**
* Create and return the pagination result set counter string, ie. Results 1-10 of 42
*
* @access public
* @return string Pagination result set counter string
* @since 1.5
*/
function getResultsCounter()
{
// Initialize variables
$html = null;
$fromResult = $this->limitstart + 1;

// If the limit is reached before the end of the list
if ($this->limitstart + $this->limit < $this->total) {
$toResult = $this->limitstart + $this->limit;
} else {
$toResult = $this->total;
}

// If there are results found
if ($this->total > 0) {
$msg = JText::sprintf('Results of', $fromResult, $toResult, $this->total);
$html .= "\n".$msg;
} else {
$html .= "\n".JText::_('No records found');
}

return $html;
}

/**
* Create and return the pagination page list string, ie. Previous, Next, 1 2 3 ... x
*
* @access public
* @return string Pagination page list string
* @since 1.0
*/
function getPagesLinks()
{
global $mainframe;

$lang =& JFactory::getLanguage();

// Build the page navigation list
$data = $this->_buildDataObject();

$list = array();

$itemOverride = false;
$listOverride = false;

$chromePath = JPATH_THEMES.DS.$mainframe->getTemplate().DS.'html'.DS.'pagination.php';
if (file_exists($chromePath))
{
require_once ($chromePath);
if (function_exists('pagination_item_active') && function_exists('pagination_item_inactive')) {
$itemOverride = true;
}
if (function_exists('pagination_list_render')) {
$listOverride = true;
}
}

// Build the select list
if ($data->all->base !== null) {
$list['all']['active'] = true;
$list['all']['data'] = ($itemOverride)? pagination_item_active($data->all) : $this->_item_active($data->all);
} else {
$list['all']['active'] = false;
$list['all']['data'] = ($itemOverride)? pagination_item_inactive($data->all) : $this->_item_inactive($data->all);
}

if ($data->start->base !== null) {
$list['start']['active'] = true;
$list['start']['data'] = ($itemOverride)? pagination_item_active($data->start) : $this->_item_active($data->start);
} else {
$list['start']['active'] = false;
$list['start']['data'] = ($itemOverride)? pagination_item_inactive($data->start) : $this->_item_inactive($data->start);
}
if ($data->previous->base !== null) {
$list['previous']['active'] = true;
$list['previous']['data'] = ($itemOverride)? pagination_item_active($data->previous) : $this->_item_active($data->previous);
} else {
$list['previous']['active'] = false;
$list['previous']['data'] = ($itemOverride)? pagination_item_inactive($data->previous) : $this->_item_inactive($data->previous);
}

$list['pages'] = array(); //make sure it exists
foreach ($data->pages as $i => $page)
{
if ($page->base !== null) {
$list['pages'][$i]['active'] = true;
$list['pages'][$i]['data'] = ($itemOverride)? pagination_item_active($page) : $this->_item_active($page);
} else {
$list['pages'][$i]['active'] = false;
$list['pages'][$i]['data'] = ($itemOverride)? pagination_item_inactive($page) : $this->_item_inactive($page);
}
}

if ($data->next->base !== null) {
$list['next']['active'] = true;
$list['next']['data'] = ($itemOverride)? pagination_item_active($data->next) : $this->_item_active($data->next);
} else {
$list['next']['active'] = false;
$list['next']['data'] = ($itemOverride)? pagination_item_inactive($data->next) : $this->_item_inactive($data->next);
}
if ($data->end->base !== null) {
$list['end']['active'] = true;
$list['end']['data'] = ($itemOverride)? pagination_item_active($data->end) : $this->_item_active($data->end);
} else {
$list['end']['active'] = false;
$list['end']['data'] = ($itemOverride)? pagination_item_inactive($data->end) : $this->_item_inactive($data->end);
}

if($this->total > $this->limit){
return ($listOverride)? pagination_list_render($list) : $this->_list_render($list);
}
else{
return '';
}
}

/**
* Return the pagination footer
*
* @access public
* @return string Pagination footer
* @since 1.0
*/
function getListFooter()
{
global $mainframe;

$list = array();
$list['limit'] = $this->limit;
$list['limitstart'] = $this->limitstart;
$list['total'] = $this->total;
$list['limitfield'] = $this->getLimitBox();
$list['pagescounter'] = $this->getPagesCounter();
$list['pageslinks'] = $this->getPagesLinks();

$chromePath = JPATH_THEMES.DS.$mainframe->getTemplate().DS.'html'.DS.'pagination.php';
if (file_exists( $chromePath ))
{
require_once( $chromePath );
if (function_exists( 'pagination_list_footer' )) {
return pagination_list_footer( $list );
}
}
return $this->_list_footer($list);
}

/**
* Creates a dropdown box for selecting how many records to show per page
*
* @access public
* @return string The HTML for the limit # input box
* @since 1.0
*/
function getLimitBox()
{
global $mainframe;

// Initialize variables
$limits = array ();

// Make the option list
for ($i = 5; $i <= 30; $i += 5) {
$limits[] = JHTML::_('select.option', "$i");
}
$limits[] = JHTML::_('select.option', '50');
$limits[] = JHTML::_('select.option', '100');
$limits[] = JHTML::_('select.option', '0', JText::_('all'));

$selected = $this->_viewall ? 0 : $this->limit;

// Build the select list
if ($mainframe->isAdmin()) {
$html = JHTML::_('select.genericlist',  $limits, 'limit', 'class="inputbox" size="1" onchange="submitform();"', 'value', 'text', $selected);
} else {
$html = JHTML::_('select.genericlist',  $limits, 'limit', 'class="inputbox" size="1" onchange="this.form.submit()"', 'value', 'text', $selected);
}
return $html;
}

/**
* Return the icon to move an item UP
*
* @access public
* @param int $i The row index
* @param boolean $condition True to show the icon
* @param string $task The task to fire
* @param string $alt The image alternate text string
* @return string Either the icon to move an item up or a space
* @since 1.0
*/
function orderUpIcon($i, $condition = true, $task = 'orderup', $alt = 'Move Up', $enabled = true)
{
$alt = JText::_($alt);

$html = '&nbsp;';
if (($i > 0 || ($i + $this->limitstart > 0)) && $condition)
{
if($enabled) {
$html = '<a href="#reorder" onclick="return listItemTask(\'cb'.$i.'\',\''.$task.'\')" title="'.$alt.'">';
$html .= '   <img src="images/uparrow.png" width="16" height="16" border="0" alt="'.$alt.'" />';
$html .= '</a>';
} else {
$html = '<img src="images/uparrow0.png" width="16" height="16" border="0" alt="'.$alt.'" />';
}
}

return $html;
}

/**
* Return the icon to move an item DOWN
*
* @access public
* @param int $i The row index
* @param int $n The number of items in the list
* @param boolean $condition True to show the icon
* @param string $task The task to fire
* @param string $alt The image alternate text string
* @return string Either the icon to move an item down or a space
* @since 1.0
*/
function orderDownIcon($i, $n, $condition = true, $task = 'orderdown', $alt = 'Move Down', $enabled = true)
{
$alt = JText::_($alt);

$html = '&nbsp;';
if (($i < $n -1 || $i + $this->limitstart < $this->total - 1) && $condition)
{
if($enabled) {
$html = '<a href="#reorder" onclick="return listItemTask(\'cb'.$i.'\',\''.$task.'\')" title="'.$alt.'">';
$html .= '  <img src="images/downarrow.png" width="16" height="16" border="0" alt="'.$alt.'" />';
$html .= '</a>';
} else {
$html = '<img src="images/downarrow0.png" width="16" height="16" border="0" alt="'.$alt.'" />';
}
}

return $html;
}

function _list_footer($list)
{
// Initialize variables
$html = "<div class=\"list-footer\">\n";

$html .= "\n<div class=\"limit\">".JText::_('Display Num').$list['limitfield']."</div>";
$html .= $list['pageslinks'];
$html .= "\n<div class=\"counter\">".$list['pagescounter']."</div>";

$html .= "\n<input type=\"hidden\" name=\"limitstart\" value=\"".$list['limitstart']."\" />";
$html .= "\n</div>";

return $html;
}

function _list_render($list)
{
// Initialize variables
$html = null;

// Reverse output rendering for right-to-left display
$html .= '&lt;&lt; ';
$html .= $list['start']['data'];
$html .= ' &lt; ';
$html .= $list['previous']['data'];
foreach( $list['pages'] as $page ) {
$html .= ' '.$page['data'];
}
$html .= ' '. $list['next']['data'];
$html .= ' &gt;';
$html .= ' '. $list['end']['data'];
$html .= ' &gt;&gt;';

return $html;
}

function _item_active(&$item)
{
global $mainframe;
if ($mainframe->isAdmin())
{
if($item->base>0)
return "<a title=\"".$item->text."\" onclick=\"javascript: document.adminForm.limitstart.value=".$item->base."; submitform();return false;\">".$item->text."</a>";
else
return "<a title=\"".$item->text."\" onclick=\"javascript: document.adminForm.limitstart.value=0; submitform();return false;\">".$item->text."</a>";
} else {
return "<a title=\"".$item->text."\" href=\"".$item->link."\" class=\"pagenav\">".$item->text."</a>";
}
}

function _item_inactive(&$item)
{
global $mainframe;
if ($mainframe->isAdmin()) {
return "<span>".$item->text."</span>";
} else {
return "<span class=\"pagenav\">".$item->text."</span>";
}
}

/**
* Create and return the pagination data object
*
* @access public
* @return object Pagination data object
* @since 1.5
*/
function _buildDataObject()
{
// Initialize variables
$data = new stdClass();

$data->all = new JPaginationObject(JText::_('View All'));
if (!$this->_viewall) {
$data->all->base = '0';
$data->all->link = JRoute::_("&limitstart=");
}

// Set the start and previous data objects
$data->start = new JPaginationObject(JText::_('Start'));
$data->previous = new JPaginationObject(JText::_('Prev'));

if ($this->get('pages.current') > 1)
{
$page = ($this->get('pages.current') -2) * $this->limit;

$page = $page == 0 ? '' : $page; //set the empty for removal from route

$data->start->base = '0';
$data->start->link = JRoute::_("&limitstart=");
$data->previous->base = $page;
$data->previous->link = JRoute::_("&limitstart=".$page);
}

// Set the next and end data objects
$data->next = new JPaginationObject(JText::_('Next'));
$data->end = new JPaginationObject(JText::_('End'));

if ($this->get('pages.current') < $this->get('pages.total'))
{
$next = $this->get('pages.current') * $this->limit;
$end  = ($this->get('pages.total') -1) * $this->limit;

$data->next->base = $next;
$data->next->link = JRoute::_("&limitstart=".$next);
$data->end->base = $end;
$data->end->link = JRoute::_("&limitstart=".$end);
}

$data->pages = array();
$stop = $this->get('pages.stop');
for ($i = $this->get('pages.start'); $i <= $stop; $i ++)
{
$offset = ($i -1) * $this->limit;

$offset = $offset == 0 ? '' : $offset;  //set the empty for removal from route

$data->pages[$i] = new JPaginationObject($i);
if ($i != $this->get('pages.current') || $this->_viewall)
{
$data->pages[$i]->base = $offset;
$data->pages[$i]->link = JRoute::_("&limitstart=".$offset);
}
}
return $data;
}
}

/**
 * Pagination object representing a particular item in the pagination lists
 *
 * @package Joomla.Framework
 * @subpackage HTML
 * @since 1.5
 */
class JPaginationObject extends JObject
{
var $text;
var $base;
var $link;

function __construct($text, $base=null, $link=null)
{
$this->text = $text;
$this->base = $base;
$this->link = $link;
}
}
*

MishaFazylov

  • Осваиваюсь на форуме
  • 19
  • 0 / 0
Немного продвинулся в вопросе. Проставил значение 0 вот здесь // Set the next and end data objects
Код
$data->next	= new JPaginationObject(JText::_('Next'));
$data->end = new JPaginationObject(JText::_('End'));

if ($this->get('pages.current') < $this->get('pages.total'))
{
$next = $this->get('pages.current') * $this->limit;
$end  = ($this->get('pages.total') -1) * $this->limit;

$data->next->base = $next;
$data->next->link = JRoute::_("&limitstart=".$next);
$data->end->base = $end;
$data->end->link = JRoute::_("&limitstart=".$end);
}

$data->pages = array();
$stop = $this->get('pages.stop');
for ($i = $this->get('pages.start'); $i <= $stop; $i ++)
{
$offset = ($i -1) * $this->limit;

$offset = $offset == 0 ? '' : $offset;  //set the empty for removal from route

$data->pages[$i] = new JPaginationObject($i);
if ($i != $this->get('pages.current') || $this->_viewall)
{
$data->pages[$i]->base = $offset;
$data->pages[$i]->link = JRoute::_("&limitstart=[b]0[/b]".$offset);
}
}
return $data;
Но ссылка теперь формируется ?start=40&limitstart=0  Где 40 означает страницу с кол-вом материалов с которой перешел на первую. Перемещение по всем страницам теперь правильное, но не совсем красивая ссылка получается на первую страницу.
*

MishaFazylov

  • Осваиваюсь на форуме
  • 19
  • 0 / 0
Причем если вот здесь $data->pages[$i]->link   = JRoute::_("&limitstart=0".$offset);
Причем если вместо &limitstart прописать &start то ссылки становятся ?start=020
*

MishaFazylov

  • Осваиваюсь на форуме
  • 19
  • 0 / 0
ВСЕ! ПОБЕДА!

Вот здесь было $data->pages[$i]->link   = JRoute::_("&limitstart=0".$offset);
стало  $data->pages[$i]->link   = JRoute::_("&start=".$offset);
Чтобы оставить сообщение,
Вам необходимо Войти или Зарегистрироваться
 

Joomla 1.5 как убрать кнопку редактировать материант с сайта

Автор andriy465

Ответов: 5
Просмотров: 1859
Последний ответ 12.11.2023, 23:37:03
от all_zer
Нужно wiki под Joomla

Автор THE KILLERS

Ответов: 9
Просмотров: 8754
Последний ответ 05.11.2020, 20:56:47
от Kijv
Поиск статьи по url сайта в админке Joomla 1.5

Автор Tema

Ответов: 5
Просмотров: 1288
Последний ответ 14.08.2020, 07:16:44
от rsn
simpleform2 ошибка ajax error в Google chrome

Автор safronoff343

Ответов: 1
Просмотров: 806
Последний ответ 05.06.2020, 20:36:42
от safronoff343
Ошибка #1050 при переносе базы данных на хостинг

Автор Ksen

Ответов: 7
Просмотров: 23300
Последний ответ 16.03.2020, 17:47:29
от Petrovich