Matt Biscay
Forum Replies Created
-
Forum: Plugins
In reply to: [Sky Login Redirect] White Screen of Death after LoginHi Steve,
Have you got any access to server logs that could help spit out an error message ?
What others plugins are you using? What’s your site’s URL?
Matt
Hi,
The link is down, is there any way you could repost the plugin?
Thanks!
Forum: Plugins
In reply to: [Sky Login Redirect] Administrator can no longer go to DashboardHi,
There should not be any conflict with the Dashboard page. Which version of WP are you using ?
You can always delete the plugin from the /wp-content/plugins/ directory via FTP.
Forum: Plugins
In reply to: [Asynchronous Javascript] PHP error : strpos(): Empty delimiterIn case you want to fix it in a later version :
find line 134 :
if(strpos($depend['src'], $file) !== false){change it with :
if(!empty($file) && strpos($depend['src'], $file) !== false){Basically, it makes sure the delimiter ($file) is not empty.
Cheers,
Matt
Forum: Plugins
In reply to: [Sky Login Redirect] Plugin Stopped WorkingLet me check something out.
Forum: Plugins
In reply to: [Sky Login Redirect] Plugin Stopped WorkingProbably
header.php, it all depends on how the theme is coded. Apparently, yours is a paid theme so I can’t check.Forum: Plugins
In reply to: [Sky Login Redirect] Plugin Stopped WorkingHi Sigor,
Do you log in via the custom-made login form in your menu?
It seems to lack the redirect_to hidden field. Try to add this line before the submit button in your template :<input type="hidden" name="redirect_to" value="<?php htmlspecialchars($_SERVER["REQUEST_URI"]); ?>" />Forum: Plugins
In reply to: [Sky Login Redirect] Plugin Stopped WorkingHi Sigor and Sharonq,
I have just released v1.4 and hopefully the redirections to the referring page will take precedence over the homepage.
It’s been tested on a default WP install (and on my heavily-modified one) but I would be interested to know if it works for you too.
Forum: Plugins
In reply to: [Sky Login Redirect] Plugin Stopped WorkingHi Sharonq,
I just visited your website and noticed that your login link has no redirect_to argument (which is fine since it’s in a menu). That’s why v1.1 works fine for you.
On my website, I use the plugin WordPress Admin Bar Improved which sets the redirect_to argument automatically.
I’ll keep that in mind for the next version to take care of vanilla WP installs.
Thanks 🙂
Forum: Plugins
In reply to: [Sky Login Redirect] Plugin Stopped WorkingHi Sharonq,
I’ve just uploaded version 1.3 which should take care of that regression. I’ve run a few tests and I think it should be alright now. Let me know.
Forum: Plugins
In reply to: [Sky Login Redirect] Plugin Stopped WorkingHi Sharonq,
I’ll look into it, in the meantime you can grab v1.1 here:
http://downloads.wordpress.org/plugin/sky-login-redirect.1.1.zipForum: Plugins
In reply to: [Sky Login Redirect] [Plugin: Sky Login Redirect] Login screen problemHi salatfresser,
I think I’ve fixed that bug in the upcoming version that will get release in the next few days.
Stay tuned.
Forum: Plugins
In reply to: [Sky Login Redirect] [Plugin: Sky Login Redirect] Looping when logging indHi zkagen,
I’ve managed to reproduce the issue. It will be fixed very soon.
Forum: Plugins
In reply to: [Sky Login Redirect] [Plugin: Sky Login Redirect] Looping when logging indHi zkagen,
I’m trying to reproduce the situation but there’s no redirect taking place using the user recovery function. Can you give the steps you took so I can fix it ?