Dear Don,
I am really surprised because the link
http://www.natural-olive-cosmetics.com/eshop works perfectly to us, to our customer and to our customer customers.
I really don't understand why you don't see the website. May be you need a rooter reset.
So, here is an answer to our problem with access denied.
From the esport template, when i buy an item the pop up cart shows, and if I choose to CONTINUE SHOPPING this error appears:
Fatal error: Cannot access empty property in /var/www/vhosts/natural-olive-cosmetics.comhttpdocs/eshop/libraries/joomla/registry/registry.php on line 336
This error was at the
http://www.dioni-art.gr/index.php too.
At httpdocs/eshop/libraries/joomla/registry/redistry.php
I change the code:
Line.332 for ($i = 0, $n = count($nodes) - 1; $i < $n; $i++)
{
if (!isset($node->$nodes[$i]) && ($i != $n))
{
$node->$nodes[$i] = new stdClass;
}
$node = $node->$nodes[$i];
}
// Get the old value if exists so we can return it
$result = $node->$nodes[$i] = $value;
Line.343 }
Replaced with ($nodes with nodes)
for ($i = 0, $n = count($nodes) - 1; $i < $n; $i++)
{
if (!isset($node->nodes[$i]) && ($i != $n))
{
$node->nodes[$i] = new stdClass;
}
$node = $node->nodes[$i];
}
// Get the old value if exists so we can return it
$result = $node->nodes[$i] = $value;
}
And the above error corrected but … then I had no permission to articles, modules etc, as described above. Seems like a deadlock so far.
Could you please check and provide me a solution.
Thank you.
John Pantazis