Помогите найти внешние ссылки

CC
На сайте с 15.12.2011
Offline
86
1884

Вопрос решен, спасибо)

решение проблемы внизу

Помогите найти внешние ссылки:

http://absolut.vn.ua/

http://joomla-master.org/

http://twitter.com/share

http://4tv.in.ua/

http://allstyling.ru/

http://www.joomlatune.ru

Жопка от морковки
На сайте с 08.08.2006
Offline
77
#1

Поковыряйте в папке шаблона html\com_content\article\default.php

★ На них уже зарабатывают десятки тысяч долларов (/ru/forum/844409) ★ Контент недорого? Тут! (http://telemagaz.ru/content/) ★
CC
На сайте с 15.12.2011
Offline
86
#2
Жопка от морковки:
Поковыряйте в папке шаблона html\com_content\article\default.php

вот он, начало:

<?php

/**

* @version $Id: default.php 20817 2011-02-21 21:48:16Z dextercowley $

* @package Joomla.Site

* @subpackage com_content

* @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.

* @license GNU General Public License version 2 or later; see LICENSE.txt

*/

// no direct access

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

// Create shortcuts to some parameters.

$params = $this->item->params;

$images = json_decode($this->item->images);

$urls = json_decode($this->item->urls);

$canEdit = $this->item->params->get('access-edit');

$user = JFactory::getUser();

?>

<div class="item-page<?php echo $this->pageclass_sfx?>">

<?php if ($this->params->get('show_page_heading', 1)) : ?>

<h1>

<?php echo $this->escape($this->params->get('page_heading')); ?>

</h1>

<?php endif; ?>

<?php

if (!empty($this->item->pagination) AND $this->item->pagination && !$this->item->paginationposition && $this->item->paginationrelative)

{

echo $this->item->pagination;

}

?>

<?php if ($params->get('show_title')|| $params->get('access-edit')) : ?>

<h2>

<?php if ($params->get('link_titles') && !empty($this->item->readmore_link)) : ?>

<a href="<?php echo $this->item->readmore_link; ?>">

<?php echo $this->escape($this->item->title); ?></a>

<?php else : ?>

<?php echo $this->escape($this->item->title); ?>

<?php endif; ?>

</h2>

<?php endif; ?>

<?php echo $this->item->event->beforeDisplayContent; ?>

<?php

if ($params->get('show_create_date')

|| ($params->get('show_publish_date'))

|| ($params->get('show_author') && !empty($this->item->author ))

|| ($params->get('show_category'))

|| ($params->get('show_parent_category'))

|| ($params->get('show_print_icon'))

|| ($params->get('show_email_icon'))

|| ($params->get('show_hits'))

|| $canEdit):

?>

<div class="article-tools clearfix">

<dl class="article-info">

<dt class="article-info-term"><?php echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>

<?php if ($params->get('show_create_date')) : ?>

<dd class="create">

<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHTML::_('date',$this->item->created, JText::_('DATE_FORMAT_LC2'))); ?>

</dd>

<?php endif; ?>

<?php if ($params->get('show_modify_date')) : ?>

<dd class="modified">

<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2'))); ?>

</dd>

<?php endif; ?>

<?php if ($params->get('show_publish_date')) : ?>

<dd class="published">

<?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE', JHTML::_('date',$this->item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>

</dd>

<?php endif; ?>

<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>

<dd class="createdby">

<?php $author = $this->item->author; ?>

<?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>

<?php if (!empty($this->item->contactid ) && $params->get('link_author') == true):?>

<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY' ,

JHTML::_('link',JRoute::_('index.php?option=com_contact&view=contact&id='.$this->item->contactid),$author)); ?>

<?php else :?>

<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>

<?php endif; ?>

</dd>

<?php endif; ?>

<?php if (($params->get('show_category')) || ($params->get('show_parent_category'))) : ?>

<?php if ($params->get('show_parent_category')) : ?>

<dd class="parent-category-name">

<?php $title = $this->escape($this->item->parent_title);

$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_slug)) . '">' . $title . '</a>'; ?>

<?php if ($params->get('link_parent_category') AND $this->item->parent_slug) : ?>

<?php echo JText::sprintf('COM_CONTENT_PARENT', $url); ?>

<?php else : ?>

<?php echo JText::sprintf('COM_CONTENT_PARENT', $title); ?>

<?php endif; ?>

</dd>

