Stergos
Forum Replies Created
-
Hello, the issue is solved. It seems that Google analytics plugin was caused so I disable it and your plugin works fine, I embed the analytics code manually and everything works perfect.
Update: The captcha image is present after the registration page is from another plugin I use on login, register and lost password feature, so there is nothing to do with this plugin. Is anyone solve the problem with Login Redirect URL?
As a new user of this nice plugin I notice that there are a lot unanswered questions. This plugin is not supported anymore?
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Exclude sidebar general questionThe widgets on my sidebar is cached and this is totally not good specially on login-logout widget so I cannot use more than one features of this plugin, is this hard to get an answer how to use these codes?
Forum: Fixing WordPress
In reply to: sending multiple trackbacks problemHoping that new WP version 3.4.1 has fix this issue but no don’t bother to try it.
Forum: Fixing WordPress
In reply to: sending multiple trackbacks problemOkay I send a few trackbacks if I’ve got any response I ‘ll let you know, thanks! 🙂
p.s. If this doesn’t work is make sense to use the line break html tag between urls.
<br />Anyway we will see how is goes the first one 🙂
Update: No, don’t try the second one is not working…
Forum: Fixing WordPress
In reply to: sending multiple trackbacks problemNetzBlogging I have test your theory is not looking exactly as should be, are you sure the trackbacks is sending?
Forum: Fixing WordPress
In reply to: sending multiple trackbacks problemMany users face this issue. WordPress admins has anything to say about it please?
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Exclude sidebar general questionI forgot to notice that the setting for page cache i’m using is “disk enhanced”. After a search I find out that many users of this plugin has this issue, so the snipets which is included to F.A.Q is useless? Anyone please?
Nope it’s not working. I am using “disk enhanced” I tried the follow but without success.
<!– mfunc –>get_sidebar();<!– /mfunc –>
<!– mfunc get_sidebar(); –><!– /mfunc –>
<?<!– mfunc get_sidebar(); –><!– /mfunc –>?>
<!– mfunc <?php get_sidebar(); ?> –><!– /mfunc –>
Hi, I think I make it work. I put this code into wp-config file:
define( “ALO_EM_INTERVAL_MIN”, 10 );
define( “ALO_EM_BATCHRATE”, 18 );The interval minute is not sending every 10 minutes but every 5 minutes but this is not a problem, I decrease the BATCHRATE to 18 so everything seems to work fine now. Sending 18 newsletters every 5 minutes is about 216 newsletters per hour which is great.
eventualo, Thank you very much you help was critical highly appreciated!
Okay I use it in debug mode and to send all messages to newsletter author. I change the settings “Maximum number of emails that can be sent in a 24-hr period:” to “5000” and “Maximum number of emails that can be sent per batch (every 5 minutes):” to “18”. I notice that every 2 minutes I was receiving 18 newsletters. So in a few words the problem is that the plugin is sending every 2 minutes unless 5. The truth is that I do not disable my other activated plugins because is more than 30 and is very important!
I’m using WordPress 3.4 and the latest version of Easymail 2.4.9. I will try that and I let you know thank you very much for response!
Forum: Fixing WordPress
In reply to: sending multiple trackbacks problemStill looking for some feedback and help with this. Are trackbacks working for other people using 3.4?
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Log out page cacheGuys you cannot imagine how many people has this issue, search it on Google… Just put this solution to your F.A.Q.
Solution:
Add this code to functions.php:
// Fix W3TC Logout Issue add_action('wp_logout', 'mj_flush_w3tc_cache'); function mj_flush_w3tc_cache() { if (function_exists('w3tc_pgcache_flush')) { w3tc_pgcache_flush(); } }