Matt Biscay
Forum Replies Created
-
Forum: Reviews
In reply to: [Sky Login Redirect] Works wellHi,
This issue isn’t with Sky Login Redirect. Both its login and logout redirections work. Check the simple:press options in case their redirect can be disabled or raise the issue with their developer.
Forum: Reviews
In reply to: [Sky Login Redirect] Useful!Thank you ??
Forum: Plugins
In reply to: [Sky Login Redirect] White Screen of Death after LoginYes, reinstalling the plugin would have worked just fine. I didn’t think it could have been modified, I’ll check that first next time ??
I’m glad it works fine for you now. You can delete safely delete the test account.
Cheers,
Matt
Forum: Plugins
In reply to: [Sky Login Redirect] White Screen of Death after LoginCheck again, it now works.
Someone had edited the plugin and didn’t remove the filter hooks.
Forum: Plugins
In reply to: [Sky Login Redirect] White Screen of Death after LoginYes, I’m getting a blank page, probably an error 500.
Forum: Plugins
In reply to: [Sky Login Redirect] White Screen of Death after LoginI can log in fine but there is no redirect, I end up on the profile page.
There something strange on your login page though : there are two login forms, one of which is hidden to the user. I’m wondering why and how it could affect the login process.
You may have another plugin interfering on this level.
Forum: Plugins
In reply to: [Sky Login Redirect] White Screen of Death after LoginHi Steve,
Have you re-activated the plugin ?
Forum: Plugins
In reply to: [Sky Login Redirect] White Screen of Death after LoginHi,
Can you create a dummy account for me so that I can test logging in and out ?
Matt
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"]); ?>" />