<?php endif; ?>

<?php if ($params->get('show_category')) : ?>

<dd class="category-name">

<?php $title = $this->escape($this->item->category_title);

$url = '<a href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catslug)).'">'.$title.'</a>';?>

<?php if ($params->get('link_category') AND $this->item->catslug) : ?>

<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url); ?>

<?php else : ?>

<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title); ?>

<?php endif; ?>

</dd>

<?php endif; ?>

<?php endif; ?>

<?php if ($params->get('show_hits')) : ?>

<dd class="hits">

<?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', $this->item->hits); ?>

</dd>

<?php endif; ?>

</dl>

<?php if ($params->get('show_print_icon') || $params->get('show_email_icon') || $canEdit) : ?>

<ul class="buttonheading">

<?php if (!$this->print) : ?>

<?php if ($params->get('show_print_icon')) : ?>

<li class="print-icon">

<?php echo JHtml::_('icon.print_popup', $this->item, $params); ?>

</li>

<?php endif; ?>

<?php if ($params->get('show_email_icon')) : ?>

<li class="email-icon">

<?php echo JHtml::_('icon.email', $this->item, $params); ?>

</li>

<?php endif; ?>

<?php if ($canEdit) : ?>

<li class="edit-icon">

<?php echo JHtml::_('icon.edit', $this->item, $params); ?>

</li>

<?php endif; ?>

<?php else : ?>

<li class="email-icon">

<?php echo JHtml::_('icon.print_screen', $this->item, $params); ?>

</li>

<?php endif; ?>

</ul>

<?php endif; ?>

</div>

CC
На сайте с 15.12.2011
Offline
86
#3

продолжение:

<?php endif; ?>

<?php if (!$params->get('show_intro')) :

echo $this->item->event->afterDisplayTitle;

endif; ?><?php

$mgp='PGRpdiBpZD0ianMtbHQiPjxhIGhyZWY9Imh0dHA6Ly9hYnNvbHV0LnZuLnVhLyIgdGFyZ2V0PSJfYmxhbmsiIHRpdGxlPSLQv9C+0L/Rg9C70Y/RgNC90YvQtSDQvNC40L3QtdGA0LDQu9GM0L3Ri9C1INCy0L7QtNGLINCg0L7RgdC40LgiPtC/0L7Qv9GD0LvRj9GA0L3Ri9C1INC80LjQvdC10YDQsNC70YzQvdGL0LUg0LLQvtC00Ysg0KDQvtGB0LjQuDwvYT48YnI+PGEgaHJlZj0iaHR0cDovL2pvb21sYS1tYXN0ZXIub3JnLyIgdGFyZ2V0PSJfYmxhbmsiIHRpdGxlPSLQutCw0Log0YHQtNC10LvQsNGC0Ywg0LjQvdGC0LXRgNC90LXRgiDQvNCw0LPQsNC30LjQvSBqb29tbGEiPtC60LDQuiDRgdC00LXQu9Cw0YLRjCDQuNC90YLQtdGA0L3QtdGCINC80LDQs9Cw0LfQuNC9IGpvb21sYTwvYT48L2Rpdj4=';

echo base64_decode($mgp);?>

<?php if (isset ($this->item->toc)) : ?>

<?php echo $this->item->toc; ?>

<?php endif; ?>

<?php if (isset($urls) AND ((!empty($urls->urls_position) AND ($urls->urls_position=='0')) OR ($params->get('urls_position')=='0' AND empty($urls->urls_position) ))

OR (empty($urls->urls_position) AND (!$params->get('urls_position')))): ?>

<?php echo $this->loadTemplate('links'); ?>

<?php endif; ?>

<?php if ($params->get('access-view')):?>

<?php if (isset($images->image_fulltext) and !empty($images->image_fulltext)) : ?>

<?php $imgfloat = (empty($images->float_fulltext)) ? $params->get('float_fulltext') : $images->float_fulltext; ?>

<div class="img-fulltext-<?php echo htmlspecialchars($imgfloat); ?>">

<img

<?php if ($images->image_fulltext_caption):

echo 'class="caption"'.' title="' .htmlspecialchars($images->image_fulltext_caption) .'"';

endif; ?>

src="<?php echo htmlspecialchars($images->image_fulltext); ?>" alt="<?php echo htmlspecialchars($images->image_fulltext_alt); ?>"/>

</div>

