This info can be found around line 27 in your comments.php file:
$thisComment = $commentDate . '[+]' . $commentName . '[+]' . $commentMail . '[+]' . $commentText . '[+]' . $commentSite . '[+]' . getenv('REMOTE_ADDR') . "\n";
So, it's in this order:
- comment date
- commenter's name
- commenter's email address
- comment text
- commenter's website URL
- commenter's IP address
Hope this helps! ;)
~ Angela
----- Original Message -----From: Kate_NepveuSent: Thursday, June 30, 2005 12:59 AMSubject: [dotcomments-support] Format of comments file?Dear all,
This is a slightly odd question, but can someone tell me the format of
the text file that dotcomments stores comments in?
Specifically, I understand that it stores each comment on a single
line, delimited by [+]. What fields are separated by the [+] and what
order are they in?
[The reason I ask: I have comments in another system that uses a
similar format, though not identical, and want to import them into MT.
There's a script to do this for dotcomments-formatted files, and I
think it would be easier to turn my existing comments file into a
dotcomments one rather than rewriting the script, since I don't know
any scripting.)
Thanks.