Hi there, I seem to have a problem with a website I’m building, you can view it here: http://www.luellasboudoir.co.uk/index.php My client is viewing this on a Mac (I’ve asked for full specs) her husband can view it on a Mac with same OS and browser, however when she views the site she gets the following error:
Disallowed Key Characters:
I’ve changed core/core.input.php to the following:
if ( ! ereg(”^[A-Za-z0-9\_\-\/]+$”, $str))
{
exit(’Disallowed Key Characters’);
}
Change it to this:
if ( ! eregi(”^[A-Za-z0-9\_\/\-]+$”, $str))
{
exit(’Disallowed Key Characters’);
}
We now get this error message:
Disallowed Key Characters: luellasboudoir_co_uk_rachel|real_name
Please advise the best way to resolve this.
Many thanks,
Paul.