FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » FUDforum Development » FUDforum 3.0+ » Suggestions for fud2
Show: Today's Messages :: Unread Messages :: Polls :: Message Navigator
| Subscribe to topic | Bookmark topic 
Switch to threaded view of this topic Create a new topic Submit Reply
Message by basse is ignored  [reveal message]  [reveal all messages by basse]  [stop ignoring this user] Go to next message
Re: Suggestions for fud2 [message #1499 is a reply to message #1497] Wed, 17 April 2002 16:29 Go to previous messageGo to next message
hackie is currently offline  hackie   Canada
Messages: 177
Registered: January 2002
Karma: 0
Senior Member
Core Developer
add to buddy list
ignore all messages by this user

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.


cc intelligence.c -o intelligence
$ ./intelligence
Segmentation fault
Message by basse is ignored  [reveal message]  [reveal all messages by basse]  [stop ignoring this user] Go to previous messageGo to next message
Message by basse is ignored  [reveal message]  [reveal all messages by basse]  [stop ignoring this user] Go to previous messageGo to next message
Re: Suggestions for fud2 [message #1540 is a reply to message #1537] Thu, 18 April 2002 10:51 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
add to buddy list
ignore all messages by this user
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 11:22 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
add to buddy list
ignore all messages by this user
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 11:31 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
add to buddy list
ignore all messages by this user
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
Message by basse is ignored  [reveal message]  [reveal all messages by basse]  [stop ignoring this user] Go to previous messageGo to next message
Message by basse is ignored  [reveal message]  [reveal all messages by basse]  [stop ignoring this user] Go to previous messageGo to next message
Re: Suggestions for fud2 [message #1552 is a reply to message #1549] Thu, 18 April 2002 14:47 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
add to buddy list
ignore all messages by this user
I see... okie will fix...

FUDforum Core Developer
Re: Suggestions for fud2 [message #1572 is a reply to message #1549] Fri, 19 April 2002 00:46 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
add to buddy list
ignore all messages by this user
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
Message by basse is ignored  [reveal message]  [reveal all messages by basse]  [stop ignoring this user] Go to previous messageGo to next message
Message by basse is ignored  [reveal message]  [reveal all messages by basse]  [stop ignoring this user] Go to previous messageGo to next message
Re: Suggestions for fud2 [message #1589 is a reply to message #1577] Fri, 19 April 2002 11:02 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
add to buddy list
ignore all messages by this user
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
Message by basse is ignored  [reveal message]  [reveal all messages by basse]  [stop ignoring this user] Go to previous messageGo to next message
Re: Suggestions for fud2 [message #1593 is a reply to message #1590] Fri, 19 April 2002 11:15 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
add to buddy list
ignore all messages by this user
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
Message by basse is ignored  [reveal message]  [reveal all messages by basse]  [stop ignoring this user] Go to previous messageGo to next message
Re: Suggestions for fud2 [message #1601 is a reply to message #1594] Fri, 19 April 2002 11:36 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
add to buddy list
ignore all messages by this user
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 #1602 is a reply to message #1497] Fri, 19 April 2002 15:10 Go to previous messageGo to next message
SunLord is currently offline  SunLord   United States
Messages: 11
Registered: April 2002
Karma: 0
Junior Member
add to buddy list
ignore all messages by this user
Here this might work better or least look right then the cheap clones version Razz

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;
Message by basse is ignored  [reveal message]  [reveal all messages by basse]  [stop ignoring this user] Go to previous messageGo to next message
Re: Suggestions for fud2 [message #1649 is a reply to message #1648] Sat, 20 April 2002 15:05 Go to previous message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
add to buddy list
ignore all messages by this user
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
Quick Reply
Formatting Tools:   
  Switch to threaded view of this topic Create a new topic
Previous Topic: RC-2
Next Topic: Bugs
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Fri Oct 04 20:06:34 EDT 2024

Total time taken to generate the page: 0.04014 seconds