Re: Suggestions for fud2 |
Sat, 20 April 2002 15:05 |
|
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.
|
|
Post by basse is ignored |
Re: Suggestions for fud2 |
Fri, 19 April 2002 15:10 |
|
Here this might work better or least look right then the cheap clones version
ALTER TABLE fud2_users ADD show_avatars ENUM('Y', 'N') NOT NULL DEFAULT 'Y'; ALTER TABLE fud2_users CHANGE show_sigs show_sigs ENUM('Y', 'N') NOT NULL DEFAULT 'Y'; ALTER TABLE fud2_users DROP show_tool_tips; ALTER TABLE fud2_users ADD u_last_post_id INT UNSIGNED NOT NULL DEFAULT 0; ALTER TABLE fud2_forum ADD index(last_post_id); UPDATE fud2_thread SET locked='Y' WHERE replyallowed='N'; ALTER TABLE fud2_thread DROP replyallowed; ALTER TABLE fud2_forum ADD message_threshold INT UNSIGNED NOT NULL DEFAULT 0; ALTER TABLE fud2_msg ADD offset_preview INT UNSIGNED NOT NULL DEFAULT 0; ALTER TABLE fud2_msg ADD length_preview INT UNSIGNED NOT NULL DEFAULT 0; ALTER TABLE fud2_msg ADD file_id_preview INT UNSIGNED NOT NULL DEFAULT 0;
|
|
Re: Suggestions for fud2 |
Fri, 19 April 2002 11:36 |
|
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.
|
|
Post by basse is ignored |
Re: Suggestions for fud2 |
Fri, 19 April 2002 11:15 |
|
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.
|
|
Post by basse is ignored |
Re: Suggestions for fud2 |
Fri, 19 April 2002 11:02 |
|
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.
|
|
Post by basse is ignored |
Post by basse is ignored |
Re: Suggestions for fud2 |
Fri, 19 April 2002 00:46 |
|
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.
|
|
|
Post by basse is ignored |
Post by basse is ignored |
Re: Suggestions for fud2 |
Thu, 18 April 2002 11:31 |
|
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.
|
|
Re: Suggestions for fud2 |
Thu, 18 April 2002 11:22 |
|
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
|
|
Re: Suggestions for fud2 |
Thu, 18 April 2002 10:51 |
|
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.
|
|
Post by basse is ignored |
Post by basse is ignored |
Re: Suggestions for fud2 |
Wed, 17 April 2002 16:29 |
|
Date formats have already been fixe, by usage of appropriate locale. That has been fixed since 1.9.8 RC-1. No as for actual date display format, that can be specified/changed in the templates.
|
|
Post by basse is ignored |