Error log [message #23821] |
Wed, 30 March 2005 20:13 |
|
I have racked up 56 error messages in 24 hours! Is that normal?
I'm trying to track down my "Invalid STMP return code:" users see when they post new topics on 1/2 of my categories and not having much luck...
Thanks for any help...
Got Torque?
|
|
|
|
Re: Error log [message #23836 is a reply to message #23828] |
Thu, 31 March 2005 03:45 |
|
In ...data/sql/fud_nntp.tbl.... I see this. If this is not the right file please point me to it...
DROP TABLE IF EXISTS {SQL_TABLE_PREFIX}nntp;
CREATE TABLE {SQL_TABLE_PREFIX}nntp
(
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
forum_id INT NOT NULL DEFAULT 0,
nntp_opt INT NOT NULL DEFAULT 44,
server VARCHAR(255) NOT NULL DEFAULT '',
newsgroup VARCHAR(255) NOT NULL DEFAULT '',
port INT NOT NULL DEFAULT 0,
timeout INT NOT NULL DEFAULT 0,
login VARCHAR(255),
pass VARCHAR(255),
imp_limit INT NOT NULL DEFAULT 0
);
CREATE INDEX {SQL_TABLE_PREFIX}nntp_i_f ON {SQL_TABLE_PREFIX}nntp (forum_id);
# 1 nntp_post_apr
# 2 allow_frm_post
# 4 frm_post_apr
# 8 allow_nntp_attch
# 16 complex_reply_match
# 32 create_users
# 64 auth NONE
# 128 auth (ORIGINAL/SIMPLE)
Got Torque?
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Re: Error log [message #23969 is a reply to message #23910] |
Wed, 06 April 2005 14:15 |
|
I've spent hours trying to figure out what "debugging code" I need to add. Without knowing php I'm having a grand old time. Here is the debugging code I came up with
function var_dump_pre($mtf->nntp_id = null) {
echo '<pre>';
var_dump($mixed);
echo '</pre>';
return null;
}
function var_dump_pre($mtf->mlist_id = null) {
echo '<pre>';
var_dump($mixed);
echo '</pre>';
return null;
}
function var_dump_pre($mtf->mlist_msg_id = null) {
echo '<pre>';
var_dump($mixed);
echo '</pre>';
return null;
}
The above code didn't work, I got an error at the same line number where the code started.
Got Torque?
[Updated on: Wed, 06 April 2005 15:43] Report message to a moderator
|
|
|
|
|
|
|