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.
|