PDA

View Full Version : How To Display Individual Image for sites??


greeeb
05-03-2007, 10:21 PM
Hi,

1- How To Display Individual Image for sites like this site ...

http://www.linkat.tv/PortalsAndSearchEngines/SearchEngines/

2- when I click the (( Link Details )) The webpage cannot be found ??

3- Page Rank: Not available

How to solve these problems

2.1.03

John Turner
05-04-2007, 08:13 AM
Hi greeb,

1. please visit this thread http://www.esyndicat.com/forum/showthread.php?t=7741

2. open link-display.tpl
find following code

<a href="{$config.base}{$config.dir}{$link.path}{convert_st r string=$link.title}-l{$link.id}.html">{$lang.link_details}</a>


replace it with

<a href="{$config.base}{$config.dir}{$link.path}details-l{$link.id}.html">{$lang.link_details}</a>


3. please have a read this article
http://www.esyndicat.com/support/desk/knowledgebase/view/7.html

HTH

greeeb
05-05-2007, 03:16 PM
thanks John Turner i will try.

greeeb
06-15-2007, 08:40 AM
hi, John Turner Again

#1
How To Display Individual Image for sites

we not fined ../util.php'

I fined it in includes , admin

and also not fined /classes/DirSmarty.php'

#2
after i replace it ...

Error occured. Please see the logs or report an error to the administrator
2.1.03

Dave Baker
06-15-2007, 07:25 PM
Hello greeeb,
1. Please check these threads too: http://www.esyndicat.com/forum/showthread.php?t=10483&highlight=girafa
http://www.esyndicat.com/forum/showthread.php?t=9668&highlight=girafa
2. I've just tested your directory(http://www.linkat.tv) and the "link-detail" links work properly. Please post your broken link-detail page urls.

greeeb
06-15-2007, 09:16 PM
Hello greeeb,
1. Please check these threads too: http://www.esyndicat.com/forum/showthread.php?t=10483&highlight=girafa
http://www.esyndicat.com/forum/showthread.php?t=9668&highlight=girafa
2. I've just tested your directory(http://www.linkat.tv) and the "link-detail" links work properly. Please post your broken link-detail page urls.

thanks Dave Baker

first this not my site http://www.linkat.tv , only example we but it.

this is my site http://www.44700.com/esyndicat

Dave Baker
06-15-2007, 09:29 PM
greeeb,
I'm not able to find links in listing to link-detail page. For ex here:
http://www.44700.com/esyndicat/khbr-wSHf-w-lm/2/
Anyway, please open/templates/yourTemplate/link-display.tpl and check that you have code like this:

{if $config.mod_rewrite}
<a href="{$config.base}{$config.dir}{$link.path}{convert_st r string=$link.title}-l{$link.id}.html">{$lang.link_etails}</a>
{else}
<a href="{$config.base}{$config.dir}view-link.php?id={$link.id}">{$lang.link_details}</a>
{/if}

It should be near with this code:

<div class="description">{if $config.html_tags}{$link.description}{else}{$link. description|escape:"html"}{/if}</div>
<div class="url">{$link.url}</div>
<div class="stat">({$lang.clicks}: {$link.clicks};
{if $config.link_comments}
{$lang.comments}: {$link.comments};
{/if}

{$lang.link_added}: {$link.date|date_format:$config.date_format}) ::

greeeb
06-16-2007, 08:19 AM
this is the code in link-display.tpl

you can fixe it please

GreenLeaves

<tr>
<td colspan="2" class="link {$link.status}"{if $link.featured AND $config.featured_highlight AND $config.featured_links} style="background-color: {$config.featured_highlight}"{/if}{if $link.partner AND $config.partner_highlight AND $config.partner_links} style="background-color: {$config.partner_highlight}"{/if}{if $link.sponsored AND $config.sponsored_highlight AND $config.sponsored_links} style="background-color: {$config.sponsored_highlight}"{/if}>
<div class="title">{if $link.crossed}@{/if} <a href="{$link.url}" class="title" id="l{$link.id}" {if $config.new_window}target="_blank"{/if}>{if $config.html_tags}{$link.title}{else}{$link.title| escape:"html"}{/if}</a>
{section name=star loop=$link.rank}<img src="{$img}star.png" alt="" />{/section}
<div id="rate{$link.id}" class="rating">&nbsp;</div>
</div>

{if $config.mod_rewrite}
<a href="{$config.base}{$config.dir}{$link.path}{convert_st r string=$link.title}-l{$link.id}.html">{$lang.link_etails}</a>
{else}
<a href="{$config.base}{$config.dir}view-link.php?id={$link.id}">{$lang.link_details}</a>
{/if}
<div class="description">{if $config.html_tags}{$link.description}{else}{$link. description|escape:"html"}{/if}</div>
<div class="url">{$link.url}</div>
<div class="stat">({$lang.clicks}: {$link.clicks};
{if $config.link_comments}
{$lang.comments}: {$link.comments};
{/if}

{$lang.link_added}: {$link.date|date_format:$config.date_format}) ::

