Re: Blocking Referer breaks sending of Prv. Msg [message #2927 is a reply to message #2925] |
Tue, 04 June 2002 19:22 |
Ilia
Messages: 13241 Registered: January 2002
Karma:
|
Senior Member Administrator Core Developer |
|
|
Ken Kizaki wrote on Tue, 04 June 2002 15:08 | This I ve noticed with version 1.28 (all fixes of CVS tree are applied)
Quote: | Query Failed: INSERT INTO fud_pmsg ( ouser_id, duser_id, to_list, ip_addr, host_name, post_stamp, icon, mailed, folder_id, subject, attach_cnt, smiley_disabled, show_sig, track, read_stamp, ref_msg_id ) VALUES( 1, 1, 'USER01', '653.653.322.845', NULL, 1023216879, NULL, 'Y', 'DRAFT', 'How to XXXX ? ', 0, 'N', 'N', 'N', 1023216879, NULL )
Reason: Unknown column 'ref_msg_id' in 'field list'
From: /home/confixx/web330/html/forum/ppost.php
Server Version: 3.23.44-log
|
Pls note that I altered the the IP for privacy reasons. Its an original full qualified IPv4 address (the senders IP, whereas USER01 represents the recipient). I know this version becomes obsolete and If I alter my proxy to reveal the it might be fixed but I guess people behind corporate firewalls still got stuck. Does this happen to the RC4 too?. Strange is, normal posting works, only private messages have this error with the blocked Referer field.
bye Ken
|
The query fails because your fud_pmsg table does not have the ref_msg_id field. By running the following query, you can prevent the query failure:
ALTER TABLE fud_pmsg ADD ref_msg_id CHAR(11);
I am not sure how do people behind corporate firewall are stuck?, care to elaborate?
FUDforum Core Developer
|
|
|