[Adjust Time Zone]
-
The problem is you need to adjust your time zone.
For the “time since” to work correctly, the timezone setting for your root blog has to match the time on your server.
You can change it under “Settings > General” in your /wp-admin/ area.
i have set it correctly 5:30+ (India)
still no use…
i implemented a fresh installation here http://indivibes.net/ exactly the same problem…
http://i41.tinypic.com/j11pa9.png this is the screenshot just for reference.
alright another potential issue i noticed.
/%postname%.html
i am using this as a post slug on one of the test blogs.
blog works fine.
but the buddypress home page shows the link with a trailing /
That is an entirely different topic, Sushubh, you need to post that as a trac ticket or on a separate forum post here with more detail.
i’ve the same problem on new user registration… “registrato [Regola Fuso Orario] fa” or “registered [Adjust Time Zone] ago” all the settings are ok and updated… any help?
I figured out that if you set the time settings in Settings / General and you have another language installed, it is getting resetted. When its default its fine by me, as soon as I adjust WPLANG into nl_NL the notice is back again.
edit: I uploaded the dutch pack to wordpress MU and got all fixed, only the Members widget (New tab) is showing [Adjust Time Zone]
yes i’ve MU and BP 1.0 in Italian…
Is there another way to get this fixed, besides adjusting it to your server time? Im running this website for Dutch people, while my server is in the VS.
In this version, your root blog timezone must match your server timezone, wherever the server is in the world. This will probably get fixed in upcoming versions, but right now this is how you’ll get rid of it.
there is no way to fix the thing at the moment? I have a server in america and my users are in italy …
I will adjust it, thanks for your quick reply Andy.
Arturo, Andy Peatling is the main (only?) developer behind BuddyPress. He should know when he says something like that.
I know DJPaul but this is a “big” problem… i don’t want a new version NOW, but only a way to have this work as RC versions… no more
Hi Andy
I’d appreciate a fix for this as soon as you can get around to it.
I’m sure many people are hosting their websites outside of their own timezones and this “bug” will cause some headaches for users.
The solution is change the time on your server
It’s not really going to cause that many headaches – it’s not like the time is actually displaying – it’s the “time since”.
Your time zone is irrelevant – it’s still going to say “active 45 minutes ago”. The only bug would be that blog posts would state they were posted at the time of the server not the local time. I can’t call that one a blocker though, but it will be addressed.
one day later the site shows the time. totally incorrect however. not a very big issue for me personally.
Thanks Andy – that was what I was referring to.
Appreciate your attention.
Look forward to more great work.
Hi,
I’m wondering if there is any plan to resolve this problem.
Thanks
Here is my temporal solution:
add_action( 'bp_activity_before_save', "ftblg_bp_timezone_bug" );
function ftblg_bp_timezone_bug($activity) {
$blog_time_offset=get_option('gmt_offset') * 3600;
$server_time_offset=-6 * 3600;
$activity->date_recorded = $activity->date_recorded - $blog_time_offset;
$activity->date_recorded = $activity->date_recorded + $server_time_offset;
}change ‘-6’ for the server time zone.
thank you german,
your solution helps me for my site. now site wide activity working perfect. ı mfrom turkey and its for me.
$server_time_offset=+11 * 3600;
This works ok if you are not using bbpress: if you are, the date posted in group forum will be reflected as “Posted -1 years ago” in bbpress post! With this, the whole post navigation in bbpress will start with earliest first, and first post at the last page (which is 1yr in future).
Arghh.. can someone help.
thanks
any hints how to resolve this? rgds
- The topic ‘[Adjust Time Zone]’ is closed to new replies.