I 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.
https://yourserver/yourfile.php
)
– 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 3 years, 12 months ago by futurebreeze.
-
This reply was modified 3 years, 12 months ago by futurebreeze.
-
This reply was modified 3 years, 12 months ago by futurebreeze.