<?php endif; ?>

<?php

if (!empty($this->item->pagination) AND $this->item->pagination AND !$this->item->paginationposition AND !$this->item->paginationrelative):

echo $this->item->pagination;

endif;

?>

<?php echo $this->item->text; ?>

<?php

if (!empty($this->item->pagination) AND $this->item->pagination AND $this->item->paginationposition AND!$this->item->paginationrelative):

echo $this->item->pagination;?>

<?php endif; ?>

<?php if (isset($urls) AND ((!empty($urls->urls_position) AND ($urls->urls_position=='1')) OR ( $params->get('urls_position')=='1') )): ?>

<?php echo $this->loadTemplate('links'); ?>

<?php endif; ?>

<?php //optional teaser intro text for guests ?>

<?php elseif ($params->get('show_noauth') == true and $user->get('guest') ) : ?>

<?php echo $this->item->introtext; ?>

<?php //Optional link to let them register to see the whole article. ?>

<?php if ($params->get('show_readmore') && $this->item->fulltext != null) :

$link1 = JRoute::_('index.php?option=com_users&view=login');

$link = new JURI($link1);?>

<p class="readmore">

<a href="<?php echo $link; ?>">

<?php $attribs = json_decode($this->item->attribs); ?>

<?php

if ($attribs->alternative_readmore == null) :

echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');

elseif ($readmore = $this->item->alternative_readmore) :

echo $readmore;

if ($params->get('show_readmore_title', 0) != 0) :

echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));

endif;

elseif ($params->get('show_readmore_title', 0) == 0) :

echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');

else :

echo JText::_('COM_CONTENT_READ_MORE');

echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));

endif; ?></a>

</p>

<?php endif; ?>

<?php endif; ?>

<?php

if (!empty($this->item->pagination) AND $this->item->pagination AND $this->item->paginationposition AND $this->item->paginationrelative):

echo $this->item->pagination;?>

<?php endif; ?><?php

$mgp='PGRpdiBpZD0ianMtbHQiPjxhIGhyZWY9Imh0dHA6Ly80dHYuaW4udWEvIiB0YXJnZXQ9Il9ibGFuayIgdGl0bGU9ItGB0YLQvtC40LzQvtGB0YLRjCDRg9GB0YLQsNC90L7QstC60Lgg0YHQv9GD0YLQvdC40LrQvtCy0L7Qs9C+INGC0LXQu9C10LLQuNC00LXQvdC40Y8iPtGB0YLQvtC40LzQvtGB0YLRjCDRg9GB0YLQsNC90L7QstC60Lgg0YHQv9GD0YLQvdC40LrQvtCy0L7Qs9C+INGC0LXQu9C10LLQuNC00LXQvdC40Y88L2E+PGJyPjxhIGhyZWY9Imh0dHA6Ly9hbGxzdHlsaW5nLnJ1LyIgdGFyZ2V0PSJfYmxhbmsiIHRpdGxlPSLRiNGA0LjRhNGC0Ysg0LTQu9GPIGFkb2JlIHBob3Rvc2hvcCI+0YjRgNC40YTRgtGLINC00LvRjyBhZG9iZSBwaG90b3Nob3A8L2E+PC9kaXY+';

echo base64_decode($mgp);?>

<?php echo $this->item->event->afterDisplayContent; ?>

</div>

---------- Добавлено 26.09.2012 в 13:52 ----------

продолжение:

<?php endif; ?>

<?php if (!$params->get('show_intro')) :

echo $this->item->event->afterDisplayTitle;

endif; ?><?php

$mgp='PGRpdiBpZD0ianMtbHQiPjxhIGhyZWY9Imh0dHA6Ly9hYnNvbHV0LnZuLnVhLyIgdGFyZ2V0PSJfYmxhbmsiIHRpdGxlPSLQv9C+0L/Rg9C70Y/RgNC90YvQtSDQvNC40L3QtdGA0LDQu9GM0L3Ri9C1INCy0L7QtNGLINCg0L7RgdC40LgiPtC/0L7Qv9GD0LvRj9GA0L3Ri9C1INC80LjQvdC10YDQsNC70YzQvdGL0LUg0LLQvtC00Ysg0KDQvtGB0LjQuDwvYT48YnI+PGEgaHJlZj0iaHR0cDovL2pvb21sYS1tYXN0ZXIub3JnLyIgdGFyZ2V0PSJfYmxhbmsiIHRpdGxlPSLQutCw0Log0YHQtNC10LvQsNGC0Ywg0LjQvdGC0LXRgNC90LXRgiDQvNCw0LPQsNC30LjQvSBqb29tbGEiPtC60LDQuiDRgdC00LXQu9Cw0YLRjCDQuNC90YLQtdGA0L3QtdGCINC80LDQs9Cw0LfQuNC9IGpvb21sYTwvYT48L2Rpdj4=';

