1

Topic: Deleting Languages

I'm currently using PBB with a non-english language module and users shouldn't have any possibility to change that. Can I safely delete lang/English? What would happen to users who have selected it?

Thanks,
bensh

Re: Deleting Languages

1. Download the Languages and Styles plugin and reset everyone's language to whatever you want.
2. Delete lang/English

"Programming is like sex: one mistake and you have to support it for the rest of your life."

3

Re: Deleting Languages

Great, thanks! That did it.

One more: Is there a way to globally set time? Seems like since my last upgrade, the time zone got screwed up with lots of users...

Re: Deleting Languages

In that case you'd have to run a database query.

UPDATE users SET timezone=1

Change 1 to whatever you want.

"Programming is like sex: one mistake and you have to support it for the rest of your life."

5

Re: Deleting Languages

timezone=1 would be CET, right?

6 (edited by bensh 2005-04-07 10:00)

Re: Deleting Languages

I tried doing this with the mysql command line tool - where do I find the table? Or should I use AP_dbmanagement? (See other thread, I'm not sure if I have to put this \"punbb_db_backup." in "plugins".)

Re: Deleting Languages

You could use the db management plugin. In that case, run:

UPDATE #__users SET timezone=1

"Programming is like sex: one mistake and you have to support it for the rest of your life."