kisonay
Forum Replies Created
-
Forum: Plugins
In reply to: [Nextend Social Login and Register] Google redirects to a 404The issue was Mod Security. Thanks for the help.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] php7.2 502 errorAfter working with WP Engine support for the past week, I was able to get the strace of the segment fault that is happening with this plugin. I submitted a ticket via the help system. what is the best way to get this strace dump to you?
- This reply was modified 7 years, 4 months ago by kisonay.
Forum: Plugins
In reply to: [SplashGate] [Plugin: SplashGate] Error 404 when active in WP 3.3Found a solution which you may want to implement in your plugin.
where you have:
if ( document.referrer.indexOf("<?php bloginfo('site_url'); ?>") != 0 ) {<?php bloginfo(‘site_url’); ?> is no longer valid, it should be <?php bloginfo(‘url’); ?>
I also changed the if statement to the following to get more consistent results.
if ( document.referrer.indexOf("<?php bloginfo('url'); ?>") == -1 ) {Forum: Plugins
In reply to: [SplashGate] [Plugin: SplashGate] Error 404 when active in WP 3.3I’m having a simliar problem. Just installed 1.1. lightbox works great but when page template is selected (which I would like to use) no redirect happens. It just stays on the page.
Running wordpress 3.3 Would love to get this working
Thanks