echo base64_decode($mgp);?>

<?php if (isset ($this->item->toc)) : ?>

<?php echo $this->item->toc; ?>

<?php endif; ?>

<?php if (isset($urls) AND ((!empty($urls->urls_position) AND ($urls->urls_position=='0')) OR ($params->get('urls_position')=='0' AND empty($urls->urls_position) ))

OR (empty($urls->urls_position) AND (!$params->get('urls_position')))): ?>

<?php echo $this->loadTemplate('links'); ?>

<?php endif; ?>

<?php if ($params->get('access-view')):?>

<?php if (isset($images->image_fulltext) and !empty($images->image_fulltext)) : ?>

<?php $imgfloat = (empty($images->float_fulltext)) ? $params->get('float_fulltext') : $images->float_fulltext; ?>

<div class="img-fulltext-<?php echo htmlspecialchars($imgfloat); ?>">

<img

<?php if ($images->image_fulltext_caption):

echo 'class="caption"'.' title="' .htmlspecialchars($images->image_fulltext_caption) .'"';

endif; ?>

src="<?php echo htmlspecialchars($images->image_fulltext); ?>" alt="<?php echo htmlspecialchars($images->image_fulltext_alt); ?>"/>

</div>

<?php endif; ?>

<?php

if (!empty($this->item->pagination) AND $this->item->pagination AND !$this->item->paginationposition AND !$this->item->paginationrelative):

echo $this->item->pagination;

endif;

?>

<?php echo $this->item->text; ?>

<?php

if (!empty($this->item->pagination) AND $this->item->pagination AND $this->item->paginationposition AND!$this->item->paginationrelative):

echo $this->item->pagination;?>

<?php endif; ?>

<?php if (isset($urls) AND ((!empty($urls->urls_position) AND ($urls->urls_position=='1')) OR ( $params->get('urls_position')=='1') )): ?>

<?php echo $this->loadTemplate('links'); ?>

<?php endif; ?>

<?php //optional teaser intro text for guests ?>

<?php elseif ($params->get('show_noauth') == true and $user->get('guest') ) : ?>

<?php echo $this->item->introtext; ?>

<?php //Optional link to let them register to see the whole article. ?>

<?php if ($params->get('show_readmore') && $this->item->fulltext != null) :

$link1 = JRoute::_('index.php?option=com_users&view=login');

$link = new JURI($link1);?>

<p class="readmore">

<a href="<?php echo $link; ?>">

<?php $attribs = json_decode($this->item->attribs); ?>

<?php

if ($attribs->alternative_readmore == null) :

echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');

elseif ($readmore = $this->item->alternative_readmore) :

echo $readmore;

if ($params->get('show_readmore_title', 0) != 0) :

echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));

endif;

elseif ($params->get('show_readmore_title', 0) == 0) :

echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');

else :

echo JText::_('COM_CONTENT_READ_MORE');

echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));

endif; ?></a>

</p>

<?php endif; ?>

<?php endif; ?>

<?php

if (!empty($this->item->pagination) AND $this->item->pagination AND $this->item->paginationposition AND $this->item->paginationrelative):

echo $this->item->pagination;?>

<?php endif; ?><?php

$mgp='PGRpdiBpZD0ianMtbHQiPjxhIGhyZWY9Imh0dHA6Ly80dHYuaW4udWEvIiB0YXJnZXQ9Il9ibGFuayIgdGl0bGU9ItGB0YLQvtC40LzQvtGB0YLRjCDRg9GB0YLQsNC90L7QstC60Lgg0YHQv9GD0YLQvdC40LrQvtCy0L7Qs9C+INGC0LXQu9C10LLQuNC00LXQvdC40Y8iPtGB0YLQvtC40LzQvtGB0YLRjCDRg9GB0YLQsNC90L7QstC60Lgg0YHQv9GD0YLQvdC40LrQvtCy0L7Qs9C+INGC0LXQu9C10LLQuNC00LXQvdC40Y88L2E+PGJyPjxhIGhyZWY9Imh0dHA6Ly9hbGxzdHlsaW5nLnJ1LyIgdGFyZ2V0PSJfYmxhbmsiIHRpdGxlPSLRiNGA0LjRhNGC0Ysg0LTQu9GPIGFkb2JlIHBob3Rvc2hvcCI+0YjRgNC40YTRgtGLINC00LvRjyBhZG9iZSBwaG90b3Nob3A8L2E+PC9kaXY+';

