Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author thomstark

    (@thomstark)

    Just seeing this. Let me take a look at this issue.

    Plugin Author thomstark

    (@thomstark)

    It’s still working for me. Are you sure the redirect urls aren’t to a private page or something? Could you give me a link so I can check it out?

    Thread Starter Kilbey62

    (@kilbey62)

    I tried to send to the login page and another plain wordpress page.

    Now I’m getting a 404 page with this in the URL: Go directly to jail. Do not pass GO. Do not collect $200 dollars. Hilarious. Let me check something else.

    Okay I had trashed the page to which I was attempting to redirect. Now it’s back to doing what it was before. https://osracing.net/iracing-late-model-setups

    The page says something else now because I edited the text in a file to something other than the page can’t be found.

    Plugin Author thomstark

    (@thomstark)

    I see what the problem is. I’ll have a fix for you in just a few minutes. It’s a conflict between statistics and redirect functions. My mistake. One sec.

    Plugin Author thomstark

    (@thomstark)

    I will upload the fix to the document in question, but I won’t push a new version. You can fix it yourself like this:

    Open up wp-content/plugins/file-away/lib/inc/inc.stats-redirect.php

    In between these two lines:

    $guest = $redirect ? 'true' : 'false';
    $stats = $stats == 'true' && $this->op['stats'] == 'true' ? true : false;

    add this line:

    $stats = $redirect ? false : $stats;

    So the outcome should look like this:

    $guest = $redirect ? 'true' : 'false';
    $stats = $redirect ? false : $stats;
    $stats = $stats == 'true' && $this->op['stats'] == 'true' ? true : false;
    Plugin Author thomstark

    (@thomstark)

    I’ve uploaded the fix to the repository now as well, so a redownload of the plugin will have this fix included.

    Thread Starter Kilbey62

    (@kilbey62)

    Thank you. You’re very patient.

    Plugin Author thomstark

    (@thomstark)

    Not at all. Just want to make sure everyone’s as happy as I can make them and that the plugin is running as promised. Thanks for bringing this issue to my attention!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Guest Redirect’ is closed to new replies.