Status
Not open for further replies.

KingofWarez

Active Member
180
2010
0
0
Hello ,

I Need Some Help In Linking Site For EG. On Main Page Where We Show Providers And When We Click On It We Get All Downloads From The Provider But In My Case The Provider Name Is Not Linked And When I Check mysite.com/site/provider.com i do not get any of the downloads from that site .. Please Help..

Any My SideBar(Leftbar) Is not Not Working Properly Any Help ..

[SLIDE]http://lulzimg.com/i17/bf6a94.png[/SLIDE]


The Site Is

Code:
http://warezaxis.org
 
Last edited:
8 comments
68a887.png
 
does your leftbar.php has this in the beginning of the file:
Code:
<?php
include "funcs.php";
$download = $core->fetchDownload(true); // true to fetch the surl and sname
?>

and do you have this placed?
Code:
<?=$download['title']?>
<?=$download['type']?>

etc for the formatting?
 
Every Thing Seems Good But Still the Problem Remains >>

leftbar.php

Code:
<?php
include "funcs.php";
$download = $core->fetchDownload(true,false); // The first boolean (true) fetches surl/sname. Second boolean (false) does not increment views.
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Warez AXiS | Free Search Portal</title>

<link rel="stylesheet" href="/css/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="/style.css" type="text/css" media="screen" />


<!--[if IE 7]>
		<link rel="stylesheet" type="text/css" href="/css/ie7style.css" />
	<![endif]-->
	<!--[if IE 8]>
		<link rel="stylesheet" type="text/css" href="/css/ie8style.css" />
	<![endif]-->
    <!--[if lt IE 7]>
    <link rel="stylesheet" type="text/css" href="/css/ie6style.css" />
    <script src="/js/DD_belatedPNG_0.0.8a-min.js" type="text/javascript" charset="utf-8"></script>
	<script type="text/javascript">DD_belatedPNG.fix('div#top, img#logo, img.logo_line, div#left_arrow a img, div#right_arrow a img, span a.readmore, #f_menu div.featitem,  #f_menu div.active, ul.sf-menu li.backLava');</script>
<![endif]-->

<script type="text/javascript">
	document.documentElement.className = 'js';
</script>

<script type='text/javascript' src='/js/jquery/jquery.js?ver=1.3.2'></script>


	<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>

</head>
<body>
<h2><?=$download['title']?></h2><br />
<small>in <?=$download['type']?> section on <?=date("d-m-y",$download['dat'])?></small><br /><Br />
Views: <?=$download['views']?><br />
Rating: <?=$download['rating']?><br /><br />
Provided by <a href="http://<?=$download['surl']?>" target="_top"><?=$download['sname']?></a>
<Br /><Br />
<div align="center">
<?=$core->templateVar("downloadRating")?>
<br /><Br />
<a href="/" target="_top">&laquo; Back Home</a><br />
<a href="<?=$download['url']?>" target="_top">Close Frame &raquo;</a>
</div>
</body>
</html>
<?php

?>

Any Help .
 
Status
Not open for further replies.
Back
Top