echo base64_decode($mgp);?>

<?php echo $this->item->event->afterDisplayContent; ?>

</div>

Z
На сайте с 01.03.2011
Offline
65
#4

Зайди в корень сайта через Total Commander нажми Alt+F7 выбери - С текстом - и вставляй по одной ссылке, потом -Начать поиск-. В найденных шаблонах удаляй ссылки.

CC
На сайте с 15.12.2011
Offline
86
#5

вот этот хлам не похож?

<?php endif; ?><?php

$mgp='PGRpdiBpZD0ianMtbHQiPjxhIGhyZWY9Imh0dHA6Ly80dHYuaW4udWEvIiB0YXJnZXQ9Il9ibGFuayIgdGl0bGU9ItGB0YLQvtC40LzQvtGB0YLRjCDRg9GB0YLQsNC90L7QstC60Lgg0YHQv9GD0YLQvdC40LrQvtCy0L7Qs9C+INGC0LXQu9C10LLQuNC00LXQvdC40Y8iPtGB0YLQvtC40LzQvtGB0YLRjCDRg9GB0YLQsNC90L7QstC60Lgg0YHQv9GD0YLQvdC40LrQvtCy0L7Qs9C+INGC0LXQu9C10LLQuNC00LXQvdC40Y88L2E+PGJyPjxhIGhyZWY9Imh0dHA6Ly9hbGxzdHlsaW5nLnJ1LyIgdGFyZ2V0PSJfYmxhbmsiIHRpdGxlPSLRiNGA0LjRhNGC0Ysg0LTQu9GPIGFkb2JlIHBob3Rvc2hvcCI+0YjRgNC40YTRgtGLINC00LvRjyBhZG9iZSBwaG90b3Nob3A8L2E+PC9kaXY+';

echo base64_decode($mgp);?>

Coolmac
На сайте с 08.09.2011
Offline
60
#6
<?php
$mgp='PGRpdiBpZD0ianMtbHQiPjxhIGhyZWY9Imh0dHA6Ly9hYnNvbHV0LnZuLnVhLyIgdGFyZ2V0PSJfYmxhbmsiIHRpdGxlPSLQv9C+0L/Rg9C70Y/RgNC90YvQtSDQvNC40L3QtdGA0LDQu9GM0L3Ri9C1INCy0L7QtNGLINCg0L7RgdC40LgiPtC/0L7Qv9GD0LvRj9GA0L3Ri9C1INC80LjQvdC10YDQsNC70YzQvdGL0LUg0LLQvtC00Ysg0KDQvtGB0LjQuDwvYT48YnI+PGEgaHJlZj0iaHR0cDovL2pvb21sYS1tYXN0ZXIub3JnLyIgdGFyZ2V0PSJfYmxhbmsiIHRpdGxlPSLQutCw0Log0YHQtNC10LvQsNGC0Ywg0LjQvdGC0LXRgNC90LXRgiDQvNCw0LPQsNC30LjQvSBqb29tbGEiPtC60LDQuiDRgdC00LXQu9Cw0YLRjCDQuNC90YLQtdGA0L3QtdGCINC80LDQs9Cw0LfQuNC9IGpvb21sYTwvYT48L2Rpdj4=';
echo base64_decode($mgp);?>

Вот этот хлам - ссылка. И это в нескольких местах по коду.

Доступные vps/ds с грамотной тех. поддержкой (https://my.friendhosting.net/pl.php?11304)
CC
На сайте с 15.12.2011
Offline
86
#7
Coolmac:
Вот этот хлам - ссылка. И это в нескольких местах по коду.

Спасибо, оно)

осталось только http://www.joomlatune.ru

---------- Добавлено 26.09.2012 в 16:16 ----------

Всем спасибо)

Авторизуйтесь или зарегистрируйтесь, чтобы оставить комментарий