{if ($editor.id eq $link.id_editor) || ($link.id_editor_edit eq '1')}
| <a href="{$config.base}{$config.dir}edit-link.php?id={$link.id}">{$lang.edit_link}</a>
{/if}

{if (($editor.id eq $link.id_editor) || ($link.id_editor_edit eq '1')) AND $config.sponsored_links}
| <a href="{$config.base}{$config.dir}upgrade-link.php?id={$link.id}">{$lang.upgrade_listing}</a>
{/if}

{if $config.amazon_link}
| <a href="http://partner.alexa.com/amzn/redirect_to_detail?amzn_id=esyndicatfree-20&amp;url={$link.url}">{$lang.view_amazon}</a>
{/if}

{if $config.broken_links_report}
| <a href="javascript:void(0)" onclick="reportBrokenLink({$link.id})">{$lang.report_broken_link}</a>
{/if}

{if $config.pagerank}
<br />{$lang.pagerank}: {if $link.pagerank eq '-1'}{$lang.not_available}{else}{$link.pagerank}{/if}<br />{print_pagerank pr=$link.pagerank}
{/if}
</div>

</td>
</tr>

Dave Baker
06-17-2007, 10:18 PM
Try this code:

<tr>
<td colspan="2" class="link {$link.status}"{if $link.featured AND $config.featured_highlight AND $config.featured_links} style="background-color: {$config.featured_highlight}"{/if}{if $link.partner AND $config.partner_highlight AND $config.partner_links} style="background-color: {$config.partner_highlight}"{/if}{if $link.sponsored AND $config.sponsored_highlight AND $config.sponsored_links} style="background-color: {$config.sponsored_highlight}"{/if}>
<div class="title">{if $link.crossed}@{/if} <a href="{$link.url}" class="title" id="l{$link.id}" {if $config.new_window}target="_blank"{/if}>{if $config.html_tags}{$link.title}{else}{$link.title| escape:"html"}{/if}</a>
{section name=star loop=$link.rank}<img src="{$img}star.png" alt="" />{/section}
<div id="rate{$link.id}" class="rating">&nbsp;</div>
</div>

{if $config.mod_rewrite}
<a href="{$config.base}{$config.dir}{$link.path}{convert_st r string=$link.title}-l{$link.id}.html">{$lang.link_etails}</a>
{else}
<a href="{$config.base}{$config.dir}view-link.php?id={$link.id}">{$lang.link_details}</a>
{/if}
<div class="description">{if $config.html_tags}{$link.description}{else}{$link. description|escape:"html"}{/if}</div>
<div class="url">{$link.url}</div>
<div class="stat">({$lang.clicks}: {$link.clicks};
{if $config.link_comments}
{$lang.comments}: {$link.comments};
{/if}

{$lang.link_added}: {$link.date|date_format:$config.date_format}) ::

{if $config.mod_rewrite}
<a href="{$config.base}{$config.dir}{$link.path}{convert_st r string=$link.title}-l{$link.id}.html">{$lang.link_details}</a>
{else}
<a href="{$config.base}{$config.dir}view-link.php?id={$link.id}">{$lang.link_details}</a>
{/if}
{if ($editor.id eq $link.id_editor) || ($link.id_editor_edit eq '1')}
| <a href="{$config.base}{$config.dir}edit-link.php?id={$link.id}">{$lang.edit_link}</a>
{/if}

{if (($editor.id eq $link.id_editor) || ($link.id_editor_edit eq '1')) AND $config.sponsored_links}
| <a href="{$config.base}{$config.dir}upgrade-link.php?id={$link.id}">{$lang.upgrade_listing}</a>
{/if}

{if $config.amazon_link}
| <a href="http://partner.alexa.com/amzn/redirect_to_detail?amzn_id=esyndicatfree-20&amp;url={$link.url}">{$lang.view_amazon}</a>
{/if}

{if $config.broken_links_report}
| <a href="javascript:void(0)" onclick="reportBrokenLink({$link.id})">{$lang.report_broken_link}</a>
{/if}

{if $config.pagerank}
<br />{$lang.pagerank}: {if $link.pagerank eq '-1'}{$lang.not_available}{else}{$link.pagerank}{/if}<br />{print_pagerank pr=$link.pagerank}
{/if}
</div>

</td>
</tr>

greeeb
06-18-2007, 08:59 AM
hi, Dave Baker

i am sorry still not solve.

The webpage cannot be found

greeeb
06-24-2007, 10:28 PM
pleeeeeeeeeease

I need some body tell me how do active this modification as I say

1- How To Display Individual Image for sites like this site ...

http://www.euro-toplist.com/CHAT-SOHBET/

or

http://www.linkat.tv/PortalsAndSearc...SearchEngines/


I submit a ticket abut it the last answer from Sergey Ten he say...


You are using version 2.1.03, but it is instructions for 2.0

Add this code

$gDirSmarty->register_function("get_thumbshot_code", "get_thumbshot_code");

to includes/view.inc.php

We try but still not solve...

any bady help me

greeeb
06-28-2007, 02:33 AM
no bady help ?!?!?:sos:

Dave Baker
07-05-2007, 09:53 AM
Hello greeeb,
Please send me PM with your Admin Panel and Ftp credentials. I will try to help you.