eSyndiCat User Forums - View Single Post - Crossed Links Link Details Page v2.1
View Single Post
Old 02-14-2007   #4
PassionSeed
 
PassionSeed's Avatar
 
Join Date: Oct 2006
Location: United States
Posts: 190
PassionSeed is on a distinguished road
Default

Thanks John. I made this modification as well as the modification listed here http://www.esyndicat.com/forum/about8983.html which also fixed the problem.

Quote:
Originally Posted by John Turner
Hi PassionSeed,

I have fixed your trouble.

Solution here:
open your '../view-link.php'
*** find following code
Code:
if (empty($link) || ($config->get("mod_rewrite") && !$Category->exists("`id`='".$link['id_category']."' AND `status`='active' AND `path`='".$_GET['cat']."'")))
{
	$_GET['error'] = "404";
	include(HOME."error.php");
	exit;
}
*** replace it with following code
Code:
if (empty($link))
{
	$_GET['error'] = "404";
	include(HOME."error.php");
	exit;
}
save and close it.
PassionSeed is offline   Reply With Quote