|
|
|
|
Re: Suggestions for fud2 [message #1540 is a reply to message #1537] |
Thu, 18 April 2002 14:51 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Gotcha...
The swedish msg file also contains a number of english strings that were not translated since they were added quite recently. So, if you come across english text, please verify it is because it has been hardcoded.
FUDforum Core Developer
|
|
|
Re: Suggestions for fud2 [message #1544 is a reply to message #1537] |
Thu, 18 April 2002 15:22 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
djupsjob wrote on Thu, 18 April 2002 8:33 AM | I found another hardcoded string. The "Goto Forum" (as shown on the front page of the forum) string is nowhere to be found in the msg file.
|
Fixed in latest CVS.
If you want to upgrade grab forumsel.tmpl from the CVS and english/msg, swedish/msg, german/msg
FUDforum Core Developer
|
|
|
Re: Suggestions for fud2 [message #1545 is a reply to message #1497] |
Thu, 18 April 2002 15:31 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
djupsjob wrote on Wed, 17 April 2002 4:03 PM | The gender seems to be hardcoded in English, as the setting was in Swedish during the registration but suddenly appears in English in the profile view.
|
I've changed the language to swedish on our test forum and gender appears properly translated both during registration & profile editing.
FUDforum Core Developer
|
|
|
|
|
|
Re: Suggestions for fud2 [message #1572 is a reply to message #1549] |
Fri, 19 April 2002 04:46 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
djupsjob wrote on Thu, 18 April 2002 2:45 PM |
Yes, but try to view another users profile. There the text appears in plain english. Male, Female och Unspecified, depending on what the user has selected during registration.
|
Fixed in CVS.
FUDforum Core Developer
|
|
|
|
|
Re: Suggestions for fud2 [message #1589 is a reply to message #1577] |
Fri, 19 April 2002 15:02 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
That is because you're missing the MySQL entry needed for this option.
Since RC-1 there were a number of MySQL changes (a few additions), without those MySQL changes certain parts of the code may not work properly.
If you want you can run those queries yourself, they are listed below:
ALTER TABLE fud2_users ADD show_avatars ENUM('Y', 'N') NOT NULL DEFAULT 'Y'; ALTER TABLE fud_users CHANGE show_sigs show_sigs ENUM('Y', 'N') NOT NULL DEFAULT 'Y'; ALTER TABLE fud_users DROP show_tool_tips; ALTER TABLE fud_users ADD u_last_post_id INT UNSIGNED NOT NULL DEFAULT 0; ALTER TABLE fud_forum ADD index(last_post_id); UPDATE fud_thread SET locked='Y' WHERE replyallowed='N'; ALTER TABLE fud_thread DROP fud_replyallowed; ALTER TABLE fud_forum ADD message_threshold INT UNSIGNED NOT NULL DEFAULT 0; ALTER TABLE fud_msg ADD offset_preview INT UNSIGNED NOT NULL DEFAULT 0; ALTER TABLE fud_msg ADD length_preview INT UNSIGNED NOT NULL DEFAULT 0; ALTER TABLE fud_msg ADD file_id_preview INT UNSIGNED NOT NULL DEFAULT 0;
*note* if your mysql table prefix is NOT fud2_ change the prefix in the sql queries above.
FUDforum Core Developer
|
|
|
|
Re: Suggestions for fud2 [message #1593 is a reply to message #1590] |
Fri, 19 April 2002 15:15 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
You can install over an old version, that will cause the loss of ALL data you've previously had. The installation script will replace all the files & re-create the SQL tables from scratch.
FUDforum Core Developer
|
|
|
|
Re: Suggestions for fud2 [message #1601 is a reply to message #1594] |
Fri, 19 April 2002 15:36 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Okie, let me look into the situation, it worked fine on my test machine here...
Can you do the following 2 tests:
SELECT show_avatars FROM fud2_users;
see if the field is set.
Also, check that you have a $show_avatar_radio inside register.php file.
FUDforum Core Developer
|
|
|
|
|
Re: Suggestions for fud2 [message #1649 is a reply to message #1648] |
Sat, 20 April 2002 19:05 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
The best thing you can currently do, is turn of smilies for an entire message. As you probably know at the bottom of each message there is a "Disable Smilies" checkbox.
When we rewrite (planning to do so before 2.0 release) our FUDcode parser we will see about make sure smilies don't get triggered for certain tags.
FUDforum Core Developer
|
|
|