Hi Nicolas, thanks for checking on this one.
Were you trying in Firefox? As I wrote Firefox seemed to kick you back to the login page, while Chrome/Safari kicked up the 404 category not found error. The whole thing is odd.
As for the Redirect on Login plugin, as I wrote before I disabled, then removed that plugin entirely and the error still occurs. Without the plugin (and without the 4.2.1 update), when you login instead of redirecting you just stay on that home page. As soon as 4.2.1 is applied then you get the error.
I did turn on the error reporting and debug settings, and I pasted the result into the first post which was:
-- Error-message(debug-mod must be tuned on) -- : Category not found
/mnt/data/vhosts/casite-620018.cloudaccess.net/httpdocs/components/com_hikashop/views/category/view.html.php:187
I looked in that file around that line number and found this block of code:
$acl_filters[] = 'category_type=\''.$content_type.'\'';
$acl_filters[] = 'category_id IN ('.implode(',',$pageInfo->filter->cid).')';
$query = 'SELECT category_id FROM '.hikashop_table('category').' WHERE '.implode(' AND ',$acl_filters);
$database->setQuery($query);
$pageInfo->filter->cid = $database->loadColumn();
if(!count($pageInfo->filter->cid)) {
throw new Exception(JText::_('CATEGORY_NOT_FOUND'), 404);
}
}
}
I see the 'Category Not Found' message and some acl code, but unless something drastic changed under the hood, my user groups and access should all be the same and working as before.
Right now all I have is that everything works until Hikashop 4.2.1 is applied. So Hikashop is either the direct culprit here, or the 4.2.1 update is in conflict with something, but I sure can't tell what. I've reverted my server several times over now to reapply the update and everything works fine until Hika is updated to 4.2.1.
So at this point my live site is going to have to remain on 4.0.3 until I can figure this one out.