
Version 1.0.3
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
Version 1.0.3
I added this to error.php
just before
It will redirect you to previous page IF there HTTP_REFERER exists.
Nothing fancy.
Code: Select all
if (!$user->data['is_bot'] && !empty( $_SERVER['HTTP_REFERER']))
{
header('refresh:5;url= '.$_SERVER['HTTP_REFERER']);
}
page_footer();
It will redirect you to previous page IF there HTTP_REFERER exists.
Nothing fancy.
Version 1.0.3
Works well but if you come from another site and use this link images/ the page hangs but if your on this site and use the link it works.Stoker wrote:I added this to error.phpjust beforeCode: Select all
if (!$user->data['is_bot'] && !empty( $_SERVER['HTTP_REFERER'])) { header('refresh:5;url= '.$_SERVER['HTTP_REFERER']); }
page_footer();
It will redirect you to previous page IF there HTTP_REFERER exists.
Nothing fancy.