futurebreeze
Forum Replies Created
-
Forum: Plugins
In reply to: [Email posts to subscribers] CRON email notificationsI would be interested in such an option too. Too many cron triggered emails for my needs.
Forum: Plugins
In reply to: [Email posts to subscribers] Need Timezone settingI put that line as described and under
Options -> Cron details ->
immediately before the text
How to setup auto emails?
there is the “Current Date:” label with the right date and time.
Anyway, I own the web server so I have all the administrative rights, including setting the local time and date on that machine. You should check the local time and date on your webserver, accessing SSH would be a way for this. If you do not know how or you don’t have access this would be a second way:
– create an empty .php file on your server
– put these lines in it:<?php echo date("d.m.Y h:i:sa"); ?>– access this file in browser (eg.
)
– this should show the date and time as they are set on your server
If the date is different then add the directive I posted earlier add your code should be like:<?php date_default_timezone_set('Europe/Berlin'); echo date("d.m.Y h:i:sa"); ?>If nothing changes, then your server is configured not to accept PHP directives.
- This reply was modified 5 years, 6 months ago by futurebreeze.
- This reply was modified 5 years, 6 months ago by futurebreeze.
- This reply was modified 5 years, 6 months ago by futurebreeze.
Forum: Plugins
In reply to: [Email posts to subscribers] Need Timezone settingYou’ve probably forgot to put the semicolon at the end of the line. Sorry I’ve ommited this. The complete line is:
date_default_timezone_set(‘Europe/Berlin’);Forum: Plugins
In reply to: [Email posts to subscribers] Need Timezone settingI solved this problem by adding into email-posts-to-subscribers.php file the line:
date_default_timezone_set('Europe/Bucharest') # you must change it accordingly to your local timeunder the first line:
if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); }Forum: Plugins
In reply to: [Page Visit Counter] Visitors on website summaryOK, so “logged users” is the keyword. OK, got it, thank you!
- This reply was modified 6 years, 7 months ago by futurebreeze.
Forum: Plugins
In reply to: [Page Visit Counter] Visitors on website summaryHi,
I understood your explanation, it is almost the same what I was thinking about. But still, please see the image in the URL, my website is not a brand new one, it has thousands of visits per day, it in impossible that they come from the same source. I checked the Apache logs, they are legitimate visits from various IPs.
I still don’t believe that all those visits come only from 4 visitor (event an attacking bot may change its IP when it repeatedly acces a victim’s website 🙂 )
Thank you!