Just seeing this. Let me take a look at this issue.
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?
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. http://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.
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.
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;
I’ve uploaded the fix to the repository now as well, so a redownload of the plugin will have this fix included.
Thank you. You’re very patient.
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!